* [ptxdist] [PATCH 1/6] dbus: version bump 1.10.22 -> 1.10.24
@ 2017-10-18 14:11 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 2/6] libnl3: version bump 3.2.29 -> 3.3.0 Clemens Gruber
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Clemens Gruber @ 2017-10-18 14:11 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
The expat patch is now upstream.
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
...er-expat-Tell-Expat-not-to-defend-against.patch | 74 ----------------------
patches/dbus-1.10.22/autogen.sh | 1 -
patches/dbus-1.10.22/series | 5 --
rules/dbus.make | 4 +-
4 files changed, 2 insertions(+), 82 deletions(-)
delete mode 100644 patches/dbus-1.10.22/0010-config-loader-expat-Tell-Expat-not-to-defend-against.patch
delete mode 120000 patches/dbus-1.10.22/autogen.sh
delete mode 100644 patches/dbus-1.10.22/series
diff --git a/patches/dbus-1.10.22/0010-config-loader-expat-Tell-Expat-not-to-defend-against.patch b/patches/dbus-1.10.22/0010-config-loader-expat-Tell-Expat-not-to-defend-against.patch
deleted file mode 100644
index 5289f720f..000000000
--- a/patches/dbus-1.10.22/0010-config-loader-expat-Tell-Expat-not-to-defend-against.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-From: Simon McVittie <smcv@debian.org>
-Date: Fri, 21 Jul 2017 10:46:39 +0100
-Subject: [PATCH] config-loader-expat: Tell Expat not to defend against hash
- collisions
-
-By default, Expat uses cryptographic-quality random numbers as a salt for
-its hash algorithm, and since 2.2.1 it gets them from the getrandom
-syscall on Linux. That syscall refuses to return any entropy until the
-kernel's CSPRNG (random pool) has been initialized. Unfortunately, this
-can take as long as 40 seconds on embedded devices with few entropy
-sources, which is too long: if the system dbus-daemon blocks for that
-length of time, important D-Bus clients like systemd and systemd-logind
-time out and fail to connect to it.
-
-We're parsing small configuration files here, and we trust them
-completely, so we don't need to defend against hash collisions: nobody
-is going to be crafting them to cause pathological performance.
-
-Bug: https://bugs.freedesktop.org/show_bug.cgi?id=101858
-Signed-off-by: Simon McVittie <smcv@debian.org>
-Tested-by: Christopher Hewitt <hewitt@ieee.org>
-Reviewed-by: Philip Withnall <withnall@endlessm.com>
-
-Upstream commit 1252dc1d1f465b8ab6b36ff7252e395e66a040cf
-Signed-off-by: Marcus Hoffmann <m.hoffmann@cartelsol.com>
----
- bus/config-loader-expat.c | 14 ++++++++++++++
- configure.ac | 8 ++++++++
- 2 files changed, 22 insertions(+)
-
-diff --git a/bus/config-loader-expat.c b/bus/config-loader-expat.c
-index b571fda3181f..27cbe2d090a0 100644
---- a/bus/config-loader-expat.c
-+++ b/bus/config-loader-expat.c
-@@ -203,6 +203,20 @@ bus_config_load (const DBusString *file,
- goto failed;
- }
-
-+ /* We do not need protection against hash collisions (CVE-2012-0876)
-+ * because we are only parsing trusted XML; and if we let Expat block
-+ * waiting for the CSPRNG to be initialized, as it does by default to
-+ * defeat CVE-2012-0876, it can cause timeouts during early boot on
-+ * entropy-starved embedded devices.
-+ *
-+ * TODO: When Expat gets a more explicit API for this than
-+ * XML_SetHashSalt, check for that too, and use it preferentially.
-+ * https://github.com/libexpat/libexpat/issues/91 */
-+#if defined(HAVE_XML_SETHASHSALT)
-+ /* Any nonzero number will do. https://xkcd.com/221/ */
-+ XML_SetHashSalt (expat, 4);
-+#endif
-+
- if (!_dbus_string_get_dirname (file, &dirname))
- {
- dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
-diff --git a/configure.ac b/configure.ac
-index 1fabddd190a4..4e9c1de7bafc 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -938,6 +938,14 @@ XML_CFLAGS=
- AC_SUBST([XML_CFLAGS])
- AC_SUBST([XML_LIBS])
-
-+save_cflags="$CFLAGS"
-+save_libs="$LIBS"
-+CFLAGS="$CFLAGS $XML_CFLAGS"
-+LIBS="$LIBS $XML_LIBS"
-+AC_CHECK_FUNCS([XML_SetHashSalt])
-+CFLAGS="$save_cflags"
-+LIBS="$save_libs"
-+
- # Thread lib detection
- AC_ARG_VAR([THREAD_LIBS])
- save_libs="$LIBS"
diff --git a/patches/dbus-1.10.22/autogen.sh b/patches/dbus-1.10.22/autogen.sh
deleted file mode 120000
index 9f8a4cb7d..000000000
--- a/patches/dbus-1.10.22/autogen.sh
+++ /dev/null
@@ -1 +0,0 @@
-../autogen.sh
\ No newline at end of file
diff --git a/patches/dbus-1.10.22/series b/patches/dbus-1.10.22/series
deleted file mode 100644
index 5883e2956..000000000
--- a/patches/dbus-1.10.22/series
+++ /dev/null
@@ -1,5 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-#tag:upstream --start-number 10
-0010-config-loader-expat-Tell-Expat-not-to-defend-against.patch
-# 0ea4df42f11d73dba6bd33a9d510501c - git-ptx-patches magic
diff --git a/rules/dbus.make b/rules/dbus.make
index 8139009ff..d209547f6 100644
--- a/rules/dbus.make
+++ b/rules/dbus.make
@@ -18,8 +18,8 @@ PACKAGES-$(PTXCONF_DBUS) += dbus
#
# Paths and names
#
-DBUS_VERSION := 1.10.22
-DBUS_MD5 := baaa10b7cb49086ad91179a8decfadc5
+DBUS_VERSION := 1.10.24
+DBUS_MD5 := d548ae16f9a3268fe4650ccc86a3f06f
DBUS := dbus-$(DBUS_VERSION)
DBUS_SUFFIX := tar.gz
DBUS_URL := http://dbus.freedesktop.org/releases/dbus/$(DBUS).$(DBUS_SUFFIX)
--
2.14.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 8+ messages in thread
* [ptxdist] [PATCH 2/6] libnl3: version bump 3.2.29 -> 3.3.0
2017-10-18 14:11 [ptxdist] [PATCH 1/6] dbus: version bump 1.10.22 -> 1.10.24 Clemens Gruber
@ 2017-10-18 14:11 ` Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 3/6] libpng: version bump 1.6.32 -> 1.6.34 Clemens Gruber
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Clemens Gruber @ 2017-10-18 14:11 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
rules/libnl3.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/libnl3.make b/rules/libnl3.make
index 64c338a44..a9805552a 100644
--- a/rules/libnl3.make
+++ b/rules/libnl3.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBNL3) += libnl3
#
# Paths and names
#
-LIBNL3_VERSION := 3.2.29
-LIBNL3_MD5 := a8ba62a5c4f883f4e493a46d1f3733fe
+LIBNL3_VERSION := 3.4.0
+LIBNL3_MD5 := 8f71910c03db363b41e2ea62057a4311
LIBNL3 := libnl-$(LIBNL3_VERSION)
LIBNL3_RELEASE := libnl$(subst .,_,$(LIBNL3_VERSION))
LIBNL3_SUFFIX := tar.gz
--
2.14.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 8+ messages in thread
* [ptxdist] [PATCH 3/6] libpng: version bump 1.6.32 -> 1.6.34
2017-10-18 14:11 [ptxdist] [PATCH 1/6] dbus: version bump 1.10.22 -> 1.10.24 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 2/6] libnl3: version bump 3.2.29 -> 3.3.0 Clemens Gruber
@ 2017-10-18 14:11 ` Clemens Gruber
2017-10-25 14:30 ` Michael Olbrich
2017-10-18 14:11 ` [ptxdist] [PATCH 4/6] nginx: version bump 1.12.1 -> 1.12.2 Clemens Gruber
` (2 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Clemens Gruber @ 2017-10-18 14:11 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
Set check instead of api to automatically use NEON if runtime-checks
succeed, instead of having to enable it from library user code.
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
rules/libpng.make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rules/libpng.make b/rules/libpng.make
index 2bfe30260..e110f0275 100644
--- a/rules/libpng.make
+++ b/rules/libpng.make
@@ -18,8 +18,8 @@ PACKAGES-$(PTXCONF_LIBPNG) += libpng
#
# Paths and names
#
-LIBPNG_VERSION := 1.6.32
-LIBPNG_MD5 := e01be057a9369183c959b793a685ad15
+LIBPNG_VERSION := 1.6.34
+LIBPNG_MD5 := c05b6ca7190a5e387b78657dbe5536b2
LIBPNG := libpng-$(LIBPNG_VERSION)
LIBPNG_SUFFIX := tar.xz
LIBPNG_URL := $(call ptx/mirror, SF, libpng/$(LIBPNG).$(LIBPNG_SUFFIX))
@@ -37,7 +37,7 @@ LIBPNG_CONF_OPT := \
--enable-unversioned-links \
--enable-unversioned-libpng-pc \
--enable-unversioned-libpng-config \
- --enable-arm-neon=$(call ptx/ifdef, PTXCONF_ARCH_ARM_NEON, api, no) \
+ --enable-arm-neon=$(call ptx/ifdef, PTXCONF_ARCH_ARM_NEON, check, no) \
--disable-mips-msa \
--$(call ptx/endis, PTXCONF_ARCH_X86)-intel-sse \
--disable-powerpc-vsx \
--
2.14.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] [PATCH 3/6] libpng: version bump 1.6.32 -> 1.6.34
2017-10-18 14:11 ` [ptxdist] [PATCH 3/6] libpng: version bump 1.6.32 -> 1.6.34 Clemens Gruber
@ 2017-10-25 14:30 ` Michael Olbrich
2017-10-25 18:02 ` Roland Hieber
0 siblings, 1 reply; 8+ messages in thread
From: Michael Olbrich @ 2017-10-25 14:30 UTC (permalink / raw)
To: ptxdist
On Wed, Oct 18, 2017 at 04:11:43PM +0200, Clemens Gruber wrote:
> Set check instead of api to automatically use NEON if runtime-checks
> succeed, instead of having to enable it from library user code.
>
> Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
> ---
> rules/libpng.make | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/rules/libpng.make b/rules/libpng.make
> index 2bfe30260..e110f0275 100644
> --- a/rules/libpng.make
> +++ b/rules/libpng.make
> @@ -18,8 +18,8 @@ PACKAGES-$(PTXCONF_LIBPNG) += libpng
> #
> # Paths and names
> #
> -LIBPNG_VERSION := 1.6.32
Hmmm, I'm seeing 1.6.29 as the current version.
Michael
> -LIBPNG_MD5 := e01be057a9369183c959b793a685ad15
> +LIBPNG_VERSION := 1.6.34
> +LIBPNG_MD5 := c05b6ca7190a5e387b78657dbe5536b2
> LIBPNG := libpng-$(LIBPNG_VERSION)
> LIBPNG_SUFFIX := tar.xz
> LIBPNG_URL := $(call ptx/mirror, SF, libpng/$(LIBPNG).$(LIBPNG_SUFFIX))
> @@ -37,7 +37,7 @@ LIBPNG_CONF_OPT := \
> --enable-unversioned-links \
> --enable-unversioned-libpng-pc \
> --enable-unversioned-libpng-config \
> - --enable-arm-neon=$(call ptx/ifdef, PTXCONF_ARCH_ARM_NEON, api, no) \
> + --enable-arm-neon=$(call ptx/ifdef, PTXCONF_ARCH_ARM_NEON, check, no) \
> --disable-mips-msa \
> --$(call ptx/endis, PTXCONF_ARCH_X86)-intel-sse \
> --disable-powerpc-vsx \
> --
> 2.14.2
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 8+ messages in thread
* [ptxdist] [PATCH 4/6] nginx: version bump 1.12.1 -> 1.12.2
2017-10-18 14:11 [ptxdist] [PATCH 1/6] dbus: version bump 1.10.22 -> 1.10.24 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 2/6] libnl3: version bump 3.2.29 -> 3.3.0 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 3/6] libpng: version bump 1.6.32 -> 1.6.34 Clemens Gruber
@ 2017-10-18 14:11 ` Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 5/6] util-linux-ng: version bump 2.30.1 -> 2.30.2 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 6/6] util-linux-ng: add lsblk tool Clemens Gruber
4 siblings, 0 replies; 8+ messages in thread
From: Clemens Gruber @ 2017-10-18 14:11 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
.../0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch | 0
.../0002-auto-feature-add-mechanism-allowing-to-force-feature.patch | 0
.../0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch | 0
.../0004-auto-lib-libxslt-conf-use-pkg-config.patch | 0
.../0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch | 0
.../0006-auto-lib-openssl-conf-use-pkg-config.patch | 0
.../0007-auto-lib-libgd-conf-use-pkg-config.patch | 0
.../0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch | 0
.../0009-auto-lib-conf-fix-PCRE-condition-WRT-the-http-and-ht.patch | 0
.../0100-auto-endianness-add-mechanism-allowing-to-force-resu.patch | 0
.../0101-auto-unix-allow-overriding-the-IPv6-build-test.patch | 0
patches/{nginx-1.12.1 => nginx-1.12.2}/series | 0
rules/nginx.make | 4 ++--
13 files changed, 2 insertions(+), 2 deletions(-)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0002-auto-feature-add-mechanism-allowing-to-force-feature.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0004-auto-lib-libxslt-conf-use-pkg-config.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0006-auto-lib-openssl-conf-use-pkg-config.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0007-auto-lib-libgd-conf-use-pkg-config.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0009-auto-lib-conf-fix-PCRE-condition-WRT-the-http-and-ht.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0100-auto-endianness-add-mechanism-allowing-to-force-resu.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/0101-auto-unix-allow-overriding-the-IPv6-build-test.patch (100%)
rename patches/{nginx-1.12.1 => nginx-1.12.2}/series (100%)
diff --git a/patches/nginx-1.12.1/0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch b/patches/nginx-1.12.2/0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch
similarity index 100%
rename from patches/nginx-1.12.1/0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch
rename to patches/nginx-1.12.2/0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch
diff --git a/patches/nginx-1.12.1/0002-auto-feature-add-mechanism-allowing-to-force-feature.patch b/patches/nginx-1.12.2/0002-auto-feature-add-mechanism-allowing-to-force-feature.patch
similarity index 100%
rename from patches/nginx-1.12.1/0002-auto-feature-add-mechanism-allowing-to-force-feature.patch
rename to patches/nginx-1.12.2/0002-auto-feature-add-mechanism-allowing-to-force-feature.patch
diff --git a/patches/nginx-1.12.1/0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch b/patches/nginx-1.12.2/0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch
similarity index 100%
rename from patches/nginx-1.12.1/0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch
rename to patches/nginx-1.12.2/0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch
diff --git a/patches/nginx-1.12.1/0004-auto-lib-libxslt-conf-use-pkg-config.patch b/patches/nginx-1.12.2/0004-auto-lib-libxslt-conf-use-pkg-config.patch
similarity index 100%
rename from patches/nginx-1.12.1/0004-auto-lib-libxslt-conf-use-pkg-config.patch
rename to patches/nginx-1.12.2/0004-auto-lib-libxslt-conf-use-pkg-config.patch
diff --git a/patches/nginx-1.12.1/0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch b/patches/nginx-1.12.2/0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch
similarity index 100%
rename from patches/nginx-1.12.1/0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch
rename to patches/nginx-1.12.2/0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch
diff --git a/patches/nginx-1.12.1/0006-auto-lib-openssl-conf-use-pkg-config.patch b/patches/nginx-1.12.2/0006-auto-lib-openssl-conf-use-pkg-config.patch
similarity index 100%
rename from patches/nginx-1.12.1/0006-auto-lib-openssl-conf-use-pkg-config.patch
rename to patches/nginx-1.12.2/0006-auto-lib-openssl-conf-use-pkg-config.patch
diff --git a/patches/nginx-1.12.1/0007-auto-lib-libgd-conf-use-pkg-config.patch b/patches/nginx-1.12.2/0007-auto-lib-libgd-conf-use-pkg-config.patch
similarity index 100%
rename from patches/nginx-1.12.1/0007-auto-lib-libgd-conf-use-pkg-config.patch
rename to patches/nginx-1.12.2/0007-auto-lib-libgd-conf-use-pkg-config.patch
diff --git a/patches/nginx-1.12.1/0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch b/patches/nginx-1.12.2/0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch
similarity index 100%
rename from patches/nginx-1.12.1/0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch
rename to patches/nginx-1.12.2/0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch
diff --git a/patches/nginx-1.12.1/0009-auto-lib-conf-fix-PCRE-condition-WRT-the-http-and-ht.patch b/patches/nginx-1.12.2/0009-auto-lib-conf-fix-PCRE-condition-WRT-the-http-and-ht.patch
similarity index 100%
rename from patches/nginx-1.12.1/0009-auto-lib-conf-fix-PCRE-condition-WRT-the-http-and-ht.patch
rename to patches/nginx-1.12.2/0009-auto-lib-conf-fix-PCRE-condition-WRT-the-http-and-ht.patch
diff --git a/patches/nginx-1.12.1/0100-auto-endianness-add-mechanism-allowing-to-force-resu.patch b/patches/nginx-1.12.2/0100-auto-endianness-add-mechanism-allowing-to-force-resu.patch
similarity index 100%
rename from patches/nginx-1.12.1/0100-auto-endianness-add-mechanism-allowing-to-force-resu.patch
rename to patches/nginx-1.12.2/0100-auto-endianness-add-mechanism-allowing-to-force-resu.patch
diff --git a/patches/nginx-1.12.1/0101-auto-unix-allow-overriding-the-IPv6-build-test.patch b/patches/nginx-1.12.2/0101-auto-unix-allow-overriding-the-IPv6-build-test.patch
similarity index 100%
rename from patches/nginx-1.12.1/0101-auto-unix-allow-overriding-the-IPv6-build-test.patch
rename to patches/nginx-1.12.2/0101-auto-unix-allow-overriding-the-IPv6-build-test.patch
diff --git a/patches/nginx-1.12.1/series b/patches/nginx-1.12.2/series
similarity index 100%
rename from patches/nginx-1.12.1/series
rename to patches/nginx-1.12.2/series
diff --git a/rules/nginx.make b/rules/nginx.make
index 0f8ce65f2..c2f58da1a 100644
--- a/rules/nginx.make
+++ b/rules/nginx.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_NGINX) += nginx
#
# Paths and names
#
-NGINX_VERSION := 1.12.1
-NGINX_MD5 := a307e74aca95403e5ee00f153807ce58
+NGINX_VERSION := 1.12.2
+NGINX_MD5 := 4d2fc76211435f029271f1cf6d7eeae3
NGINX := nginx-$(NGINX_VERSION)
NGINX_SUFFIX := tar.gz
NGINX_URL := https://nginx.org/download/$(NGINX).$(NGINX_SUFFIX)
--
2.14.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 8+ messages in thread
* [ptxdist] [PATCH 5/6] util-linux-ng: version bump 2.30.1 -> 2.30.2
2017-10-18 14:11 [ptxdist] [PATCH 1/6] dbus: version bump 1.10.22 -> 1.10.24 Clemens Gruber
` (2 preceding siblings ...)
2017-10-18 14:11 ` [ptxdist] [PATCH 4/6] nginx: version bump 1.12.1 -> 1.12.2 Clemens Gruber
@ 2017-10-18 14:11 ` Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 6/6] util-linux-ng: add lsblk tool Clemens Gruber
4 siblings, 0 replies; 8+ messages in thread
From: Clemens Gruber @ 2017-10-18 14:11 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
.../0001-__progname-redefinition-fix.patch | 0
patches/{util-linux-2.30.1 => util-linux-2.30.2}/series | 0
rules/util-linux-ng.make | 4 ++--
3 files changed, 2 insertions(+), 2 deletions(-)
rename patches/{util-linux-2.30.1 => util-linux-2.30.2}/0001-__progname-redefinition-fix.patch (100%)
rename patches/{util-linux-2.30.1 => util-linux-2.30.2}/series (100%)
diff --git a/patches/util-linux-2.30.1/0001-__progname-redefinition-fix.patch b/patches/util-linux-2.30.2/0001-__progname-redefinition-fix.patch
similarity index 100%
rename from patches/util-linux-2.30.1/0001-__progname-redefinition-fix.patch
rename to patches/util-linux-2.30.2/0001-__progname-redefinition-fix.patch
diff --git a/patches/util-linux-2.30.1/series b/patches/util-linux-2.30.2/series
similarity index 100%
rename from patches/util-linux-2.30.1/series
rename to patches/util-linux-2.30.2/series
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index 1d528fa4c..878df38c0 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX_NG) += util-linux-ng
#
# Paths and names
#
-UTIL_LINUX_NG_VERSION := 2.30.1
-UTIL_LINUX_NG_MD5 := 5e5ec141e775efe36f640e62f3f8cd0d
+UTIL_LINUX_NG_VERSION := 2.30.2
+UTIL_LINUX_NG_MD5 := 23a5dce0030144a42676b92310026bac
UTIL_LINUX_NG := util-linux-$(UTIL_LINUX_NG_VERSION)
UTIL_LINUX_NG_SUFFIX := tar.xz
UTIL_LINUX_NG_BASENAME := v$(shell echo $(UTIL_LINUX_NG_VERSION) | sed -e 's/\([0-9]*\.[0-9]*\)[\.[0-9]*]\?/\1/g')
--
2.14.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 8+ messages in thread
* [ptxdist] [PATCH 6/6] util-linux-ng: add lsblk tool
2017-10-18 14:11 [ptxdist] [PATCH 1/6] dbus: version bump 1.10.22 -> 1.10.24 Clemens Gruber
` (3 preceding siblings ...)
2017-10-18 14:11 ` [ptxdist] [PATCH 5/6] util-linux-ng: version bump 2.30.1 -> 2.30.2 Clemens Gruber
@ 2017-10-18 14:11 ` Clemens Gruber
4 siblings, 0 replies; 8+ messages in thread
From: Clemens Gruber @ 2017-10-18 14:11 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
rules/util-linux-ng.in | 10 ++++++++++
rules/util-linux-ng.make | 3 +++
2 files changed, 13 insertions(+)
diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
index ad2ad5a2d..c6b2e8989 100644
--- a/rules/util-linux-ng.in
+++ b/rules/util-linux-ng.in
@@ -371,6 +371,16 @@ config UTIL_LINUX_NG_BLKID
comment "BusyBox' blkid is selected!"
depends on BUSYBOX_BLKID
+config UTIL_LINUX_NG_LSBLK
+ bool
+ select UTIL_LINUX_NG_LIBBLKID
+ select UTIL_LINUX_NG_LIBMOUNT
+ select UTIL_LINUX_NG_LIBSMARTCOLS
+ prompt "lsblk"
+ help
+ The lsblk command lists information about all available or the
+ specified block devices.
+
config UTIL_LINUX_NG_FINDFS
bool
select UTIL_LINUX_NG_LIBBLKID
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index 878df38c0..32c428731 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -285,6 +285,9 @@ endif
ifdef PTXCONF_UTIL_LINUX_NG_BLKID
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/sbin/blkid)
endif
+ifdef PTXCONF_UTIL_LINUX_NG_LSBLK
+ @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/lsblk)
+endif
ifdef PTXCONF_UTIL_LINUX_NG_UUIDD
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/sbin/uuidd)
endif
--
2.14.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-10-25 18:02 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-18 14:11 [ptxdist] [PATCH 1/6] dbus: version bump 1.10.22 -> 1.10.24 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 2/6] libnl3: version bump 3.2.29 -> 3.3.0 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 3/6] libpng: version bump 1.6.32 -> 1.6.34 Clemens Gruber
2017-10-25 14:30 ` Michael Olbrich
2017-10-25 18:02 ` Roland Hieber
2017-10-18 14:11 ` [ptxdist] [PATCH 4/6] nginx: version bump 1.12.1 -> 1.12.2 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 5/6] util-linux-ng: version bump 2.30.1 -> 2.30.2 Clemens Gruber
2017-10-18 14:11 ` [ptxdist] [PATCH 6/6] util-linux-ng: add lsblk tool Clemens Gruber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox