aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mipl-mipv6/files
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/mipl-mipv6/files
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
downloadopenembedded-709c4d66e0b107ca606941b988bad717c0b45d9b.tar.gz
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/mipl-mipv6/files')
-rw-r--r--recipes/mipl-mipv6/files/outputfix.patch25
-rw-r--r--recipes/mipl-mipv6/files/sbindir.patch13
2 files changed, 38 insertions, 0 deletions
diff --git a/recipes/mipl-mipv6/files/outputfix.patch b/recipes/mipl-mipv6/files/outputfix.patch
new file mode 100644
index 0000000000..a2036b96de
--- /dev/null
+++ b/recipes/mipl-mipv6/files/outputfix.patch
@@ -0,0 +1,25 @@
+--- mobile-ip6.in 2005-02-04 15:17:25.134699880 +0100
++++ mobile-ip6.in.new 2005-02-04 16:32:12.274550936 +0100
+@@ -77,7 +77,7 @@
+
+ case "$1" in
+ start)
+- $LSMOD | grep $MIPV6_MODULE &>/dev/null && \
++ $LSMOD | grep $MIPV6_MODULE >/dev/null && \
+ echo "$MIPV6_MODULE already installed" && exit 1
+
+ INSMOD_ARGS=
+@@ -86,11 +86,11 @@
+ INSMOD_ARGS="$INSMOD_ARGS mipv6_debug=$DEBUGLEVEL"
+ fi
+
+- $MODPROBE $MIPV6_BASE_MODULE $INSMOD_ARGS &> /dev/null
++ $MODPROBE $MIPV6_BASE_MODULE $INSMOD_ARGS > /dev/null
+ status=$?
+
+ if [ "$FUNCTIONALITY" = "mn" -o "$FUNCTIONALITY" = "ha" ] ; then
+- $MODPROBE $MIPV6_MODULE &> /dev/null
++ $MODPROBE $MIPV6_MODULE > /dev/null
+ fi
+
+ action "Starting Mobile IPv6:" [ $status -eq 0 ] || exit 1
diff --git a/recipes/mipl-mipv6/files/sbindir.patch b/recipes/mipl-mipv6/files/sbindir.patch
new file mode 100644
index 0000000000..931d0f7df4
--- /dev/null
+++ b/recipes/mipl-mipv6/files/sbindir.patch
@@ -0,0 +1,13 @@
+--- mobile-ip6.in 2005-02-04 15:12:08.225877344 +0100
++++ mobile-ip6.in.new 2005-02-04 15:12:57.588373104 +0100
+@@ -24,8 +24,8 @@
+ SUBSYS=$1
+ LOCKDIR=@LOCKDIR@
+
+-MODPROBE=@sbindir@/modprobe
+-LSMOD=@sbindir@/lsmod
++MODPROBE=`which modprobe`
++LSMOD=`which lsmod`
+
+ # Test if 'functions' exists. If not, define our own 'action'
+ if test -x /etc/rc.d/init.d/functions ; then