diff options
author | Steffen Sledz <sledz@dresearch.de> | 2009-01-28 08:42:21 +0100 |
---|---|---|
committer | Steffen Sledz <sledz@dresearch.de> | 2009-01-28 08:42:21 +0100 |
commit | bcc7766219595f12087688b5475bae9147f96a47 (patch) | |
tree | 3267d54fc3bd51afc7be37976c6a72e9aa29522e /packages/busybox/busybox-1.11.3 | |
parent | 70b5d01eac43181f4ab1444074bd7e4c174d5d71 (diff) |
busybox-1.11.3: udhcpd script: Do not deconfig network interface ONLY if rootfs on network
(scripting bug fixed)
Diffstat (limited to 'packages/busybox/busybox-1.11.3')
-rw-r--r-- | packages/busybox/busybox-1.11.3/udhcpscript.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/busybox/busybox-1.11.3/udhcpscript.patch b/packages/busybox/busybox-1.11.3/udhcpscript.patch index cad56d2a9f..363f66e03c 100644 --- a/packages/busybox/busybox-1.11.3/udhcpscript.patch +++ b/packages/busybox/busybox-1.11.3/udhcpscript.patch @@ -19,7 +19,7 @@ Index: busybox-1.11.3/examples/udhcp/simple.script case "$1" in deconfig) - /sbin/ifconfig $interface 0.0.0.0 -+ if [ ! root_is_nfs ]; then ++ if ! root_is_nfs ; then + /sbin/ifconfig $interface 0.0.0.0 + fi ;; |