* [Buildroot] [git commit] package/clamav: renumber patch
From: Thomas Petazzoni @ 2017-05-11 19:50 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=c60a54ff8bb4620c917841e4b813f554a0ce0f1b
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
.../clamav/{0003-backtrace-uClibc.patch => 0002-backtrace-uClibc.patch} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/package/clamav/0003-backtrace-uClibc.patch b/package/clamav/0002-backtrace-uClibc.patch
similarity index 100%
rename from package/clamav/0003-backtrace-uClibc.patch
rename to package/clamav/0002-backtrace-uClibc.patch
^ permalink raw reply
* [Buildroot] [PATCH v2] package/efl: fix unmet dependencies
From: Thomas Petazzoni @ 2017-05-11 19:50 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170508211149.1964-1-yann.morin.1998@free.fr>
Hello,
On Mon, 8 May 2017 23:11:49 +0200, Yann E. MORIN wrote:
> EFL's elput selects libinput but forgot to propagate its dependencies.
> Which requires they be propagated further to a second sub-option, then
> to a third one.
>
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Romain Naour <romain.naour@openwide.fr>
>
> ---
> Changes v1 -> v2:
> - porpagate dependency to comments as well (Romain)
> - fix commit log typoes (Romain, me)
> ---
> package/efl/Config.in | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
Applied to master, after fixing the typo noticed by Romain. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] package/efl: fix unmet dependencies
From: Thomas Petazzoni @ 2017-05-11 19:48 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=31bd2b46a83f6009518935e11b4136668bd4d330
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
EFL's elput selects libinput but forgot to propagate its dependencies.
Which requires they be propagated further to a second sub-option, then
to a third one.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Romain Naour <romain.naour@openwide.fr>
[Thomas: fix typoes.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/efl/Config.in | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/package/efl/Config.in b/package/efl/Config.in
index 371ed3f..6ea57dc 100644
--- a/package/efl/Config.in
+++ b/package/efl/Config.in
@@ -178,13 +178,15 @@ config BR2_PACKAGE_EFL_WAYLAND
depends on BR2_PACKAGE_MESA3D_OPENGL_EGL # Evas DRM Engine
depends on BR2_PACKAGE_EFL_EEZE # efl drm
depends on BR2_PACKAGE_EFL_OPENGLES # OpenGL ES with EGL support only
+ depends on BR2_ENABLE_LOCALE # efl-drm <- efl-elput <- linput
select BR2_PACKAGE_EFL_DRM
select BR2_PACKAGE_WAYLAND_PROTOCOLS
-comment "Wayland support needs udev /dev management (eeze) and OpenGL ES w/ EGL, threads"
+comment "Wayland support needs udev /dev management (eeze), OpenGL ES w/ EGL, threads, locales"
depends on BR2_PACKAGE_WAYLAND
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_MESA3D_OPENGL_EGL \
- || !BR2_PACKAGE_EFL_OPENGLES || !BR2_PACKAGE_EFL_EEZE
+ || !BR2_PACKAGE_EFL_OPENGLES || !BR2_PACKAGE_EFL_EEZE \
+ || !BR2_ENABLE_LOCALE
choice
bool "OpenGL support"
@@ -216,6 +218,7 @@ endchoice # OpenGL support
config BR2_PACKAGE_EFL_ELPUT
bool "Elput"
+ depends on BR2_ENABLE_LOCALE # libinput
depends on BR2_PACKAGE_EFL_EEZE
select BR2_PACKAGE_LIBINPUT
select BR2_PACKAGE_LIBXKBCOMMON
@@ -226,23 +229,24 @@ config BR2_PACKAGE_EFL_ELPUT
libinput without having to duplicate the code in each
subsystem.
-comment "Elput support needs udev /dev management (eeze)"
- depends on !BR2_PACKAGE_EFL_EEZE
+comment "Elput support needs udev /dev management (eeze), locales"
+ depends on !BR2_PACKAGE_EFL_EEZE || !BR2_ENABLE_LOCALE
config BR2_PACKAGE_EFL_DRM
bool "Evas DRM Engine"
depends on BR2_PACKAGE_EFL_EEZE
depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm
depends on BR2_PACKAGE_MESA3D_OPENGL_EGL # require libgbm from mesa3d
+ depends on BR2_ENABLE_LOCALE # efl-elput <- libinput
select BR2_PACKAGE_EFL_ELPUT
select BR2_PACKAGE_LIBDRM
select BR2_PACKAGE_LIBXKBCOMMON
help
This option enable building support for the Evas DRM Engine.
-comment "Evas DRM Engine needs udev /dev management (eeze) and mesa3d w/ EGL support, threads"
+comment "Evas DRM Engine needs udev /dev management (eeze), mesa3d w/ EGL support, threads, locales"
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_MESA3D_OPENGL_EGL \
- || !BR2_PACKAGE_EFL_EEZE
+ || !BR2_PACKAGE_EFL_EEZE || !BR2_ENABLE_LOCALE
comment "libevas loaders"
^ permalink raw reply related
* [Buildroot] [PATCH v3 next] flex: bump version to 2.6.4
From: Thomas Petazzoni @ 2017-05-11 19:47 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170510135139.30976-1-Vincent.Riera@imgtec.com>
Hello,
On Wed, 10 May 2017 14:51:39 +0100, Vicente Olivert Riera wrote:
> - 0001 patch removed. It doesn't apply on this version and is also not
> necessary since the AR binary is now handled correctly with AR = @AR at .
> - 0002 patch removed. It's already included in this release:
> https://github.com/westes/flex/commit/a5cbe929ac3255d371e698f62dc256afe7006466
> - The flex project has moved to GitHub, so modify the URLs in both
> flex.mk and Config.in files.
> - The sed command over Makefile.in to prevent the flex binary to be
> built fails, so remove it. That logic has been moved to
> src/Makefile.in, and whenever we disable the flex binary to be built
> then the compilation fails when building the documentation because
> some bits require "../src/flex", which is the flex binary.
> We prevent building the flex binary and the documentation using a new
> patch.
>
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> Changes v2 -> v3:
> - Add a new patch to prevent the flex binary and the documentation to
> be built.
> - Restore the hook for removing the broken flex++ symlink.
> Changes v1 -> v2:
> - Do not offer the possibility to decide if we want the flex binary
> installed on the target. Instead of that, remove it unconditionally.
> ---
> ...lex-disable-flex-binary-and-documentation.patch | 35 ++++++++++++++++++++++
> package/flex/0001-prog-ar.patch | 11 -------
> package/flex/0002-fix-CVE-2016-6354.patch | 25 ----------------
> package/flex/Config.in | 2 +-
> package/flex/flex.hash | 2 +-
> package/flex/flex.mk | 9 ++----
> 6 files changed, 39 insertions(+), 45 deletions(-)
> create mode 100644 package/flex/0001-flex-disable-flex-binary-and-documentation.patch
> delete mode 100644 package/flex/0001-prog-ar.patch
> delete mode 100644 package/flex/0002-fix-CVE-2016-6354.patch
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit branch/next] flex: bump version to 2.6.4
From: Thomas Petazzoni @ 2017-05-11 19:43 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=e9a5f5843d0685c69b3c379b91bb9cce8864b8a2
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
- 0001 patch removed. It doesn't apply on this version and is also not
necessary since the AR binary is now handled correctly with AR = @AR at .
- 0002 patch removed. It's already included in this release:
https://github.com/westes/flex/commit/a5cbe929ac3255d371e698f62dc256afe7006466
- The flex project has moved to GitHub, so modify the URLs in both
flex.mk and Config.in files.
- The sed command over Makefile.in to prevent the flex binary to be
built fails, so remove it. That logic has been moved to
src/Makefile.in, and whenever we disable the flex binary to be built
then the compilation fails when building the documentation because
some bits require "../src/flex", which is the flex binary.
We prevent building the flex binary and the documentation using a new
patch.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
...lex-disable-flex-binary-and-documentation.patch | 35 ++++++++++++++++++++++
package/flex/0001-prog-ar.patch | 11 -------
package/flex/0002-fix-CVE-2016-6354.patch | 25 ----------------
package/flex/Config.in | 2 +-
package/flex/flex.hash | 2 +-
package/flex/flex.mk | 9 ++----
6 files changed, 39 insertions(+), 45 deletions(-)
diff --git a/package/flex/0001-flex-disable-flex-binary-and-documentation.patch b/package/flex/0001-flex-disable-flex-binary-and-documentation.patch
new file mode 100644
index 0000000..d035ef4
--- /dev/null
+++ b/package/flex/0001-flex-disable-flex-binary-and-documentation.patch
@@ -0,0 +1,35 @@
+flex: prevent flex binary to be built
+
+Since we prevent the flex binary to be built, we also need to prevent
+the documentation to be built, otherwise it will fail like this:
+
+Making all in doc
+make[2]: Entering directory '/br/output/build/flex-2.6.4/doc'
+make[2]: *** No rule to make target '../src/flex', needed by 'flex.1'.
+Stop.
+
+Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
+
+diff -rup a/Makefile.in b/Makefile.in
+--- a/Makefile.in 2017-05-06 15:49:09.000000000 +0100
++++ b/Makefile.in 2017-05-10 14:35:20.152794902 +0100
+@@ -450,7 +450,6 @@ EXTRA_DIST = \
+
+ SUBDIRS = \
+ src \
+- doc \
+ examples \
+ po \
+ tests \
+diff -rup a/src/Makefile.in b/src/Makefile.in
+--- a/src/Makefile.in 2017-05-06 15:49:09.000000000 +0100
++++ b/src/Makefile.in 2017-05-10 14:35:01.918464036 +0100
+@@ -90,7 +90,7 @@ PRE_UNINSTALL = :
+ POST_UNINSTALL = :
+ build_triplet = @build@
+ host_triplet = @host@
+-bin_PROGRAMS = flex$(EXEEXT)
++bin_PROGRAMS =
+ @ENABLE_BOOTSTRAP_TRUE at noinst_PROGRAMS = stage1flex$(EXEEXT)
+ @CROSS_TRUE at am__append_1 = \
+ @CROSS_TRUE@ ../lib/malloc.c \
diff --git a/package/flex/0001-prog-ar.patch b/package/flex/0001-prog-ar.patch
deleted file mode 100644
index e0626ff..0000000
--- a/package/flex/0001-prog-ar.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -rup flex-2.5.33.orig/Makefile.in flex-2.5.33/Makefile.in
---- flex-2.5.33.orig/Makefile.in 2007-01-18 17:29:25.000000000 +0100
-+++ flex-2.5.33/Makefile.in 2007-01-18 18:28:22.000000000 +0100
-@@ -105,7 +105,6 @@ am__installdirs = "$(DESTDIR)$(libdir)"
- "$(DESTDIR)$(includedir)"
- libLIBRARIES_INSTALL = $(INSTALL_DATA)
- LIBRARIES = $(lib_LIBRARIES)
--AR = ar
- ARFLAGS = cru
- libfl_a_AR = $(AR) $(ARFLAGS)
- libfl_a_LIBADD =
diff --git a/package/flex/0002-fix-CVE-2016-6354.patch b/package/flex/0002-fix-CVE-2016-6354.patch
deleted file mode 100644
index b0c780b..0000000
--- a/package/flex/0002-fix-CVE-2016-6354.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From a5cbe929ac3255d371e698f62dc256afe7006466 Mon Sep 17 00:00:00 2001
-From: Will Estes <westes575@gmail.com>
-Date: Sat, 27 Feb 2016 11:56:05 -0500
-Subject: [PATCH] Fixed incorrect integer type
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
----
-Status: upstream
-
- flex.skl | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/flex.skl b/src/flex.skl
-index 36a526a..64f853d 100644
---- a/flex.skl
-+++ b/flex.skl
-@@ -1703,7 +1703,7 @@ int yyFlexLexer::yy_get_next_buffer()
-
- else
- {
-- yy_size_t num_to_read =
-+ int num_to_read =
- YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
-
- while ( num_to_read <= 0 )
diff --git a/package/flex/Config.in b/package/flex/Config.in
index 0a70a1c..76e8bc7 100644
--- a/package/flex/Config.in
+++ b/package/flex/Config.in
@@ -5,4 +5,4 @@ config BR2_PACKAGE_FLEX
A fast lexical analyser generator. A tool for generating
programs that perform pattern-matching on text.
- http://flex.sourceforge.net/
+ https://github.com/westes/flex/
diff --git a/package/flex/flex.hash b/package/flex/flex.hash
index b91ab57..cf2ce85 100644
--- a/package/flex/flex.hash
+++ b/package/flex/flex.hash
@@ -1,2 +1,2 @@
# Locally computed:
-sha256 bf693433a3effe6b1f42e44abd787491e4e213984b1859545b92267a86088dd3 flex-2.5.37.tar.gz
+sha256 e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995 flex-2.6.4.tar.gz
diff --git a/package/flex/flex.mk b/package/flex/flex.mk
index 9a3f840..81cbdc1 100644
--- a/package/flex/flex.mk
+++ b/package/flex/flex.mk
@@ -4,8 +4,8 @@
#
################################################################################
-FLEX_VERSION = 2.5.37
-FLEX_SITE = http://download.sourceforge.net/project/flex
+FLEX_VERSION = 2.6.4
+FLEX_SITE = https://github.com/westes/flex/files/981163
FLEX_INSTALL_STAGING = YES
FLEX_LICENSE = FLEX
FLEX_LICENSE_FILES = COPYING
@@ -15,11 +15,6 @@ FLEX_CONF_ENV = ac_cv_path_M4=/usr/bin/m4
# we don't have a host-gettext/libintl
HOST_FLEX_DEPENDENCIES = host-m4
-define FLEX_DISABLE_PROGRAM
- $(SED) 's/^bin_PROGRAMS.*//' $(@D)/Makefile.in
-endef
-FLEX_POST_PATCH_HOOKS += FLEX_DISABLE_PROGRAM
-
# flex++ symlink is broken when flex binary is not installed
define FLEX_REMOVE_BROKEN_SYMLINK
rm -f $(TARGET_DIR)/usr/bin/flex++
^ permalink raw reply related
* [Buildroot] [PATCH 1/1] audit: bump to 2.7.6
From: Thomas Petazzoni @ 2017-05-11 19:41 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170510130646.28741-1-aduskett@codeblue.com>
Hello,
On Wed, 10 May 2017 09:06:46 -0400, Adam Duskett wrote:
> Signed-off-by: Adam Duskett <aduskett@codeblue.com>
> ---
> package/audit/audit.hash | 2 +-
> package/audit/audit.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 1/1] swig: bump to 3.0.12
From: Thomas Petazzoni @ 2017-05-11 19:41 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170510130057.16408-1-aduskett@codeblue.com>
Hello,
On Wed, 10 May 2017 09:00:57 -0400, Adam Duskett wrote:
> Signed-off-by: Adam Duskett <aduskett@codeblue.com>
> ---
> package/swig/swig.hash | 2 +-
> package/swig/swig.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit branch/next] audit: bump to 2.7.6
From: Thomas Petazzoni @ 2017-05-11 19:40 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=9235a19f1ae01de6eaa2c36c41cc6a790892f2fe
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Adam Duskett <aduskett@codeblue.com>
Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/audit/audit.hash | 2 +-
package/audit/audit.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/audit/audit.hash b/package/audit/audit.hash
index 2ae8f99..7dd3e55 100644
--- a/package/audit/audit.hash
+++ b/package/audit/audit.hash
@@ -1,2 +1,2 @@
#Locally computed
-sha256 0441790794fd9375dbca598fa0ffb46c57ff37b3a24b94ffec0bbee3215cca09 audit-2.7.1.tar.gz
+sha256 fa65289cffdc95a25bfbdba541f43ee1b12c707090a38fd027dcf9354b9014e7 audit-2.7.6.tar.gz
diff --git a/package/audit/audit.mk b/package/audit/audit.mk
index b94d0bf..95b6078 100644
--- a/package/audit/audit.mk
+++ b/package/audit/audit.mk
@@ -4,7 +4,7 @@
#
################################################################################
-AUDIT_VERSION = 2.7.1
+AUDIT_VERSION = 2.7.6
AUDIT_SITE = http://people.redhat.com/sgrubb/audit
AUDIT_LICENSE = GPL-2.0+ (programs), unclear (libraries)
AUDIT_LICENSE_FILES = COPYING
^ permalink raw reply related
* [Buildroot] [git commit branch/next] swig: bump to 3.0.12
From: Thomas Petazzoni @ 2017-05-11 19:39 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=c5e197ecd70e24635d255b21b5eec7ccc89cd308
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Adam Duskett <aduskett@codeblue.com>
Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/swig/swig.hash | 2 +-
package/swig/swig.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/swig/swig.hash b/package/swig/swig.hash
index 92ddc11..77c93a9 100644
--- a/package/swig/swig.hash
+++ b/package/swig/swig.hash
@@ -1,2 +1,2 @@
# Locally computed:
-sha256 2939aae39dec06095462f1b95ce1c958ac80d07b926e48871046d17c0094f44c swig-3.0.10.tar.gz
+sha256 7cf9f447ae7ed1c51722efc45e7f14418d15d7a1e143ac9f09a668999f4fc94d swig-3.0.12.tar.gz
diff --git a/package/swig/swig.mk b/package/swig/swig.mk
index 740b597..cdf9533 100644
--- a/package/swig/swig.mk
+++ b/package/swig/swig.mk
@@ -5,7 +5,7 @@
################################################################################
SWIG_VERSION_MAJOR = 3.0
-SWIG_VERSION = $(SWIG_VERSION_MAJOR).10
+SWIG_VERSION = $(SWIG_VERSION_MAJOR).12
SWIG_SITE = http://downloads.sourceforge.net/project/swig/swig/swig-$(SWIG_VERSION)
HOST_SWIG_DEPENDENCIES = host-bison
HOST_SWIG_CONF_OPTS = \
^ permalink raw reply related
* [Buildroot] [PATCH] boost: disable locale and regex modules if static build and icu are enabled
From: Thomas Petazzoni @ 2017-05-11 19:38 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1494408354-20297-1-git-send-email-yegorslists@googlemail.com>
Hello,
On Wed, 10 May 2017 11:25:54 +0200, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> Boost build system doesn't support ICU static only building [1], so
> so disable locale and regex modules for this case.
>
> [1] http://boost.2283326.n4.nabble.com/bjam-Building-Regex-with-static-runtime-linking-td2588874.html
This thread doesn't really say it doesn't support ICU static linking. I
found https://svn.boost.org/trac/boost/ticket/9685 to be somewhat more
informative.
> config BR2_PACKAGE_BOOST_LOCALE
> bool "boost-locale"
> + # Boost build system doesn't support ICU static only building
> + depends on !(BR2_STATIC_LIBS && BR2_PACKAGE_ICU)
> select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
>
> config BR2_PACKAGE_BOOST_LOG
> @@ -134,6 +136,8 @@ config BR2_PACKAGE_BOOST_RANDOM
>
> config BR2_PACKAGE_BOOST_REGEX
> bool "boost-regex"
> + # Boost build system doesn't support ICU static only building
> + depends on !(BR2_STATIC_LIBS && BR2_PACKAGE_ICU)
Is this the right way? Wouldn't it be better to do:
ifeq ($(BR2_PACKAGE_ICU):$(BR2_STATIC_LIBS),y:)
BOOST_FLAGS += --with-icu=$(STAGING_DIR)/usr
BOOST_DEPENDENCIES += icu
else
BOOST_FLAGS += --without-icu
endif
My understanding is that it's not Boost::Locale and Boost::Regex that
have a problem, but the fact of using ICU in a static linking
situation. If that's the case, then I believe tweaking the .mk file to
not use ICU in static linking scenarios is probably better.
What do you think? Could you test this?
Thanks a lot!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH] strongswan: fix crypt() redefinition
From: Thomas Petazzoni @ 2017-05-11 19:21 UTC (permalink / raw)
To: buildroot
In-Reply-To: <8087559eb746cd7594ec07431a2c6794678f0905.1494501731.git.baruch@tkos.co.il>
Hello,
On Thu, 11 May 2017 14:22:11 +0300, Baruch Siach wrote:
> Add patch from upstream pending pull request (#72) to fix crypt() definition
> conflict.
>
> Fixes:
> http://autobuild.buildroot.net/results/612/6120add5ad6e7f5d575fc2a2442cd7fe5302eb46/
> http://autobuild.buildroot.net/results/ba1/ba1298e71ef28857654ae8d4593d09e4fe8cdda0/
> http://autobuild.buildroot.net/results/6b9/6b928e2a6a35bfb21c792fca083bc4cbdaef9304/
>
> Cc: J?r?me Pouiller <jezz@sysmic.org>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
> ...0001-af_alg-fix-crypt-definition-conflict.patch | 55 ++++++++++++++++++++++
> 1 file changed, 55 insertions(+)
> create mode 100644 package/strongswan/0001-af_alg-fix-crypt-definition-conflict.patch
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] strongswan: fix crypt() redefinition
From: Thomas Petazzoni @ 2017-05-11 19:20 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=dd24d95a76d19378b50e1d8a26ff0a00860671c6
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Add patch from upstream pending pull request (#72) to fix crypt() definition
conflict.
Fixes:
http://autobuild.buildroot.net/results/612/6120add5ad6e7f5d575fc2a2442cd7fe5302eb46/
http://autobuild.buildroot.net/results/ba1/ba1298e71ef28857654ae8d4593d09e4fe8cdda0/
http://autobuild.buildroot.net/results/6b9/6b928e2a6a35bfb21c792fca083bc4cbdaef9304/
Cc: J??r??me Pouiller <jezz@sysmic.org>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
...0001-af_alg-fix-crypt-definition-conflict.patch | 55 ++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/package/strongswan/0001-af_alg-fix-crypt-definition-conflict.patch b/package/strongswan/0001-af_alg-fix-crypt-definition-conflict.patch
new file mode 100644
index 0000000..442e53e
--- /dev/null
+++ b/package/strongswan/0001-af_alg-fix-crypt-definition-conflict.patch
@@ -0,0 +1,55 @@
+From 0b906cb025a506be1b73e5b485179585d1a90be2 Mon Sep 17 00:00:00 2001
+From: Baruch Siach <baruch@tkos.co.il>
+Date: Thu, 11 May 2017 14:04:47 +0300
+Subject: [PATCH] af_alg: fix crypt() definition conflict
+
+Rename the crypt() method to avoid conflict with POSIX crypt(). Fixes the
+following build failure with musl libc:
+
+In file included from ../../../../src/libstrongswan/utils/utils.h:53:0,
+ from ../../../../src/libstrongswan/library.h:101,
+ from af_alg_ops.h:24,
+ from af_alg_ops.c:16:
+af_alg_ops.c:110:22: error: conflicting types for 'crypt'
+ METHOD(af_alg_ops_t, crypt, bool,
+ ^
+../../../../src/libstrongswan/utils/utils/object.h:99:13: note: in definition of macro 'METHOD'
+ static ret name(union {iface *_public; this;} \
+ ^
+In file included from af_alg_ops.c:18:0:
+.../host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/unistd.h:144:7: note: previous declaration of 'crypt' was here
+ char *crypt(const char *, const char *);
+ ^
+
+Signed-off-by: Baruch Siach <baruch@tkos.co.il>
+---
+Upstream status: https://github.com/strongswan/strongswan/pull/72
+
+ src/libstrongswan/plugins/af_alg/af_alg_ops.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/libstrongswan/plugins/af_alg/af_alg_ops.c b/src/libstrongswan/plugins/af_alg/af_alg_ops.c
+index 331d1e8010aa..452cd1ac30c9 100644
+--- a/src/libstrongswan/plugins/af_alg/af_alg_ops.c
++++ b/src/libstrongswan/plugins/af_alg/af_alg_ops.c
+@@ -107,7 +107,7 @@ METHOD(af_alg_ops_t, hash, bool,
+ return TRUE;
+ }
+
+-METHOD(af_alg_ops_t, crypt, bool,
++METHOD(af_alg_ops_t, crypt_, bool,
+ private_af_alg_ops_t *this, u_int32_t type, chunk_t iv, chunk_t data,
+ char *out)
+ {
+@@ -224,7 +224,7 @@ af_alg_ops_t *af_alg_ops_create(char *type, char *alg)
+ .public = {
+ .hash = _hash,
+ .reset = _reset,
+- .crypt = _crypt,
++ .crypt = _crypt_,
+ .set_key = _set_key,
+ .destroy = _destroy,
+ },
+--
+2.11.0
+
^ permalink raw reply related
* [Buildroot] [PATCH v2 next] libgtk3: bump version to 3.22.14
From: Thomas Petazzoni @ 2017-05-11 19:19 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170511101922.30459-1-Vincent.Riera@imgtec.com>
Hello,
On Thu, 11 May 2017 11:19:22 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> Changes v1 -> v2:
> - bump to 3.22.14 instead of 3.22.13
> ---
> package/libgtk3/libgtk3.hash | 4 ++--
> package/libgtk3/libgtk3.mk | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit branch/next] libgtk3: bump version to 3.22.14
From: Thomas Petazzoni @ 2017-05-11 19:19 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=ada454eeffab10c3914f078c73b1141c84f2f47f
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libgtk3/libgtk3.hash | 4 ++--
package/libgtk3/libgtk3.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/libgtk3/libgtk3.hash b/package/libgtk3/libgtk3.hash
index 10dcb4d..cbba7ca 100644
--- a/package/libgtk3/libgtk3.hash
+++ b/package/libgtk3/libgtk3.hash
@@ -1,2 +1,2 @@
-# From http://ftp.gnome.org/pub/gnome/sources/gtk+/3.22/gtk+-3.22.12.sha256sum
-sha256 84fae0cefb6a11ee2b4e86b8ac42fe46a3d30b4ad16661d5fc51e8ae03e2a98c gtk+-3.22.12.tar.xz
+# From http://ftp.gnome.org/pub/gnome/sources/gtk+/3.22/gtk+-3.22.14.sha256sum
+sha256 d6120e4fd64e432b74a61e8abd972b1948cf54e4dc4f0e081c05ab625f087131 gtk+-3.22.14.tar.xz
diff --git a/package/libgtk3/libgtk3.mk b/package/libgtk3/libgtk3.mk
index 1759953..7d8eecb 100644
--- a/package/libgtk3/libgtk3.mk
+++ b/package/libgtk3/libgtk3.mk
@@ -5,7 +5,7 @@
################################################################################
LIBGTK3_VERSION_MAJOR = 3.22
-LIBGTK3_VERSION = $(LIBGTK3_VERSION_MAJOR).12
+LIBGTK3_VERSION = $(LIBGTK3_VERSION_MAJOR).14
LIBGTK3_SOURCE = gtk+-$(LIBGTK3_VERSION).tar.xz
LIBGTK3_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk+/$(LIBGTK3_VERSION_MAJOR)
LIBGTK3_LICENSE = LGPL-2.0+
^ permalink raw reply related
* [Buildroot] [PATCH next] sudo: bump version to 1.8.20
From: Thomas Petazzoni @ 2017-05-11 19:19 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170511093602.12019-1-Vincent.Riera@imgtec.com>
Hello,
On Thu, 11 May 2017 10:36:02 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> package/sudo/sudo.hash | 2 +-
> package/sudo/sudo.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit branch/next] sudo: bump version to 1.8.20
From: Thomas Petazzoni @ 2017-05-11 19:19 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=190731df61b9fa0083ae37cbb9c044d2773d0f29
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/sudo/sudo.hash | 2 +-
package/sudo/sudo.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/sudo/sudo.hash b/package/sudo/sudo.hash
index 82e1ad6..63b1dd0 100644
--- a/package/sudo/sudo.hash
+++ b/package/sudo/sudo.hash
@@ -1,2 +1,2 @@
# From: http://www.sudo.ws/download.html
-sha256 237e18e67c2ad59ecacfa4b7707198b09fcf84914621585a9bc670dcc31a52e0 sudo-1.8.19p2.tar.gz
+sha256 9e97b8da859c6cc1b5b8c31db93002b750eae16af1bbda9140f8dd85b970e0e0 sudo-1.8.20.tar.gz
diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk
index 0fcd740..60767a3 100644
--- a/package/sudo/sudo.mk
+++ b/package/sudo/sudo.mk
@@ -4,7 +4,7 @@
#
################################################################################
-SUDO_VERSION = 1.8.19p2
+SUDO_VERSION = 1.8.20
SUDO_SITE = http://www.sudo.ws/sudo/dist
SUDO_LICENSE = ISC, BSD-3-Clause
SUDO_LICENSE_FILES = doc/LICENSE
^ permalink raw reply related
* [Buildroot] [PATCH next 1/3] network-manager: bump version to 1.8.0
From: Thomas Petazzoni @ 2017-05-11 19:18 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170511135639.43280-1-Vincent.Riera@imgtec.com>
Hello,
On Thu, 11 May 2017 14:56:37 +0100, Vicente Olivert Riera wrote:
> Added --disable-concheck to avoid configure failure when libcurl is not
> available:
>
> checking for LIBCURL... no
> configure: error: --enable-concheck requires libcurl library.
>
> One would expect the concheck functionality to be automatically disabled
> if libcurl is not found. But upstream wants to be explicitly disabled if
> now wanted to prevent building NetworkManager without connectivity
> check support without any evident warning on systems where libcurl is
> not installed. See:
>
> https://github.com/NetworkManager/NetworkManager/commit/faa1b85dab647baad7ce856e83f343af841aa6a5
>
> Proper support for concheck will be added in a subsequent patch.
>
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> package/network-manager/network-manager.hash | 4 ++--
> package/network-manager/network-manager.mk | 7 ++++---
> 2 files changed, 6 insertions(+), 5 deletions(-)
Series applied to next, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit branch/next] network-manager: add optional ofono support
From: Thomas Petazzoni @ 2017-05-11 19:18 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=b33b493b7feebfc933873cb34ac70c042e89a1d2
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/network-manager/network-manager.mk | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/package/network-manager/network-manager.mk b/package/network-manager/network-manager.mk
index 9f4cebe..4a05a65 100644
--- a/package/network-manager/network-manager.mk
+++ b/package/network-manager/network-manager.mk
@@ -32,6 +32,13 @@ NETWORK_MANAGER_CONF_OPTS = \
--disable-ifupdown \
--disable-ifnet
+ifeq ($(BR2_PACKAGE_OFONO),y)
+NETWORK_MANAGER_DEPENDENCIES += ofono
+NETWORK_MANAGER_CONF_OPTS += --with-ofono
+else
+NETWORK_MANAGER_CONF_OPTS += --without-ofono
+endif
+
ifeq ($(BR2_PACKAGE_LIBCURL),y)
NETWORK_MANAGER_DEPENDENCIES += libcurl
NETWORK_MANAGER_CONF_OPTS += --enable-concheck
^ permalink raw reply related
* [Buildroot] [git commit branch/next] network-manager: add optional concheck support
From: Thomas Petazzoni @ 2017-05-11 19:18 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=4be3f800dccec67cc873c15f83aeda73c5b1a673
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/network-manager/network-manager.mk | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/package/network-manager/network-manager.mk b/package/network-manager/network-manager.mk
index 1d17ec4..9f4cebe 100644
--- a/package/network-manager/network-manager.mk
+++ b/package/network-manager/network-manager.mk
@@ -30,8 +30,14 @@ NETWORK_MANAGER_CONF_OPTS = \
--with-crypto=gnutls \
--with-iptables=/usr/sbin/iptables \
--disable-ifupdown \
- --disable-ifnet \
- --disable-concheck
+ --disable-ifnet
+
+ifeq ($(BR2_PACKAGE_LIBCURL),y)
+NETWORK_MANAGER_DEPENDENCIES += libcurl
+NETWORK_MANAGER_CONF_OPTS += --enable-concheck
+else
+NETWORK_MANAGER_CONF_OPTS += --disable-concheck
+endif
ifeq ($(BR2_PACKAGE_NETWORK_MANAGER_TUI),y)
NETWORK_MANAGER_DEPENDENCIES += newt
^ permalink raw reply related
* [Buildroot] [git commit branch/next] network-manager: bump version to 1.8.0
From: Thomas Petazzoni @ 2017-05-11 19:17 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=5d83ea1161d8dd9d1ff049364633b479f663b2f0
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
Added --disable-concheck to avoid configure failure when libcurl is not
available:
checking for LIBCURL... no
configure: error: --enable-concheck requires libcurl library.
One would expect the concheck functionality to be automatically disabled
if libcurl is not found. But upstream wants to be explicitly disabled if
not wanted to prevent building NetworkManager without connectivity
check support without any evident warning on systems where libcurl is
not installed. See:
https://github.com/NetworkManager/NetworkManager/commit/faa1b85dab647baad7ce856e83f343af841aa6a5
Proper support for concheck will be added in a subsequent patch.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/network-manager/network-manager.hash | 4 ++--
package/network-manager/network-manager.mk | 7 ++++---
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/package/network-manager/network-manager.hash b/package/network-manager/network-manager.hash
index 94f3e26..2861aed 100644
--- a/package/network-manager/network-manager.hash
+++ b/package/network-manager/network-manager.hash
@@ -1,2 +1,2 @@
-# From http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/1.4/NetworkManager-1.4.2.sha256sum
-sha256 a864e347ddf6da8dabd40e0185b8c10a655d4a94b45cbaa2b3bb4b5e8360d204 NetworkManager-1.4.2.tar.xz
+# From https://download.gnome.org/sources/NetworkManager/1.8/NetworkManager-1.8.0.sha256sum
+sha256 fa5a5c6a36cdf95b12df34cc575bd61a74f297ede9be22cac4807a1aff3cf69e NetworkManager-1.8.0.tar.xz
diff --git a/package/network-manager/network-manager.mk b/package/network-manager/network-manager.mk
index 6adc9b1..1d17ec4 100644
--- a/package/network-manager/network-manager.mk
+++ b/package/network-manager/network-manager.mk
@@ -4,8 +4,8 @@
#
################################################################################
-NETWORK_MANAGER_VERSION_MAJOR = 1.4
-NETWORK_MANAGER_VERSION = $(NETWORK_MANAGER_VERSION_MAJOR).2
+NETWORK_MANAGER_VERSION_MAJOR = 1.8
+NETWORK_MANAGER_VERSION = $(NETWORK_MANAGER_VERSION_MAJOR).0
NETWORK_MANAGER_SOURCE = NetworkManager-$(NETWORK_MANAGER_VERSION).tar.xz
NETWORK_MANAGER_SITE = http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/$(NETWORK_MANAGER_VERSION_MAJOR)
NETWORK_MANAGER_INSTALL_STAGING = YES
@@ -30,7 +30,8 @@ NETWORK_MANAGER_CONF_OPTS = \
--with-crypto=gnutls \
--with-iptables=/usr/sbin/iptables \
--disable-ifupdown \
- --disable-ifnet
+ --disable-ifnet \
+ --disable-concheck
ifeq ($(BR2_PACKAGE_NETWORK_MANAGER_TUI),y)
NETWORK_MANAGER_DEPENDENCIES += newt
^ permalink raw reply related
* [Buildroot] [PATCH 1/1] erlang: bump version to 19.3
From: Thomas Petazzoni @ 2017-05-11 19:16 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1494508887-7015-1-git-send-email-fhunleth@troodon-software.com>
Hello,
On Thu, 11 May 2017 09:21:27 -0400, Frank Hunleth wrote:
> This change bumps the Erlang version from 18.3 to 19.3. Erlang 19.0 has
> many improvements but introduces a few incompatible changes to Erlang
> 18.3. Details are at:
>
> http://erlang.org/download/otp_src_19.0.readme
>
> The 19.x minor releases primarily contain bug fixes, optimizations and
> other minor imporvements. Details are at:
>
> http://erlang.org/download/otp_src_19.1.readme
> http://erlang.org/download/otp_src_19.2.readme
> http://erlang.org/download/otp_src_19.3.readme
>
> Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
> ---
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit branch/next] erlang: bump version to 19.3
From: Thomas Petazzoni @ 2017-05-11 19:16 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=85dd8db43a684265edacc9a4afb0a68775412266
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next
This change bumps the Erlang version from 18.3 to 19.3. Erlang 19.0 has
many improvements but introduces a few incompatible changes to Erlang
18.3. Details are at:
http://erlang.org/download/otp_src_19.0.readme
The 19.x minor releases primarily contain bug fixes, optimizations and
other minor imporvements. Details are at:
http://erlang.org/download/otp_src_19.1.readme
http://erlang.org/download/otp_src_19.2.readme
http://erlang.org/download/otp_src_19.3.readme
Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/erlang/erlang.hash | 4 ++--
package/erlang/erlang.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/erlang/erlang.hash b/package/erlang/erlang.hash
index c39c26e..dc12ccd 100644
--- a/package/erlang/erlang.hash
+++ b/package/erlang/erlang.hash
@@ -1,3 +1,3 @@
# md5 from http://www.erlang.org/download/MD5, sha256 locally computed
-md5 7e4ff32f97c36fb3dab736f8d481830b otp_src_18.3.tar.gz
-sha256 fdab8129a1cb935db09f1832e3a7d511a4aeb2b9bb3602ca6a7ccb9730d5c9c3 otp_src_18.3.tar.gz
+md5 a8c259ec47bf84e77510673e1b76b6db otp_src_19.3.tar.gz
+sha256 fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 otp_src_19.3.tar.gz
diff --git a/package/erlang/erlang.mk b/package/erlang/erlang.mk
index 364085c..0f04a84 100644
--- a/package/erlang/erlang.mk
+++ b/package/erlang/erlang.mk
@@ -5,7 +5,7 @@
################################################################################
# See note below when updating Erlang
-ERLANG_VERSION = 18.3
+ERLANG_VERSION = 19.3
ERLANG_SITE = http://www.erlang.org/download
ERLANG_SOURCE = otp_src_$(ERLANG_VERSION).tar.gz
ERLANG_DEPENDENCIES = host-erlang
@@ -19,7 +19,7 @@ ERLANG_AUTORECONF = YES
# Whenever updating Erlang, this value should be updated as well, to the
# value of EI_VSN in the file lib/erl_interface/vsn.mk
-ERLANG_EI_VSN = 3.8.2
+ERLANG_EI_VSN = 3.9.3
# The configure checks for these functions fail incorrectly
ERLANG_CONF_ENV = ac_cv_func_isnan=yes ac_cv_func_isinf=yes
^ permalink raw reply related
* [Buildroot] [PATCH/next 1/1] package/linux-headers: bump 3.12.x and 4.{4, 9, 10}.x series
From: Thomas Petazzoni @ 2017-05-11 19:15 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170511170042.4894-1-bernd.kuhls@t-online.de>
Hello,
On Thu, 11 May 2017 19:00:42 +0200, Bernd Kuhls wrote:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/linux-headers/Config.in.host | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
We generally apply these kernel version bumps to the master branch, so
that's what I've done.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] package/linux-headers: bump 3.12.x and 4.{4, 9, 10}.x series
From: Thomas Petazzoni @ 2017-05-11 19:15 UTC (permalink / raw)
To: buildroot
commit: https://git.buildroot.net/buildroot/commit/?id=d48436c2bf7ca5a6e3d38ce5c2f3ba0ddd6d7386
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
| 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index dcfcce9..f851271 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -225,10 +225,10 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "3.2.88" if BR2_KERNEL_HEADERS_3_2
default "3.4.113" if BR2_KERNEL_HEADERS_3_4
default "3.10.105" if BR2_KERNEL_HEADERS_3_10
- default "3.12.73" if BR2_KERNEL_HEADERS_3_12
+ default "3.12.74" if BR2_KERNEL_HEADERS_3_12
default "4.1.39" if BR2_KERNEL_HEADERS_4_1
- default "4.4.66" if BR2_KERNEL_HEADERS_4_4
- default "4.9.26" if BR2_KERNEL_HEADERS_4_9
- default "4.10.14" if BR2_KERNEL_HEADERS_4_10
+ default "4.4.67" if BR2_KERNEL_HEADERS_4_4
+ default "4.9.27" if BR2_KERNEL_HEADERS_4_9
+ default "4.10.15" if BR2_KERNEL_HEADERS_4_10
default "4.11" if BR2_KERNEL_HEADERS_4_11
default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
^ permalink raw reply related
* [Buildroot] [PATCH 1/1] package/openvpn: security bump to 2.4.2
From: Thomas Petazzoni @ 2017-05-11 19:14 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20170511165333.4655-1-bernd.kuhls@t-online.de>
Hello,
On Thu, 11 May 2017 18:53:33 +0200, Bernd Kuhls wrote:
> Fixes CVE-2017-7478 & CVE-2017-7479:
> https://community.openvpn.net/openvpn/wiki/QuarkslabAndCryptographyEngineerAudits
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/openvpn/openvpn.hash | 2 +-
> package/openvpn/openvpn.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied to master, thanks. Peter: wanted for LTS!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox