]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
No longer need dpatch patches.
authorR. Steve McKown <rsmckown@gmail.com>
Thu, 3 Dec 2009 20:56:51 +0000 (13:56 -0700)
committerR. Steve McKown <rsmckown@gmail.com>
Thu, 3 Dec 2009 20:56:51 +0000 (13:56 -0700)
patches/001_tinyos-sh.dpatch [deleted file]
patches/002_distfiles.dpatch [deleted file]
patches/00list [deleted file]

diff --git a/patches/001_tinyos-sh.dpatch b/patches/001_tinyos-sh.dpatch
deleted file mode 100755 (executable)
index 2f5e73c..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 001_tinyos-sh.dpatch by  <rsmckown@gmail.com>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Sourced file that sets up TinyOS environment, with per-user persistence
-
-@DPATCH@
-
-diff -urN tinyos-2.1.0.orig/tinyos.sh tinyos-2.1.0/tinyos.sh
---- tinyos-2.1.0.orig/tinyos.sh        1969-12-31 17:00:00.000000000 -0700
-+++ tinyos-2.1.0/tinyos.sh     2008-08-27 13:28:48.000000000 -0600
-@@ -0,0 +1,43 @@
-+#! /usr/bin/env bash
-+# Here we setup the environment
-+# variables needed by the tinyos 
-+# make system
-+
-+TOSBASE=/opt/tinyos
-+
-+# $1 is a directory or tos version number
-+# returns a fully rooted and valid TOSROOT
-+getdir()
-+{
-+    if [ -d "$1" -a -d "$1/tos" ]; then
-+      echo "$1"
-+    elif [ -d "$TOSBASE/$1" -a -d "$TOSBASE/$1/tos" ]; then
-+      echo "$TOSBASE/$1"
-+    fi
-+}
-+
-+# Clear TOS environment
-+if [ -n "$TOSROOT" ]; then
-+    CLASSPATH=$(echo $CLASSPATH | sed -e "s|:$TOSROOT/support/sdk/java||")
-+fi
-+unset TOSDIR MAKERULES
-+
-+# Set TOS environment
-+TOSROOT=$(getdir "$1")
-+if [ -z "$TOSROOT" ]; then
-+    TOSROOT=$(cat ~/.tosrc 2>/dev/null)
-+fi
-+
-+if [ -z "$TOSROOT" ]; then
-+    echo "No TinyOS source directory found.  Usage:" >&2
-+    echo "source /opt/tinyos/tinyos.sh [<version> | <directory>]" >&2
-+    export TOSROOT TOSDIR MAKERULES
-+else
-+    echo "Setting up for TinyOS source in $TOSROOT"
-+    echo "$TOSROOT" > ~/.tosrc
-+    TOSDIR="$TOSROOT/tos"
-+    CLASSPATH=$CLASSPATH:$TOSROOT/support/sdk/java
-+    MAKERULES="$TOSROOT/support/make/Makerules"
-+    export TOSROOT TOSDIR CLASSPATH MAKERULES
-+fi
-+unset TOSBASE tmp
diff --git a/patches/002_distfiles.dpatch b/patches/002_distfiles.dpatch
deleted file mode 100644 (file)
index b5edfa7..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 003_distfiles.dpatch by  <rsmckown@gmail.com>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Patch tinyos.files to exclude debian build related files
-
-@DPATCH@
-
---- tinyos-2.1.0/tools/release/tinyos.files    2008-09-02 08:26:42.000000000 -0600
-+++ tinyos-2.1.0/tools/tinyos.files    2008-09-02 08:18:52.000000000 -0600
-@@ -4,6 +4,11 @@
- cd ../..
- rm -rf $NAME-$VERSION
- tools/release/extractor $NAME-$VERSION <<'EOF' | gzip >../$NAME-$VERSION.tar.gz
-+!^./tinyos.sh
-+!^./tos.mk
-+!^./debian
-+!^./builddir
-+!^./(patch|configure|build|install)-stamp
- !^./apps/tests/(eyesIFX|mica2|msp430|rf230|mts300|telosb)
- !^./apps/tests/(RadioStress|TestAlarm|TestAM|TestAMOnOff|TestAMService|TestBroadcast|TestCollection|TestLocalTime|TestMultihopLqi|TestOscilloscopeLQI|TestPowerManager|TestPowerup|TestPrintf|TestRadioPM|TestScheduler|TestSerialBandwidth|TestSharedResource|TestSimTimers|TestSleep|TestTimerSync|TestTreeRouting|TestTrickleTimer|TestTymo)
- !^/apps/(BlinkAlarm|BlinkMSP430|BlinkTask|BlinkToRadio|Test|TestADC|TestArbiter|TestCC2420|TestRadio|TestSPI|TestScheduler|TestSchedulerTemp|TestSerial)
-@@ -27,6 +31,9 @@
- !/.cvsignore
- !/CVS/
- !/CVS$
-+!/.svn/
-+!/.svn$
-+!^./.git
- !~$
- !/build/
- !/build$
-@@ -45,4 +49,3 @@
- ./tests/TestSerial/TestSerial.class
- ./RadioCountToLeds/RadioCountMsg.class
- EOF
--rm -rf $NAME-$VERSION
diff --git a/patches/00list b/patches/00list
deleted file mode 100644 (file)
index afd1311..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-001_tinyos-sh.dpatch
-002_distfiles.dpatch