buxybox: bump 1.10.x version
authorPeter Korsgaard <jacmet@sunsite.dk>
Thu, 26 Jun 2008 06:50:59 +0000 (06:50 -0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Thu, 26 Jun 2008 06:50:59 +0000 (06:50 -0000)
package/busybox/Config.in
package/busybox/busybox-1.10.3-tcpudp.patch [deleted file]
package/busybox/busybox-1.10.3-udhcpc.patch [deleted file]

index 1c54e845f4101a211bf14702f98bad3171d2d8eb..8a99703f09f92c290397b5ca61e94e05a68f4703 100644 (file)
@@ -50,7 +50,7 @@ config BR2_BUSYBOX_VERSION
        default "1.7.5"         if BR2_BUSYBOX_VERSION_1_7_X
        default "1.8.3"         if BR2_BUSYBOX_VERSION_1_8_X
        default "1.9.2"         if BR2_BUSYBOX_VERSION_1_9_X
-       default "1.10.3"        if BR2_BUSYBOX_VERSION_1_10_X
+       default "1.10.4"        if BR2_BUSYBOX_VERSION_1_10_X
 
 
 config BR2_PACKAGE_BUSYBOX_FULLINSTALL
diff --git a/package/busybox/busybox-1.10.3-tcpudp.patch b/package/busybox/busybox-1.10.3-tcpudp.patch
deleted file mode 100644 (file)
index f466693..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
---- busybox-1.10.3/networking/tcpudp.c Sat Apr 19 06:03:13 2008
-+++ busybox-1.10.3-tcpudp/networking/tcpudp.c  Fri Jun 13 11:38:54 2008
-@@ -31,6 +31,7 @@
- #include "libbb.h"
- /* Wants <limits.h> etc, thus included after libbb.h: */
-+#include <linux/types.h> /* for __be32 etc */
- #include <linux/netfilter_ipv4.h>
- // TODO: move into this file:
diff --git a/package/busybox/busybox-1.10.3-udhcpc.patch b/package/busybox/busybox-1.10.3-udhcpc.patch
deleted file mode 100644 (file)
index fce5f04..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- busybox-1.10.3/networking/udhcp/clientsocket.c     Sat Apr 19 06:03:13 2008
-+++ busybox-1.10.3-udhcpc/networking/udhcp/clientsocket.c      Fri Jun 20 16:48:32 2008
-@@ -76,7 +76,7 @@
-               BPF_STMT(BPF_LD|BPF_W|BPF_IND, 0),
-               BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, SERVER_AND_CLIENT_PORTS, 0, 1), /* L3, L4 */
-               /* returns */
--              BPF_STMT(BPF_RET|BPF_K, (~(uint32_t)0) ),               /* L3: pass */
-+              BPF_STMT(BPF_RET|BPF_K, 0x0fffffff),                    /* L3: pass */
-               BPF_STMT(BPF_RET|BPF_K, 0),                             /* L4: reject */
-       };
-       static const struct sock_fprog filter_prog = {