summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorLeon Woestenberg <leon.woestenberg@gmail.com>2008-05-23 15:59:49 +0000
committerLeon Woestenberg <leon.woestenberg@gmail.com>2008-05-23 15:59:49 +0000
commit33b90e2dbb1f21ba4511f3e85dfeab1ae24502c4 (patch)
tree04b505d6d032b8fb91eb9772a57fb0c5e5f393e8 /contrib
parentef71e5fbb312339650882401b54739a5e60726fc (diff)
parentdf42d84d1ac1fc35e56fa66cf6559ce6ca2893d3 (diff)
merge of '5135d5b0b85d509b8af80d221f18563d4ce62475'
and '8b21a69e52feb768f1d096aa78e44dd20ce3aed4'
Diffstat (limited to 'contrib')
-rw-r--r--contrib/marketing/.mtn2git_empty0
-rw-r--r--contrib/marketing/oe-flyer.pdfbin0 -> 93485 bytes
-rw-r--r--contrib/marketing/oe-poster.pdfbin0 -> 671020 bytes
-rwxr-xr-xcontrib/mtn-bisect.sh26
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
new file mode 100644
index 0000000000..d08454f379
--- /dev/null
+++ b/contrib/marketing/oe-flyer.pdf
Binary files differ
diff --git a/contrib/marketing/oe-poster.pdf b/contrib/marketing/oe-poster.pdf
new file mode 100644
index 0000000000..158a4811e4
--- /dev/null
+++ b/contrib/marketing/oe-poster.pdf
Binary files differ
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
+
+