diff options
author | Dirk Opfer <dirk@do13.de> | 2009-08-06 21:42:56 +0200 |
---|---|---|
committer | Dirk Opfer <dirk@do13.de> | 2009-08-06 21:55:31 +0200 |
commit | 1e4fc3556b84654a11a460484988abfc80b5d1ae (patch) | |
tree | dabc999a667053bd8f3a6aee94b8e7294efba1c2 /recipes/busybox/busybox-1.14.3/udhcpc-fix-nfsroot.patch | |
parent | c04bac092910c7abb3ff328597c57cc204ba51a6 (diff) |
busybox: add new version 1.14.3
DEFAULT_PREFERENCE is set to "-1".
Diffstat (limited to 'recipes/busybox/busybox-1.14.3/udhcpc-fix-nfsroot.patch')
-rw-r--r-- | recipes/busybox/busybox-1.14.3/udhcpc-fix-nfsroot.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/recipes/busybox/busybox-1.14.3/udhcpc-fix-nfsroot.patch b/recipes/busybox/busybox-1.14.3/udhcpc-fix-nfsroot.patch new file mode 100644 index 0000000000..39716ec14b --- /dev/null +++ b/recipes/busybox/busybox-1.14.3/udhcpc-fix-nfsroot.patch @@ -0,0 +1,40 @@ +diff -uNr busybox-1.13.2-orig/examples/udhcp/simple.script busybox-1.13.2/examples/udhcp/simple.script +--- busybox-1.13.2-orig/examples/udhcp/simple.script 2009-02-04 11:08:13.000000000 -0500 ++++ busybox-1.13.2/examples/udhcp/simple.script 2009-02-04 11:24:51.000000000 -0500 +@@ -8,22 +8,31 @@ + [ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" + [ -n "$subnet" ] && NETMASK="netmask $subnet" + ++# return 0 if root is mounted on a network filesystem ++root_is_nfs() { ++ grep -qe '^/dev/root.*\(nfs\|smbfs\|ncp\|coda\) .*' /proc/mounts ++} ++ + case "$1" in + deconfig) +- /sbin/ifconfig $interface 0.0.0.0 ++ if ! root_is_nfs ; then ++ /sbin/ifconfig $interface 0.0.0.0 ++ fi + ;; + + renew|bound) + /sbin/ifconfig $interface $ip $BROADCAST $NETMASK + + if [ -n "$router" ] ; then +- while route del default gw 0.0.0.0 dev $interface 2>/dev/null ; do +- : +- done ++ if ! root_is_nfs ; then ++ while route del default gw 0.0.0.0 dev $interface 2>/dev/null ; do ++ : ++ done ++ fi + + metric=0 + for i in $router ; do +- route add default gw $i dev $interface metric $((metric++)) ++ route add default gw $i dev $interface metric $((metric++)) 2>/dev/null + done + fi + |