Update Buildroot to 2019.02.3 (#415)
* Update Buildroot to 2019-02.3 * Fix enter script * Update ova_defconfig * Fix network manager * Remove runc patches * Use same docker version * Fix build * Fix vmtools * Fix depens * Fix handling with tempfiles * Fix permission handling * Fix cp * Cleanup * Fix mounts
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
From 7d4856e213f349bcd97b3644b01d6170b226de16 Mon Sep 17 00:00:00 2001
|
||||
From: Quentin Armitage <quentin@armitage.org.uk>
|
||||
Date: Tue, 20 Nov 2018 17:24:58 +0000
|
||||
Subject: [PATCH] Rename TIMER_MAX to TIMER_MAXIMUM
|
||||
|
||||
ulibC defines TIMER_MAX, so to avoid naming conflict rename it.
|
||||
|
||||
This issue was reported by Paul Gildea <gildeap@tcd.ie> who also
|
||||
provided the patch.
|
||||
|
||||
Signed-off-by: Quentin Armitage <quentin@armitage.org.uk>
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Retrieved from:
|
||||
https://github.com/acassen/keepalived/commit/7d4856e213f349bcd97b3644b01d6170b226de16]
|
||||
---
|
||||
lib/parser.c | 8 ++++----
|
||||
lib/parser.h | 2 +-
|
||||
2 files changed, 5 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/lib/parser.c b/lib/parser.c
|
||||
index 1d53595c0..cc9b644e2 100644
|
||||
--- a/lib/parser.c
|
||||
+++ b/lib/parser.c
|
||||
@@ -1915,20 +1915,20 @@ read_timer(vector_t *strvec, size_t index, unsigned long *res, unsigned long min
|
||||
#endif
|
||||
|
||||
if (!max_time)
|
||||
- max_time = TIMER_MAX;
|
||||
+ max_time = TIMER_MAXIMUM;
|
||||
|
||||
errno = 0;
|
||||
timer = strtoul(vector_slot(strvec, index), &endptr, 10);
|
||||
- *res = (timer > TIMER_MAX ? TIMER_MAX : timer) * TIMER_HZ;
|
||||
+ *res = (timer > TIMER_MAXIMUM ? TIMER_MAXIMUM : timer) * TIMER_HZ;
|
||||
|
||||
if (FMT_STR_VSLOT(strvec, index)[0] == '-')
|
||||
report_config_error(CONFIG_INVALID_NUMBER, "%snegative number '%s'", warn, FMT_STR_VSLOT(strvec, index));
|
||||
else if (*endptr)
|
||||
report_config_error(CONFIG_INVALID_NUMBER, "%sinvalid number '%s'", warn, FMT_STR_VSLOT(strvec, index));
|
||||
- else if (errno == ERANGE || timer > TIMER_MAX)
|
||||
+ else if (errno == ERANGE || timer > TIMER_MAXIMUM)
|
||||
report_config_error(CONFIG_INVALID_NUMBER, "%snumber '%s' outside timer range", warn, FMT_STR_VSLOT(strvec, index));
|
||||
else if (timer < min_time || timer > max_time)
|
||||
- report_config_error(CONFIG_INVALID_NUMBER, "number '%s' outside range [%ld, %ld]", FMT_STR_VSLOT(strvec, index), min_time, max_time ? max_time : TIMER_MAX);
|
||||
+ report_config_error(CONFIG_INVALID_NUMBER, "number '%s' outside range [%ld, %ld]", FMT_STR_VSLOT(strvec, index), min_time, max_time ? max_time : TIMER_MAXIMUM);
|
||||
else
|
||||
return true;
|
||||
|
||||
diff --git a/lib/parser.h b/lib/parser.h
|
||||
index 88a74474a..291aa8ffe 100644
|
||||
--- a/lib/parser.h
|
||||
+++ b/lib/parser.h
|
||||
@@ -38,7 +38,7 @@
|
||||
#define MAXBUF 1024
|
||||
|
||||
/* Maximum time read_timer can return */
|
||||
-#define TIMER_MAX (ULONG_MAX / TIMER_HZ)
|
||||
+#define TIMER_MAXIMUM (ULONG_MAX / TIMER_HZ)
|
||||
|
||||
/* Configuration test errors. These should be in decreasing order of severity */
|
||||
typedef enum {
|
||||
@@ -1,38 +0,0 @@
|
||||
From 4da31a615412e15f7658d21770708e8084be149c Mon Sep 17 00:00:00 2001
|
||||
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
||||
Date: Wed, 4 Apr 2018 22:29:45 +0200
|
||||
Subject: [PATCH] configure.ac: do not force PIE
|
||||
|
||||
PIE is not necessarily supported on all architectures, so leave it up
|
||||
to the user to pass the appropriate CFLAGS/LDFLAGS if he wants to use
|
||||
PIE.
|
||||
|
||||
This fixes the build on the m68k and Microblaze architecture:
|
||||
|
||||
http://autobuild.buildroot.net/results/a536f5947b3b70fdaecad1af5542572c504ad046/
|
||||
http://autobuild.buildroot.net/results/0ffbf1e8d181c9463847a5b2be6f9baa18face24/
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
||||
Upstream-status: https://github.com/acassen/keepalived/pull/830
|
||||
---
|
||||
configure.ac | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index c344f07e..06545c91 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -233,8 +233,8 @@ AC_SUBST(ARFLAGS)
|
||||
# AC_PROG_LIBTOOL
|
||||
|
||||
KA_CPPFLAGS="$kernelinc"
|
||||
-KA_CFLAGS="-Wall -Wunused -Wstrict-prototypes -Wextra -g -O2 -fPIE -D_GNU_SOURCE"
|
||||
-KA_LDFLAGS="-pie"
|
||||
+KA_CFLAGS="-Wall -Wunused -Wstrict-prototypes -Wextra -g -O2 -D_GNU_SOURCE"
|
||||
+KA_LDFLAGS=""
|
||||
KA_LIBS=
|
||||
NEED_LIBDL=No
|
||||
#KA_LIBTOOLFLAGS =
|
||||
--
|
||||
2.14.3
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
From e4dd33f16fe56d09c8d59d1254a4ed1d8e9bb29c Mon Sep 17 00:00:00 2001
|
||||
From: Quentin Armitage <quentin@armitage.org.uk>
|
||||
Date: Thu, 6 Dec 2018 12:16:08 +0000
|
||||
Subject: [PATCH] Fix order of include files in configure COLLISION test
|
||||
|
||||
Since Linux 4.4.11 (commit 1575c09) including linux/if.h after
|
||||
net/if.h works, whereas until glibc fix their headers including
|
||||
net/if.h after linux/if.h causes compiler redefinition errors.
|
||||
|
||||
Unfortunately the test for the collision was done the wrong way
|
||||
round, as identified in issue #1079. The patch included in the
|
||||
issue report corrects the order of inclusion of the header files.
|
||||
|
||||
What we should do is ensure that glibc header files are included
|
||||
before Linux header files, so that at least if kernel headers from
|
||||
4.4.11 onwards are used, the conflict will not occur.
|
||||
|
||||
Signed-off-by: Quentin Armitage <quentin@armitage.org.uk>
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Retrieved from: https://github.com/acassen/keepalived/commit/e4dd33f16fe56d09c8d59d1254a4ed1d8e9bb29c]
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 7a2e8ce1..9badcc62 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1349,8 +1349,8 @@ AC_MSG_CHECKING([for linux/if.h and net/if.h namespace collision])
|
||||
SAV_CPPFLAGS="$CPPFLAGS"
|
||||
CPPFLAGS="$CPPFLAGS $kernelinc"
|
||||
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
|
||||
- #include <net/if.h>
|
||||
#include <linux/if.h>
|
||||
+ #include <net/if.h>
|
||||
]])],
|
||||
[
|
||||
AC_MSG_RESULT([no])
|
||||
@@ -4,7 +4,6 @@ config BR2_PACKAGE_KEEPALIVED
|
||||
depends on !BR2_STATIC_LIBS # uses libdl
|
||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_POPT
|
||||
help
|
||||
The main goal of the keepalived project is to add a strong &
|
||||
robust keepalive facility to the Linux Virtual Server
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 4e2d7cc01a6ee29a3955f5c622d47704ba7d9dd758189f15e9def016a2d1faa3 keepalived-1.4.2.tar.gz
|
||||
sha256 40e0e55afed9ca313d621a9c5878579696fafb5504dab521aadaf20ba6e7f597 keepalived-2.0.10.tar.gz
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||
|
||||
@@ -4,14 +4,28 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
KEEPALIVED_VERSION = 1.4.2
|
||||
KEEPALIVED_VERSION = 2.0.10
|
||||
KEEPALIVED_SITE = http://www.keepalived.org/software
|
||||
KEEPALIVED_DEPENDENCIES = host-pkgconf openssl popt
|
||||
KEEPALIVED_DEPENDENCIES = host-pkgconf openssl
|
||||
KEEPALIVED_LICENSE = GPL-2.0+
|
||||
KEEPALIVED_LICENSE_FILES = COPYING
|
||||
# 0001-configure.ac-do-not-force-PIE.patch
|
||||
KEEPALIVED_CONF_OPTS = --disable-hardening
|
||||
# We're patching configure.ac
|
||||
KEEPALIVED_AUTORECONF = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JSON_C),y)
|
||||
KEEPALIVED_DEPENDENCIES += json-c
|
||||
KEEPALIVED_CONF_OPTS += --enable-json
|
||||
else
|
||||
KEEPALIVED_CONF_OPTS += --disable-json
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
||||
KEEPALIVED_DEPENDENCIES += libglib2
|
||||
KEEPALIVED_CONF_OPTS += --enable-dbus
|
||||
else
|
||||
KEEPALIVED_CONF_OPTS += --disable-dbus
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBNL)$(BR2_PACKAGE_LIBNFNETLINK),yy)
|
||||
KEEPALIVED_DEPENDENCIES += libnl libnfnetlink
|
||||
|
||||
Reference in New Issue
Block a user