aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/busybox/busybox-1.11.3/udhcpc-background.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/busybox/busybox-1.11.3/udhcpc-background.patch')
-rw-r--r--recipes/busybox/busybox-1.11.3/udhcpc-background.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/recipes/busybox/busybox-1.11.3/udhcpc-background.patch b/recipes/busybox/busybox-1.11.3/udhcpc-background.patch
deleted file mode 100644
index 072ce88327..0000000000
--- a/recipes/busybox/busybox-1.11.3/udhcpc-background.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -Nurd busybox-1.11.3.orig//networking/ifupdown.c busybox-1.11.3/networking/ifupdown.c
---- busybox-1.11.3.orig//networking/ifupdown.c 2010-06-15 08:45:44.000000000 +0200
-+++ busybox-1.11.3/networking/ifupdown.c 2010-06-15 08:46:09.000000000 +0200
-@@ -476,7 +476,7 @@
- "pump -i %iface% -k",
- },
- { "udhcpc",
-- "udhcpc -R -n -p /var/run/udhcpc.%iface%.pid -i %iface%[[ -H %hostname%]][[ -c %clientid%]]"
-+ "udhcpc -R -b -p /var/run/udhcpc.%iface%.pid -i %iface%[[ -H %hostname%]][[ -c %clientid%]]"
- "[[ -s %script%]][[ %udhcpc_opts%]]",
- "kill `cat /var/run/udhcpc.%iface%.pid` 2>/dev/null",
- },
-@@ -507,7 +507,7 @@
- if (!execute("ip link set %iface% up", ifd, exec))
- return 0;
- #endif
-- return execute("udhcpc -R -n -p /var/run/udhcpc.%iface%.pid "
-+ return execute("udhcpc -R -b -p /var/run/udhcpc.%iface%.pid "
- "-i %iface%[[ -H %hostname%]][[ -c %clientid%]][[ -s %script%]][[ %udhcpc_opts%]]",
- ifd, exec);
- }