diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-12-21 10:01:42 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-12-21 10:01:42 +0000 |
commit | 1685e259a52881bbf661d5b163bafbfb847df13c (patch) | |
tree | cbc3dea52f24f9a6a87abcaaed04abda320cae93 /meta/packages/busybox/busybox-1.8.2/udhcpscript.patch | |
parent | 1011c2b7e9ef1795bee77f88cc32ead943ff1cff (diff) | |
download | openembedded-core-1685e259a52881bbf661d5b163bafbfb847df13c.tar.gz openembedded-core-1685e259a52881bbf661d5b163bafbfb847df13c.tar.bz2 openembedded-core-1685e259a52881bbf661d5b163bafbfb847df13c.zip |
busybox: update 1.8.1 to 1.8.2
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3366 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/busybox/busybox-1.8.2/udhcpscript.patch')
-rw-r--r-- | meta/packages/busybox/busybox-1.8.2/udhcpscript.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/packages/busybox/busybox-1.8.2/udhcpscript.patch b/meta/packages/busybox/busybox-1.8.2/udhcpscript.patch new file mode 100644 index 0000000000..fc21d440cd --- /dev/null +++ b/meta/packages/busybox/busybox-1.8.2/udhcpscript.patch @@ -0,0 +1,17 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- busybox-1.00-rc3/examples/udhcp/simple.script~udhcpscript ++++ busybox-1.00-rc3/examples/udhcp/simple.script +@@ -17,8 +17,7 @@ + /sbin/ifconfig $interface $ip $BROADCAST $NETMASK + + if [ -n "$router" ] ; then +- echo "deleting routers" +- while route del default gw 0.0.0.0 dev $interface ; do ++ while route del default gw 0.0.0.0 dev $interface 2>/dev/null ; do + : + done + |