Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -1,39 +0,0 @@
|
||||
From f31bb2561776ad2ce4b77339da6fbfc9e3b2ffbb Mon Sep 17 00:00:00 2001
|
||||
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
Date: Sun, 26 Oct 2014 14:18:29 +0100
|
||||
Subject: [PATCH] Do not pass -Werror when --enable-debug is used
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
---
|
||||
Make_global.am | 2 +-
|
||||
configure.ac | 1 -
|
||||
2 files changed, 1 insertion(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Make_global.am b/Make_global.am
|
||||
index 7953451..25c4d64 100644
|
||||
--- a/Make_global.am
|
||||
+++ b/Make_global.am
|
||||
@@ -77,7 +77,7 @@ AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include \
|
||||
AM_CFLAGS = -std=gnu99
|
||||
|
||||
if ENABLE_DEBUG
|
||||
-AM_CFLAGS += -g -g3 -ggdb -gdwarf-2 -DIPSET_DEBUG -Wall -Werror
|
||||
+AM_CFLAGS += -g -g3 -ggdb -gdwarf-2 -DIPSET_DEBUG -Wall
|
||||
else
|
||||
AM_CFLAGS += -O2 -DNDEBUG
|
||||
endif
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 8fdac15..ee3b147 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -345,7 +345,6 @@ AX_CFLAGS_GCC_OPTION(-Waggregate-return)
|
||||
AX_CFLAGS_GCC_OPTION(-Wbad-function-cast)
|
||||
AX_CFLAGS_GCC_OPTION(-Wcast-align)
|
||||
AX_CFLAGS_GCC_OPTION(-Wcast-qual)
|
||||
-AX_CFLAGS_GCC_OPTION(-Werror)
|
||||
AX_CFLAGS_GCC_OPTION(-Wextra)
|
||||
AX_CFLAGS_GCC_OPTION(-Wfloat-equal)
|
||||
AX_CFLAGS_GCC_OPTION(-Wformat=2)
|
||||
--
|
||||
2.0.0
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
From a4212bf911026740afc7fce98d9100e2ef5dcea0 Mon Sep 17 00:00:00 2001
|
||||
From: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
|
||||
Date: Tue, 26 Sep 2017 07:00:13 +0200
|
||||
Subject: [PATCH] Replace the last reference to u_int8_t with uint8_t.
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Upstream status: commit a4212bf911026740
|
||||
|
||||
src/ipset.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/ipset.c b/src/ipset.c
|
||||
index 79f56b869ea7..df0778a92d8b 100644
|
||||
--- a/src/ipset.c
|
||||
+++ b/src/ipset.c
|
||||
@@ -282,7 +282,7 @@ call_parser(int *argc, char *argv[], const struct ipset_type *type,
|
||||
const struct ipset_arg *arg;
|
||||
const char *optstr;
|
||||
const struct ipset_type *t = type;
|
||||
- u_int8_t revision = type->revision;
|
||||
+ uint8_t revision = type->revision;
|
||||
int ret = 0, i = 1;
|
||||
|
||||
/* Currently CREATE and ADT may have got additional arguments */
|
||||
--
|
||||
2.14.2
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
# From ftp://ftp.netfilter.org/pub/ipset/ipset-6.30.tar.bz2.md5sum.txt
|
||||
md5 41c32e3b884ec714f0aac95e7675f9d1 ipset-6.30.tar.bz2
|
||||
# From http://ftp.netfilter.org/pub/ipset/ipset-6.34.tar.bz2.md5sum.txt
|
||||
md5 51bd03f976a1501fd45e1d71a1e2e6bf ipset-6.34.tar.bz2
|
||||
# Calculated based on the hash above
|
||||
sha256 65bfa43fec3d51a6b4012f3d7e4b93a748df9b71b6cd6c53adbec8083e804a31 ipset-6.30.tar.bz2
|
||||
sha256 d70e831b670b7aa25dde81fd994d3a7ce0c0e801559a557105576df66cd8d680 ipset-6.34.tar.bz2
|
||||
# Locally calculated
|
||||
sha256 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c COPYING
|
||||
|
||||
@@ -4,14 +4,13 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IPSET_VERSION = 6.30
|
||||
IPSET_VERSION = 6.34
|
||||
IPSET_SOURCE = ipset-$(IPSET_VERSION).tar.bz2
|
||||
IPSET_SITE = http://ipset.netfilter.org
|
||||
IPSET_DEPENDENCIES = libmnl host-pkgconf
|
||||
IPSET_CONF_OPTS = --with-kmod=no
|
||||
# For 0001-Do-not-pass-Werror-when-enable-debug-is-used.patch
|
||||
IPSET_AUTORECONF = YES
|
||||
IPSET_LICENSE = GPLv2
|
||||
IPSET_LICENSE = GPL-2.0
|
||||
IPSET_LICENSE_FILES = COPYING
|
||||
IPSET_INSTALL_STAGING = YES
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user