All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libunwind: 1.2 -> 1.2.1
@ 2018-01-26  9:00 Huang Qiyu
  2018-01-26  9:00 ` [PATCH] linux-libc-headers: 4.12 -> 4.14.13 Huang Qiyu
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Huang Qiyu @ 2018-01-26  9:00 UTC (permalink / raw)
  To: openembedded-core

1.Upgrade libunwind from 1.2 to 1.2.1.
2.Delete fix-mips.patch, since it is integrated upstream.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 .../libunwind/libunwind/fix-mips.patch             | 134 ---------------------
 .../{libunwind_1.2.bb => libunwind_1.2.1.bb}       |   5 +-
 2 files changed, 2 insertions(+), 137 deletions(-)
 delete mode 100644 meta/recipes-support/libunwind/libunwind/fix-mips.patch
 rename meta/recipes-support/libunwind/{libunwind_1.2.bb => libunwind_1.2.1.bb} (84%)

diff --git a/meta/recipes-support/libunwind/libunwind/fix-mips.patch b/meta/recipes-support/libunwind/libunwind/fix-mips.patch
deleted file mode 100644
index 0022237..0000000
--- a/meta/recipes-support/libunwind/libunwind/fix-mips.patch
+++ /dev/null
@@ -1,134 +0,0 @@
-Upstream-Status: Backport
-Signed-off-by: Ross Burton <ross.burton@intel.com>
-
-From 5f354cb7b9c84dae006f0ebd8ad7a78d7e2aad0c Mon Sep 17 00:00:00 2001
-From: Dave Watson <davejwatson@fb.com>
-Date: Wed, 25 Jan 2017 16:18:02 -0800
-Subject: [PATCH] mips/tilegx: Add missing unwind_i.h header file
-
-reported-by: John Knight <John.Knight@belkin.com>
----
- src/Makefile.am | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 5d874755..7de4c425 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -280,7 +280,7 @@ libunwind_hppa_la_SOURCES_hppa = $(libunwind_la_SOURCES_hppa_common)	\
- 	hppa/Gresume.c hppa/Gstep.c
- 
- # The list of files that go info libunwind and libunwind-mips:
--noinst_HEADERS += mips/init.h mips/offsets.h
-+noinst_HEADERS += mips/init.h mips/offsets.h mips/unwind_i.h
- libunwind_la_SOURCES_mips_common = $(libunwind_la_SOURCES_common)	    \
- 	mips/is_fpreg.c mips/regname.c
- 
-@@ -299,7 +299,7 @@ libunwind_mips_la_SOURCES_mips = $(libunwind_la_SOURCES_mips_common)	    \
- 	mips/Gis_signal_frame.c mips/Gregs.c mips/Gresume.c mips/Gstep.c
- 
- # The list of files that go info libunwind and libunwind-tilegx:
--noinst_HEADERS += tilegx/init.h tilegx/offsets.h
-+noinst_HEADERS += tilegx/init.h tilegx/offsets.h tilegx/unwind_i.h
- libunwind_la_SOURCES_tilegx_common = $(libunwind_la_SOURCES_common)	    \
- 	tilegx/is_fpreg.c tilegx/regname.c
- 
-diff --git a/src/mips/unwind_i.h b/src/mips/unwind_i.h
-new file mode 100644
-index 0000000..3382dcf
---- /dev/null
-+++ b/src/mips/unwind_i.h
-@@ -0,0 +1,43 @@
-+/* libunwind - a platform-independent unwind library
-+   Copyright (C) 2008 CodeSourcery
-+
-+This file is part of libunwind.
-+
-+Permission is hereby granted, free of charge, to any person obtaining
-+a copy of this software and associated documentation files (the
-+"Software"), to deal in the Software without restriction, including
-+without limitation the rights to use, copy, modify, merge, publish,
-+distribute, sublicense, and/or sell copies of the Software, and to
-+permit persons to whom the Software is furnished to do so, subject to
-+the following conditions:
-+
-+The above copyright notice and this permission notice shall be
-+included in all copies or substantial portions of the Software.
-+
-+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
-+
-+#ifndef unwind_i_h
-+#define unwind_i_h
-+
-+#include <stdint.h>
-+
-+#include <libunwind-mips.h>
-+
-+#include "libunwind_i.h"
-+
-+#define mips_lock                       UNW_OBJ(lock)
-+#define mips_local_resume               UNW_OBJ(local_resume)
-+#define mips_local_addr_space_init      UNW_OBJ(local_addr_space_init)
-+
-+extern int mips_local_resume (unw_addr_space_t as, unw_cursor_t *cursor,
-+                             void *arg);
-+
-+extern void mips_local_addr_space_init (void);
-+
-+#endif /* unwind_i_h */
-diff --git a/src/tilegx/unwind_i.h b/src/tilegx/unwind_i.h
-new file mode 100644
-index 0000000..aac7be3
---- /dev/null
-+++ b/src/tilegx/unwind_i.h
-@@ -0,0 +1,44 @@
-+/* libunwind - a platform-independent unwind library
-+   Copyright (C) 2008 CodeSourcery
-+
-+This file is part of libunwind.
-+
-+Permission is hereby granted, free of charge, to any person obtaining
-+a copy of this software and associated documentation files (the
-+"Software"), to deal in the Software without restriction, including
-+without limitation the rights to use, copy, modify, merge, publish,
-+distribute, sublicense, and/or sell copies of the Software, and to
-+permit persons to whom the Software is furnished to do so, subject to
-+the following conditions:
-+
-+The above copyright notice and this permission notice shall be
-+included in all copies or substantial portions of the Software.
-+
-+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
-+
-+#ifndef unwind_i_h
-+#define unwind_i_h
-+
-+#include <memory.h>
-+#include <stdint.h>
-+
-+#include <libunwind-tilegx.h>
-+
-+#include "libunwind_i.h"
-+
-+#define tilegx_local_resume            UNW_OBJ(local_resume)
-+#define tilegx_local_addr_space_init   UNW_OBJ(local_addr_space_init)
-+
-+extern int tilegx_local_resume (unw_addr_space_t as,
-+                                unw_cursor_t *cursor,
-+                                void *arg);
-+
-+extern void tilegx_local_addr_space_init (void);
-+
-+#endif /* unwind_i_h */
diff --git a/meta/recipes-support/libunwind/libunwind_1.2.bb b/meta/recipes-support/libunwind/libunwind_1.2.1.bb
similarity index 84%
rename from meta/recipes-support/libunwind/libunwind_1.2.bb
rename to meta/recipes-support/libunwind/libunwind_1.2.1.bb
index c6312f2..37a7624 100644
--- a/meta/recipes-support/libunwind/libunwind_1.2.bb
+++ b/meta/recipes-support/libunwind/libunwind_1.2.1.bb
@@ -1,7 +1,7 @@
 require libunwind.inc
 
-SRC_URI[md5sum] = "eefcb5d7f78fdc8f1ed172a26ea4202f"
-SRC_URI[sha256sum] = "1de38ffbdc88bd694d10081865871cd2bfbb02ad8ef9e1606aee18d65532b992"
+SRC_URI[md5sum] = "06ba9e60d92fd6f55cd9dadb084df19e"
+SRC_URI[sha256sum] = "3f3ecb90e28cbe53fba7a4a27ccce7aad188d3210bb1964a923a731a27a75acb"
 
 SRC_URI = "http://download.savannah.nongnu.org/releases/libunwind/libunwind-${PV}.tar.gz \
            file://Add-AO_REQUIRE_CAS-to-fix-build-on-ARM-v6.patch \
@@ -11,7 +11,6 @@ SRC_URI = "http://download.savannah.nongnu.org/releases/libunwind/libunwind-${PV
            file://0001-add-knobs-to-disable-enable-tests.patch \
            file://0001-ppc32-Consider-ucontext-mismatches-between-glibc-and.patch \
            file://libunwind-1.1-x32.patch \
-           file://fix-mips.patch \
            "
 
 SRC_URI_append_libc-musl = " file://musl-header-conflict.patch"
-- 
2.7.4





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

* [PATCH] linux-libc-headers: 4.12 -> 4.14.13
  2018-01-26  9:00 [PATCH] libunwind: 1.2 -> 1.2.1 Huang Qiyu
@ 2018-01-26  9:00 ` Huang Qiyu
  2018-01-30 13:39   ` Bruce Ashfield
  2018-01-26  9:00 ` [PATCH] lsbinitscripts: 9.72 -> 9.79 Huang Qiyu
  2018-01-26  9:00 ` [PATCH] man-pages: 4.11 -> 4.14 Huang Qiyu
  2 siblings, 1 reply; 8+ messages in thread
From: Huang Qiyu @ 2018-01-26  9:00 UTC (permalink / raw)
  To: openembedded-core

Upgrade linux-libc-headers from 4.12 to 4.14.13.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 .../{linux-libc-headers_4.12.bb => linux-libc-headers_4.14.13.bb}     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers_4.12.bb => linux-libc-headers_4.14.13.bb} (71%)

diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.12.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.14.13.bb
similarity index 71%
rename from meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.12.bb
rename to meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.14.13.bb
index f0d0abf..455ad4b 100644
--- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.12.bb
+++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.14.13.bb
@@ -7,5 +7,5 @@ SRC_URI_append_libc-musl = "\
     file://0001-libc-compat.h-musl-_does_-define-IFF_LOWER_UP-DORMAN.patch \
    "
 
-SRC_URI[md5sum] = "fc454157e2d024d401a60905d6481c6b"
-SRC_URI[sha256sum] = "a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab"
+SRC_URI[md5sum] = "4e8bb562f8fd33d5ef1feb0435ed2b02"
+SRC_URI[sha256sum] = "4ab46d1b5a0f8ef83b80760f89ae4f5c88431b19b3cf79ffa0c66d6b33e45772"
-- 
2.7.4





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

* [PATCH] lsbinitscripts: 9.72 -> 9.79
  2018-01-26  9:00 [PATCH] libunwind: 1.2 -> 1.2.1 Huang Qiyu
  2018-01-26  9:00 ` [PATCH] linux-libc-headers: 4.12 -> 4.14.13 Huang Qiyu
@ 2018-01-26  9:00 ` Huang Qiyu
  2018-01-26  9:00 ` [PATCH] man-pages: 4.11 -> 4.14 Huang Qiyu
  2 siblings, 0 replies; 8+ messages in thread
From: Huang Qiyu @ 2018-01-26  9:00 UTC (permalink / raw)
  To: openembedded-core

1.Upgrade lsbinitscripts from 9.72 to 9.79.
2.Modify functions.patch, since the data has been changed.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 meta/recipes-extended/lsb/lsbinitscripts/functions.patch            | 2 +-
 .../lsb/{lsbinitscripts_9.72.bb => lsbinitscripts_9.79.bb}          | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-extended/lsb/{lsbinitscripts_9.72.bb => lsbinitscripts_9.79.bb} (73%)

diff --git a/meta/recipes-extended/lsb/lsbinitscripts/functions.patch b/meta/recipes-extended/lsb/lsbinitscripts/functions.patch
index 9c58d90..41231ea 100644
--- a/meta/recipes-extended/lsb/lsbinitscripts/functions.patch
+++ b/meta/recipes-extended/lsb/lsbinitscripts/functions.patch
@@ -22,7 +22,7 @@ index 0f627f1..a6aa092 100644
  [ -z "${COLUMNS:-}" ] && COLUMNS=80
  
  if [ -z "${CONSOLETYPE:-}" ]; then
--    if [ -c "/dev/stderr" -a -r "/dev/stderr" ]; then
+-    if [ -c "/dev/stderr" ] && [ -r "/dev/stderr" ]; then
 +    if [ -c "/dev/stderr" -a -r "/dev/stderr" -a -e /sbin/consoletype ]; then
          CONSOLETYPE="$(/sbin/consoletype < /dev/stderr 2>/dev/null)"
      else
diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.72.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.79.bb
similarity index 73%
rename from meta/recipes-extended/lsb/lsbinitscripts_9.72.bb
rename to meta/recipes-extended/lsb/lsbinitscripts_9.79.bb
index 2d74a6f..4cb1a4c 100644
--- a/meta/recipes-extended/lsb/lsbinitscripts_9.72.bb
+++ b/meta/recipes-extended/lsb/lsbinitscripts_9.79.bb
@@ -11,13 +11,13 @@ RCONFLICTS_${PN} = "initscripts-functions"
 LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6"
 
 S="${WORKDIR}/initscripts-${PV}"
-SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-${PV}.tar.gz/sha512/b6ed38f9576e9227c2ecf047e2d60e1e872f40d51d13861b0c91dddb282f10f7e6b79706a4d1435d7a57a14a0b73a1b71541cfe44c00e8e03ef96b08de19ec32/initscripts-${PV}.tar.gz \
+SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-${PV}.tar.gz/sha512/359c51dcb8aa0a745a3dd3bb67386f41d33eabc781ff2de9b211aab2706dd5e84e885e9e237b88a33fc6cb3e5dd1dbccf7c4ab32f288de76ca16d1118144abd4/initscripts-${PV}.tar.gz \
            file://functions.patch;striplevel=2 \
            file://0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch \
           " 
 
-SRC_URI[md5sum] = "d6c798f40dceb117e12126d94cb25a9a"
-SRC_URI[sha256sum] = "1793677bdd1f7ee4cb00878ce43346196374f848a4c8e4559e086040fc7487db"
+SRC_URI[md5sum] = "9605286e0d512623a05ba892ac8d9819"
+SRC_URI[sha256sum] = "ab45fcde7f50a9a16890ac0714772bc9591117950addf68755589a85ccffb1c1"
 
 # Since we are only taking the patched version of functions, no need to
 # configure or compile anything so do not execute these
-- 
2.7.4





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

* [PATCH] man-pages: 4.11 -> 4.14
  2018-01-26  9:00 [PATCH] libunwind: 1.2 -> 1.2.1 Huang Qiyu
  2018-01-26  9:00 ` [PATCH] linux-libc-headers: 4.12 -> 4.14.13 Huang Qiyu
  2018-01-26  9:00 ` [PATCH] lsbinitscripts: 9.72 -> 9.79 Huang Qiyu
@ 2018-01-26  9:00 ` Huang Qiyu
  2018-01-26 10:42   ` Burton, Ross
                     ` (2 more replies)
  2 siblings, 3 replies; 8+ messages in thread
From: Huang Qiyu @ 2018-01-26  9:00 UTC (permalink / raw)
  To: openembedded-core

1.Upgrade man-pages from 4.11 to 4.14.
2.Update the checksum of LIC_FILES_CHKSUM, since README has been changed.

Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
---
 .../man-pages/{man-pages_4.11.bb => man-pages_4.14.bb}              | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-extended/man-pages/{man-pages_4.11.bb => man-pages_4.14.bb} (79%)

diff --git a/meta/recipes-extended/man-pages/man-pages_4.11.bb b/meta/recipes-extended/man-pages/man-pages_4.14.bb
similarity index 79%
rename from meta/recipes-extended/man-pages/man-pages_4.11.bb
rename to meta/recipes-extended/man-pages/man-pages_4.14.bb
index a3077a9..f8bd090 100644
--- a/meta/recipes-extended/man-pages/man-pages_4.11.bb
+++ b/meta/recipes-extended/man-pages/man-pages_4.14.bb
@@ -4,11 +4,11 @@ SECTION = "console/utils"
 HOMEPAGE = "http://www.kernel.org/pub/linux/docs/man-pages"
 LICENSE = "GPLv2+"
 
-LIC_FILES_CHKSUM = "file://README;md5=8f2a3d43057d458e5066714980567a60"
+LIC_FILES_CHKSUM = "file://README;md5=794f701617cc03fe50c53257660d8ec4"
 SRC_URI = "${KERNELORG_MIRROR}/linux/docs/${BPN}/Archive/${BP}.tar.gz"
 
-SRC_URI[md5sum] = "408300ed09d1ad5938070158b21da1d1"
-SRC_URI[sha256sum] = "e6db91a24e68c7c765b7b8e60f1591ed1049bc2dc3143db779eae4838b89d195"
+SRC_URI[md5sum] = "82bd2d05c4d0dba5e7a90d39c9555197"
+SRC_URI[sha256sum] = "aeebc6b09a11e7f7bbc98f3984fe8b8b2bde9d2f5f9dcbd4348a9e0d93704238"
 
 RDEPENDS_${PN} = "man"
 
-- 
2.7.4





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

* Re: [PATCH] man-pages: 4.11 -> 4.14
  2018-01-26  9:00 ` [PATCH] man-pages: 4.11 -> 4.14 Huang Qiyu
@ 2018-01-26 10:42   ` Burton, Ross
  2018-01-26 10:46   ` Alexander Kanavin
  2018-01-26 10:47   ` Alexander Kanavin
  2 siblings, 0 replies; 8+ messages in thread
From: Burton, Ross @ 2018-01-26 10:42 UTC (permalink / raw)
  To: Huang Qiyu; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 340 bytes --]

On 26 January 2018 at 09:00, Huang Qiyu <huangqy.fnst@cn.fujitsu.com> wrote:

> 1.Upgrade man-pages from 4.11 to 4.14.
> 2.Update the checksum of LIC_FILES_CHKSUM, since README has been changed.
>

By using beginline/endline you can specify where in the README the license
text is, which would make this a lot less fragile.

Ross

[-- Attachment #2: Type: text/html, Size: 678 bytes --]

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

* Re: [PATCH] man-pages: 4.11 -> 4.14
  2018-01-26  9:00 ` [PATCH] man-pages: 4.11 -> 4.14 Huang Qiyu
  2018-01-26 10:42   ` Burton, Ross
@ 2018-01-26 10:46   ` Alexander Kanavin
  2018-01-26 10:47   ` Alexander Kanavin
  2 siblings, 0 replies; 8+ messages in thread
From: Alexander Kanavin @ 2018-01-26 10:46 UTC (permalink / raw)
  To: Huang Qiyu, openembedded-core

On 01/26/2018 11:00 AM, Huang Qiyu wrote:
> 1.Upgrade man-pages from 4.11 to 4.14.
> 2.Update the checksum of LIC_FILES_CHKSUM, since README has been changed.
> -LIC_FILES_CHKSUM = "file://README;md5=8f2a3d43057d458e5066714980567a60"
> +LIC_FILES_CHKSUM = "file://README;md5=794f701617cc03fe50c53257660d8ec4"

You need to clarify: the parts of README that are unrelated to the 
license have changed.


Alex


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

* Re: [PATCH] man-pages: 4.11 -> 4.14
  2018-01-26  9:00 ` [PATCH] man-pages: 4.11 -> 4.14 Huang Qiyu
  2018-01-26 10:42   ` Burton, Ross
  2018-01-26 10:46   ` Alexander Kanavin
@ 2018-01-26 10:47   ` Alexander Kanavin
  2 siblings, 0 replies; 8+ messages in thread
From: Alexander Kanavin @ 2018-01-26 10:47 UTC (permalink / raw)
  To: openembedded-core, Leonardo Sandoval

On 01/26/2018 11:00 AM, Huang Qiyu wrote:
> 1.Upgrade man-pages from 4.11 to 4.14.
> 2.Update the checksum of LIC_FILES_CHKSUM, since README has been changed.
> -LIC_FILES_CHKSUM = "file://README;md5=8f2a3d43057d458e5066714980567a60"
> +LIC_FILES_CHKSUM = "file://README;md5=794f701617cc03fe50c53257660d8ec4"

Leo, can you look into why patchtest hasn't reacted to this patch, 
asking to use the License-Update tag? (it should do that by now)


Thanks,
Alex


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

* Re: [PATCH] linux-libc-headers: 4.12 -> 4.14.13
  2018-01-26  9:00 ` [PATCH] linux-libc-headers: 4.12 -> 4.14.13 Huang Qiyu
@ 2018-01-30 13:39   ` Bruce Ashfield
  0 siblings, 0 replies; 8+ messages in thread
From: Bruce Ashfield @ 2018-01-30 13:39 UTC (permalink / raw)
  To: Huang Qiyu; +Cc: Patches and discussions about the oe-core layer

Please cc'd me on any libc-headers upgrades.

I bring this up to new versions as we do new linux-yocto reference kernels
and this has messed up my queue with respect to 4.15 which arrives shortly.

Also, there's zero commit log as to *why* these are being updated.

Bruce

On Fri, Jan 26, 2018 at 4:00 AM, Huang Qiyu <huangqy.fnst@cn.fujitsu.com> wrote:
> Upgrade linux-libc-headers from 4.12 to 4.14.13.
>
> Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
> ---
>  .../{linux-libc-headers_4.12.bb => linux-libc-headers_4.14.13.bb}     | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers_4.12.bb => linux-libc-headers_4.14.13.bb} (71%)
>
> diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.12.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.14.13.bb
> similarity index 71%
> rename from meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.12.bb
> rename to meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.14.13.bb
> index f0d0abf..455ad4b 100644
> --- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.12.bb
> +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.14.13.bb
> @@ -7,5 +7,5 @@ SRC_URI_append_libc-musl = "\
>      file://0001-libc-compat.h-musl-_does_-define-IFF_LOWER_UP-DORMAN.patch \
>     "
>
> -SRC_URI[md5sum] = "fc454157e2d024d401a60905d6481c6b"
> -SRC_URI[sha256sum] = "a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab"
> +SRC_URI[md5sum] = "4e8bb562f8fd33d5ef1feb0435ed2b02"
> +SRC_URI[sha256sum] = "4ab46d1b5a0f8ef83b80760f89ae4f5c88431b19b3cf79ffa0c66d6b33e45772"
> --
> 2.7.4
>
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


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

end of thread, other threads:[~2018-01-30 13:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-26  9:00 [PATCH] libunwind: 1.2 -> 1.2.1 Huang Qiyu
2018-01-26  9:00 ` [PATCH] linux-libc-headers: 4.12 -> 4.14.13 Huang Qiyu
2018-01-30 13:39   ` Bruce Ashfield
2018-01-26  9:00 ` [PATCH] lsbinitscripts: 9.72 -> 9.79 Huang Qiyu
2018-01-26  9:00 ` [PATCH] man-pages: 4.11 -> 4.14 Huang Qiyu
2018-01-26 10:42   ` Burton, Ross
2018-01-26 10:46   ` Alexander Kanavin
2018-01-26 10:47   ` Alexander Kanavin

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.