summaryrefslogtreecommitdiff
path: root/package/utils
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2014-05-29 21:50:32 +0000
committerSteven Barth <cyrus@openwrt.org>2014-05-29 21:50:32 +0000
commit8f8dc0959cbe188b6b51ef1e946e67fe85e4d0dd (patch)
tree1781aa451de6fbe29d0846434e617237683e2ac7 /package/utils
parent57999c48074739c053c099d6f60628d6fe2eccc8 (diff)
downloadmtk-20170518-8f8dc0959cbe188b6b51ef1e946e67fe85e4d0dd.zip
mtk-20170518-8f8dc0959cbe188b6b51ef1e946e67fe85e4d0dd.tar.gz
mtk-20170518-8f8dc0959cbe188b6b51ef1e946e67fe85e4d0dd.tar.bz2
busybox: remove redundant 6rd-patch
SVN-Revision: 40882
Diffstat (limited to 'package/utils')
-rw-r--r--package/utils/busybox/patches/202-udhcpc_handle_comcast_ip6rd.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/package/utils/busybox/patches/202-udhcpc_handle_comcast_ip6rd.patch b/package/utils/busybox/patches/202-udhcpc_handle_comcast_ip6rd.patch
deleted file mode 100644
index 3c84c20..0000000
--- a/package/utils/busybox/patches/202-udhcpc_handle_comcast_ip6rd.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/networking/udhcp/common.c
-+++ b/networking/udhcp/common.c
-@@ -64,6 +64,7 @@ const struct dhcp_optflag dhcp_optflags[
- #endif
- { OPTION_STRING , 0xd1 }, /* DHCP_PXE_CONF_FILE */
- { OPTION_6RD , 0xd4 }, /* DHCP_6RD */
-+ { OPTION_6RD , 0x96 }, /* DHCP_6RD (Comcast) */
- { OPTION_STATIC_ROUTES | OPTION_LIST , 0xf9 }, /* DHCP_MS_STATIC_ROUTES */
- { OPTION_STRING , 0xfc }, /* DHCP_WPAD */
-
-@@ -131,6 +132,7 @@ const char dhcp_option_strings[] ALIGN1
- #endif
- "pxeconffile" "\0" /* DHCP_PXE_CONF_FILE */
- "ip6rd" "\0" /* DHCP_6RD */
-+ "ip6rd" "\0" /* DHCP_6RD (Comcast) */
- "msstaticroutes""\0"/* DHCP_MS_STATIC_ROUTES */
- "wpad" "\0" /* DHCP_WPAD */
- ;