diff options
| author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-12-05 10:00:42 -0300 | 
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-12-07 22:35:54 +0100 | 
| commit | 8c9a74836aef0c0a6e7e8aee614982225a89d5cf (patch) | |
| tree | 2ffb4f34f944e802c8287fc3cd4be62ba5171f52 | |
| parent | 7dc413255ba6a6e9edf88bf4881f50344ebda682 (diff) | |
| download | buildroot-novena-8c9a74836aef0c0a6e7e8aee614982225a89d5cf.tar.gz buildroot-novena-8c9a74836aef0c0a6e7e8aee614982225a89d5cf.zip | |
iproute2: bump to version 3.1.0
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| -rw-r--r-- | package/iproute2/iproute2-xt-v6.patch | 39 | ||||
| -rw-r--r-- | package/iproute2/iproute2.mk | 4 | 
2 files changed, 2 insertions, 41 deletions
| diff --git a/package/iproute2/iproute2-xt-v6.patch b/package/iproute2/iproute2-xt-v6.patch deleted file mode 100644 index 4856e3609..000000000 --- a/package/iproute2/iproute2-xt-v6.patch +++ /dev/null @@ -1,39 +0,0 @@ -From: Andreas Henriksson <andreas@fatal.se> -Forwarded: yes -Subject: [PATCH] iproute2: Fix building xt module against xtables version 6 - - -diff --git a/tc/m_xt.c b/tc/m_xt.c -index 651a59e..13bf19f 100644 ---- a/tc/m_xt.c -+++ b/tc/m_xt.c -@@ -160,9 +160,13 @@ static int parse_ipt(struct action_util *a,int *argc_p, - 					return -1; - 				} - 				tcipt_globals.opts = --				    xtables_merge_options(tcipt_globals.opts, --				                          m->extra_opts, --				                          &m->option_offset); -+				    xtables_merge_options( -+#if (XTABLES_VERSION_CODE >= 6) -+				        tcipt_globals.orig_opts, -+#endif -+				        tcipt_globals.opts, -+				        m->extra_opts, -+				        &m->option_offset); - 			} else { - 				fprintf(stderr," failed to find target %s\n\n", optarg); - 				return -1; -@@ -305,7 +309,11 @@ print_ipt(struct action_util *au,FILE * f, struct rtattr *arg) - 			} -  - 			tcipt_globals.opts = --			    xtables_merge_options(tcipt_globals.opts, -+			    xtables_merge_options( -+#if (XTABLES_VERSION_CODE >= 6) -+				                  tcipt_globals.orig_opts, -+#endif -+				                  tcipt_globals.opts, - 			                          m->extra_opts, - 			                          &m->option_offset); - 		} else { diff --git a/package/iproute2/iproute2.mk b/package/iproute2/iproute2.mk index dd2506cbd..100f20aa2 100644 --- a/package/iproute2/iproute2.mk +++ b/package/iproute2/iproute2.mk @@ -4,8 +4,8 @@  #  ############################################################# -IPROUTE2_VERSION = 2.6.39 -IPROUTE2_SITE = http://devresources.linuxfoundation.org/dev/iproute2/download +IPROUTE2_VERSION = 3.1.0 +IPROUTE2_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/net/iproute2  IPROUTE2_TARGET_SBINS = ctstat genl ifstat ip lnstat nstat routef routel rtacct rtmon rtpr rtstat ss tc  # If both iproute2 and busybox are selected, make certain we win | 
