buxybox: bump 1.10.x version

This commit is contained in:
Peter Korsgaard 2008-06-26 06:50:59 +00:00
parent d624e8c0b4
commit 87ac3fcaa4
3 changed files with 1 additions and 22 deletions

View 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

View File

@ -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:

View File

@ -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 = {