summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--linux/linux-mtx-1-2.4.24/defconfig-mtx-10
-rw-r--r--linux/linux-mtx-1-2.4.27/defconfig-mtx-10
-rw-r--r--linux/linux-mtx-1-2.4.27/mtx-1-board-reset.diff0
-rw-r--r--linux/linux-mtx-1-2.4.27/zimage-flash-bin.patch0
-rw-r--r--linux/linux-mtx-1_2.4.27.oe0
-rw-r--r--shorewall/shorewall_2.0.9.oe0
-rw-r--r--unik-olsrd/files/unik-olsrd36
7 files changed, 36 insertions, 0 deletions
diff --git a/linux/linux-mtx-1-2.4.24/defconfig-mtx-1 b/linux/linux-mtx-1-2.4.24/defconfig-mtx-1
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/linux/linux-mtx-1-2.4.24/defconfig-mtx-1
diff --git a/linux/linux-mtx-1-2.4.27/defconfig-mtx-1 b/linux/linux-mtx-1-2.4.27/defconfig-mtx-1
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/linux/linux-mtx-1-2.4.27/defconfig-mtx-1
diff --git a/linux/linux-mtx-1-2.4.27/mtx-1-board-reset.diff b/linux/linux-mtx-1-2.4.27/mtx-1-board-reset.diff
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/linux/linux-mtx-1-2.4.27/mtx-1-board-reset.diff
diff --git a/linux/linux-mtx-1-2.4.27/zimage-flash-bin.patch b/linux/linux-mtx-1-2.4.27/zimage-flash-bin.patch
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/linux/linux-mtx-1-2.4.27/zimage-flash-bin.patch
diff --git a/linux/linux-mtx-1_2.4.27.oe b/linux/linux-mtx-1_2.4.27.oe
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/linux/linux-mtx-1_2.4.27.oe
diff --git a/shorewall/shorewall_2.0.9.oe b/shorewall/shorewall_2.0.9.oe
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/shorewall/shorewall_2.0.9.oe
diff --git a/unik-olsrd/files/unik-olsrd b/unik-olsrd/files/unik-olsrd
index e69de29bb2..8b1ffa6036 100644
--- a/unik-olsrd/files/unik-olsrd
+++ b/unik-olsrd/files/unik-olsrd
@@ -0,0 +1,36 @@
+#! /bin/sh
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+DAEMON=/usr/sbin/olsrd
+NAME=unik-olsrd
+DESC="OLSR routing protocol daemon"
+
+test -x $DAEMON || exit 0
+
+set -e
+
+case "$1" in
+ start)
+ echo "Starting $DESC: $NAME"
+ start-stop-daemon -S -x $DAEMON -- -d 0;
+ echo "done."
+ ;;
+ stop)
+ echo "Stopping $DESC: $NAME "
+ start-stop-daemon -K -x $DAEMON
+ echo "done."
+ ;;
+ restart|force-reload)
+ echo "restarting $DESC: $NAME "
+ $0 stop
+ sleep 5
+ $0 start
+ exit;
+ ;;
+ *)
+ echo "Usage: /etc/init.d/$NAME {start|stop|restart}" >&2
+ exit 1
+ ;;
+esac
+
+exit 0