diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-05-23 15:59:49 +0000 |
---|---|---|
committer | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-05-23 15:59:49 +0000 |
commit | 33b90e2dbb1f21ba4511f3e85dfeab1ae24502c4 (patch) | |
tree | 04b505d6d032b8fb91eb9772a57fb0c5e5f393e8 /contrib | |
parent | ef71e5fbb312339650882401b54739a5e60726fc (diff) | |
parent | df42d84d1ac1fc35e56fa66cf6559ce6ca2893d3 (diff) |
merge of '5135d5b0b85d509b8af80d221f18563d4ce62475'
and '8b21a69e52feb768f1d096aa78e44dd20ce3aed4'
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/marketing/.mtn2git_empty | 0 | ||||
-rw-r--r-- | contrib/marketing/oe-flyer.pdf | bin | 0 -> 93485 bytes | |||
-rw-r--r-- | contrib/marketing/oe-poster.pdf | bin | 0 -> 671020 bytes | |||
-rwxr-xr-x | contrib/mtn-bisect.sh | 26 |
4 files changed, 26 insertions, 0 deletions
diff --git a/contrib/marketing/.mtn2git_empty b/contrib/marketing/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/contrib/marketing/.mtn2git_empty diff --git a/contrib/marketing/oe-flyer.pdf b/contrib/marketing/oe-flyer.pdf Binary files differnew file mode 100644 index 0000000000..d08454f379 --- /dev/null +++ b/contrib/marketing/oe-flyer.pdf diff --git a/contrib/marketing/oe-poster.pdf b/contrib/marketing/oe-poster.pdf Binary files differnew file mode 100644 index 0000000000..158a4811e4 --- /dev/null +++ b/contrib/marketing/oe-poster.pdf diff --git a/contrib/mtn-bisect.sh b/contrib/mtn-bisect.sh new file mode 100755 index 0000000000..e1c970d974 --- /dev/null +++ b/contrib/mtn-bisect.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# the revision that we noticed does not longer build +LATEST_BAD_REV=$1 + +# an older revision that is known to build +LAST_KNOWN_GOOD_REV=$2 + +# count the number of commits +COUNT=`mtn log --brief --no-merges --no-graph --to p:$LAST_KNOWN_GOOD_REV --from $LATEST_BAD_REV | tee /tmp/candidates.txt | wc -l` + +echo $COUNT commits + +# if COUNT == 1 stop + +# make binary sections +COUNT=$(($(($COUNT + 1)) / 2)) + +CANDIDATE_REV=`cat /tmp/candidates.txt | head -n $COUNT | tail -n 1 | sed -e 's@\([a-f0-9]*\) .*@\1@'` + +echo $CANDIDATE_REV + +echo mtn up -r $CANDIDATE_REV +mtn up -r $CANDIDATE_REV + + |