aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/busybox/busybox-1.18.5/udhcpc-new-nfsroot.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/busybox/busybox-1.18.5/udhcpc-new-nfsroot.patch')
-rw-r--r--recipes/busybox/busybox-1.18.5/udhcpc-new-nfsroot.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/busybox/busybox-1.18.5/udhcpc-new-nfsroot.patch b/recipes/busybox/busybox-1.18.5/udhcpc-new-nfsroot.patch
new file mode 100644
index 0000000000..46aaab97be
--- /dev/null
+++ b/recipes/busybox/busybox-1.18.5/udhcpc-new-nfsroot.patch
@@ -0,0 +1,16 @@
+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 2011-02-23 00:30:32.000000000 -0500
++++ busybox-1.13.2/examples/udhcp/simple.script 2011-02-23 17:05:37.873381763 -0500
+@@ -10,7 +10,12 @@
+
+ # return 0 if root is mounted on a network filesystem
+ root_is_nfs() {
++ # old style mounts
+ grep -qe '^/dev/root.*\(nfs\|smbfs\|ncp\|coda\) .*' /proc/mounts
++ if ! $? ; then
++ # new style mounts
++ grep -qe '^.*:.* / \(nfs\|smbfs\|ncp\|coda\) .*' /proc/mounts
++ fi
+ }
+
+ case "$1" in