diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-01-06 19:26:33 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-01-06 19:26:33 +0000 |
commit | 666f303b8f8a76ca44b62a58ae270d520944897b (patch) | |
tree | 74b6ec073508934040ab3c3a6c27039f18c92c73 /package/busybox | |
parent | ab40400ff220444167a0268fe643dfb53889f2ff (diff) | |
download | upstream-666f303b8f8a76ca44b62a58ae270d520944897b.tar.gz upstream-666f303b8f8a76ca44b62a58ae270d520944897b.tar.bz2 upstream-666f303b8f8a76ca44b62a58ae270d520944897b.zip |
don't call deconfig in udhcpc when entering the renew phase
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10136 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/patches/524-udhcpc_renew.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/busybox/patches/524-udhcpc_renew.patch b/package/busybox/patches/524-udhcpc_renew.patch new file mode 100644 index 0000000000..07611a5228 --- /dev/null +++ b/package/busybox/patches/524-udhcpc_renew.patch @@ -0,0 +1,12 @@ +Index: busybox-1.8.2/networking/udhcp/dhcpc.c +=================================================================== +--- busybox-1.8.2.orig/networking/udhcp/dhcpc.c 2008-01-03 05:00:31.506419917 +0100 ++++ busybox-1.8.2/networking/udhcp/dhcpc.c 2008-01-03 05:00:44.311149618 +0100 +@@ -65,7 +65,6 @@ + state = RENEW_REQUESTED; + break; + case RENEW_REQUESTED: /* impatient are we? fine, square 1 */ +- udhcp_run_script(NULL, "deconfig"); + case REQUESTING: + case RELEASED: + change_mode(LISTEN_RAW); |