All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] util-linux: bump version to 2.27
@ 2015-09-11 13:26 Vicente Olivert Riera
  2015-09-11 15:06 ` Gustavo Zacarias
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2015-09-11 13:26 UTC (permalink / raw)
  To: buildroot

Removed 0002-program-invocation-short-name.patch since the changes it
does are now upstream:

  https://kernel.googlesource.com/pub/scm/utils/util-linux/util-linux/+/37edac9a0ca83f311279d2e49bacd6ac80310dc8

This release includes a security fix:

CVE-2015-5224 - chfn, chsh file name collision due to incorrect mkstemp
use if compiled without libuser.
[thanks to Qualys Security Advisory team; qualys.com]

Release notes here:

  https://www.kernel.org/pub/linux/utils/util-linux/v2.27/v2.27-ReleaseNotes

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 .../0002-program-invocation-short-name.patch       |   11 -----------
 package/util-linux/util-linux.hash                 |    4 ++--
 package/util-linux/util-linux.mk                   |    4 ++--
 3 files changed, 4 insertions(+), 15 deletions(-)
 delete mode 100644 package/util-linux/0002-program-invocation-short-name.patch

diff --git a/package/util-linux/0002-program-invocation-short-name.patch b/package/util-linux/0002-program-invocation-short-name.patch
deleted file mode 100644
index 95fea3f..0000000
--- a/package/util-linux/0002-program-invocation-short-name.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure.ac	2013-09-05 15:31:21.590981268 -0500
-+++ b/configure.ac	2013-09-05 15:31:29.160981049 -0500
-@@ -387,7 +387,7 @@
- 
- AC_MSG_CHECKING([whether program_invocation_short_name is defined])
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
--	#include <argp.h>
-+	#include <errno.h>
- ]], [[
- 	program_invocation_short_name = "test";
- ]])], [
diff --git a/package/util-linux/util-linux.hash b/package/util-linux/util-linux.hash
index e04d78f..b97bda2 100644
--- a/package/util-linux/util-linux.hash
+++ b/package/util-linux/util-linux.hash
@@ -1,2 +1,2 @@
-# From https://www.kernel.org/pub/linux/utils/util-linux/v2.26/sha256sums.asc
-sha256	0e29bda142528a48a0a953c39ff63093651a4809042e1790fbd6aa8663fd9666	util-linux-2.26.2.tar.xz
+# From https://www.kernel.org/pub/linux/utils/util-linux/v2.27/sha256sums.asc
+sha256 fcbf04e3ef8377fc8369af7f9afee341c5eef9b02dd5a7ce71532d0957e86dc7  util-linux-2.27.tar.xz
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk
index a44a45e..3669d5c 100644
--- a/package/util-linux/util-linux.mk
+++ b/package/util-linux/util-linux.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-UTIL_LINUX_VERSION = $(UTIL_LINUX_VERSION_MAJOR).2
-UTIL_LINUX_VERSION_MAJOR = 2.26
+UTIL_LINUX_VERSION = $(UTIL_LINUX_VERSION_MAJOR)
+UTIL_LINUX_VERSION_MAJOR = 2.27
 UTIL_LINUX_SOURCE = util-linux-$(UTIL_LINUX_VERSION).tar.xz
 UTIL_LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/util-linux/v$(UTIL_LINUX_VERSION_MAJOR)
 
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] util-linux: bump version to 2.27
  2015-09-11 13:26 [Buildroot] [PATCH] util-linux: bump version to 2.27 Vicente Olivert Riera
@ 2015-09-11 15:06 ` Gustavo Zacarias
  2015-09-11 17:45 ` Thomas Petazzoni
  2015-09-11 17:46 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-09-11 15:06 UTC (permalink / raw)
  To: buildroot

On 11/09/15 10:26, Vicente Olivert Riera wrote:

> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

(powerpc minimal uclibc 0.9.33 nothreads/wchar/headers 3.2.x)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] util-linux: bump version to 2.27
  2015-09-11 13:26 [Buildroot] [PATCH] util-linux: bump version to 2.27 Vicente Olivert Riera
  2015-09-11 15:06 ` Gustavo Zacarias
@ 2015-09-11 17:45 ` Thomas Petazzoni
  2015-09-11 17:46 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-09-11 17:45 UTC (permalink / raw)
  To: buildroot

Dear Vicente Olivert Riera,

On Fri, 11 Sep 2015 14:26:27 +0100, Vicente Olivert Riera wrote:
> Removed 0002-program-invocation-short-name.patch since the changes it
> does are now upstream:
> 
>   https://kernel.googlesource.com/pub/scm/utils/util-linux/util-linux/+/37edac9a0ca83f311279d2e49bacd6ac80310dc8
> 
> This release includes a security fix:
> 
> CVE-2015-5224 - chfn, chsh file name collision due to incorrect mkstemp
> use if compiled without libuser.
> [thanks to Qualys Security Advisory team; qualys.com]
> 
> Release notes here:
> 
>   https://www.kernel.org/pub/linux/utils/util-linux/v2.27/v2.27-ReleaseNotes
> 
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
>  .../0002-program-invocation-short-name.patch       |   11 -----------
>  package/util-linux/util-linux.hash                 |    4 ++--
>  package/util-linux/util-linux.mk                   |    4 ++--
>  3 files changed, 4 insertions(+), 15 deletions(-)
>  delete mode 100644 package/util-linux/0002-program-invocation-short-name.patch

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] util-linux: bump version to 2.27
  2015-09-11 13:26 [Buildroot] [PATCH] util-linux: bump version to 2.27 Vicente Olivert Riera
  2015-09-11 15:06 ` Gustavo Zacarias
  2015-09-11 17:45 ` Thomas Petazzoni
@ 2015-09-11 17:46 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-09-11 17:46 UTC (permalink / raw)
  To: buildroot

Vicente,

On Fri, 11 Sep 2015 14:26:27 +0100, Vicente Olivert Riera wrote:
> Removed 0002-program-invocation-short-name.patch since the changes it
> does are now upstream:
> 
>   https://kernel.googlesource.com/pub/scm/utils/util-linux/util-linux/+/37edac9a0ca83f311279d2e49bacd6ac80310dc8
> 
> This release includes a security fix:
> 
> CVE-2015-5224 - chfn, chsh file name collision due to incorrect mkstemp
> use if compiled without libuser.
> [thanks to Qualys Security Advisory team; qualys.com]
> 
> Release notes here:
> 
>   https://www.kernel.org/pub/linux/utils/util-linux/v2.27/v2.27-ReleaseNotes
> 
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Speaking of util-linux, it would be good if we could make progress on
the following patches:

  http://patchwork.ozlabs.org/patch/494867/
  http://patchwork.ozlabs.org/patch/494866/
  http://patchwork.ozlabs.org/patch/494868/

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-09-11 17:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-11 13:26 [Buildroot] [PATCH] util-linux: bump version to 2.27 Vicente Olivert Riera
2015-09-11 15:06 ` Gustavo Zacarias
2015-09-11 17:45 ` Thomas Petazzoni
2015-09-11 17:46 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.