From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH V2 0/8] Update to binutils 2.30, glibc 2.27 initiated fixes, musl update
Date: Mon, 29 Jan 2018 20:31:39 -0800 [thread overview]
Message-ID: <cover.1517286478.git.raj.khem@gmail.com> (raw)
This pull contain
- binutils upgrade to 2.30
- musl update
- Recipe fixes which will be needed for glibc 2.27
- Drop redundant gcc patch
Changes since v1:
- Add proper sign-offs and Upstream-Status as reported by patchtest
- Backport another fix for pulseaudio memfd issue done upstream
The following changes since commit 1c896b34d2d9fdf941941bd29257a4714795da5a:
testimage: enable gi test suite (2018-01-29 08:49:52 +0000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib kraj/pu
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=kraj/pu
Daniel Díaz (1):
perl: Undefine d_libm_lib_version.
Huang Qiyu (1):
e2fsprogs: 1.43.7 -> 1.43.8
Khem Raj (6):
gcc-7.3: Drop upstreamed musl cpuinfo patch
make: Backport fixes to not assume glibc internal glob implementation
systemd: Fix build with glibc 2.27
pulseaudio: Fix build with glibc 2.27
musl: Update to latest master
binutils: Upgrade to 2.30 release
meta/conf/distro/include/tcmode-default.inc | 2 +-
meta/recipes-core/musl/musl_git.bb | 2 +-
....c-Change-the-default-device-timeout-to-2.patch | 7 +-
...update-header-file-to-detect-memfd_create.patch | 28 +++++++
...c-Check-if-memfd_create-is-already-define.patch | 27 +++++++
.../systemd/0003-fileio-include-sys-mman.h.patch | 26 +++++++
meta/recipes-core/systemd/systemd_234.bb | 3 +
.../{binutils-2.29.1.inc => binutils-2.30.inc} | 2 +-
...n_2.29.1.bb => binutils-cross-canadian_2.30.bb} | 0
...tils-cross_2.29.1.bb => binutils-cross_2.30.bb} | 0
...rosssdk_2.29.1.bb => binutils-crosssdk_2.30.bb} | 0
...nutils-crosssdk-Generate-relocatable-SDKs.patch | 14 ++--
...oss-Do-not-generate-linker-script-directo.patch | 6 +-
...ure-widen-the-regexp-for-SH-architectures.patch | 14 ++--
.../0004-Point-scripts-location-to-libdir.patch | 8 +-
...te-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch | 10 +--
.../binutils/binutils/0006-Use-libtool-2.4.patch | 66 +++++++----------
...7-Add-the-armv5e-architecture-to-binutils.patch | 8 +-
...he-distro-compiler-point-to-the-wrong-ins.patch | 6 +-
...es-of-system-directories-when-cross-linki.patch | 24 +++---
...-rpath-in-libtool-when-sysroot-is-enabled.patch | 4 +-
...Change-default-emulation-for-mips64-linux.patch | 14 ++--
.../0012-Add-support-for-Netlogic-XLP.patch | 70 +++++++++---------
...ncorrect-assembling-for-ppc-wait-mnemonic.patch | 10 +--
.../binutils/0014-Detect-64-bit-MIPS-targets.patch | 6 +-
.../0015-sync-with-OE-libtool-changes.patch | 4 +-
.../{binutils_2.29.1.bb => binutils_2.30.bb} | 0
...ix-build-failure-in-swapfs.c-on-big-endia.patch | 40 ++++++++++
...s-fix-missing-check-for-permission-denied.patch | 10 ++-
.../{e2fsprogs_1.43.7.bb => e2fsprogs_1.43.8.bb} | 5 +-
meta/recipes-devtools/gcc/gcc-7.3.inc | 1 -
...e-alias-for-__cpu_indicator_init-instead-.patch | 85 ----------------------
meta/recipes-devtools/make/make.inc | 5 +-
...1-glob-Do-not-assume-glibc-glob-internals.patch | 70 ++++++++++++++++++
...2-glob-Do-not-assume-glibc-glob-internals.patch | 38 ++++++++++
meta/recipes-devtools/perl/perl/config.sh | 2 +-
...ers-only-define-memfd_create-if-not-alrea.patch | 66 +++++++++++++++++
.../pulseaudio/pulseaudio_11.1.bb | 3 +-
38 files changed, 446 insertions(+), 240 deletions(-)
create mode 100644 meta/recipes-core/systemd/systemd/0001-meson-update-header-file-to-detect-memfd_create.patch
create mode 100644 meta/recipes-core/systemd/systemd/0002-configure.ac-Check-if-memfd_create-is-already-define.patch
create mode 100644 meta/recipes-core/systemd/systemd/0003-fileio-include-sys-mman.h.patch
rename meta/recipes-devtools/binutils/{binutils-2.29.1.inc => binutils-2.30.inc} (97%)
rename meta/recipes-devtools/binutils/{binutils-cross-canadian_2.29.1.bb => binutils-cross-canadian_2.30.bb} (100%)
rename meta/recipes-devtools/binutils/{binutils-cross_2.29.1.bb => binutils-cross_2.30.bb} (100%)
rename meta/recipes-devtools/binutils/{binutils-crosssdk_2.29.1.bb => binutils-crosssdk_2.30.bb} (100%)
rename meta/recipes-devtools/binutils/{binutils_2.29.1.bb => binutils_2.30.bb} (100%)
create mode 100644 meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-libext2fs-fix-build-failure-in-swapfs.c-on-big-endia.patch
rename meta/recipes-devtools/e2fsprogs/{e2fsprogs_1.43.7.bb => e2fsprogs_1.43.8.bb} (96%)
delete mode 100644 meta/recipes-devtools/gcc/gcc-7.3/0046-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
create mode 100644 meta/recipes-devtools/make/make/0001-glob-Do-not-assume-glibc-glob-internals.patch
create mode 100644 meta/recipes-devtools/make/make/0002-glob-Do-not-assume-glibc-glob-internals.patch
create mode 100644 meta/recipes-multimedia/pulseaudio/pulseaudio/0001-memfd-wrappers-only-define-memfd_create-if-not-alrea.patch
--
2.16.1
next reply other threads:[~2018-01-30 4:31 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-30 4:31 Khem Raj [this message]
2018-01-30 4:31 ` [PATCH 1/8] gcc-7.3: Drop upstreamed musl cpuinfo patch Khem Raj
2018-01-30 4:31 ` [PATCH V2 2/8] make: Backport fixes to not assume glibc internal glob implementation Khem Raj
2018-01-30 4:31 ` [PATCH 3/8] perl: Undefine d_libm_lib_version Khem Raj
2018-01-30 4:31 ` [PATCH 4/8] e2fsprogs: 1.43.7 -> 1.43.8 Khem Raj
2018-01-30 4:31 ` [PATCH 5/8] systemd: Fix build with glibc 2.27 Khem Raj
2018-01-30 4:31 ` [PATCH V2 6/8] pulseaudio: " Khem Raj
2018-01-30 4:31 ` [PATCH 7/8] musl: Update to latest master Khem Raj
2018-01-30 4:31 ` [PATCH 8/8] binutils: Upgrade to 2.30 release Khem Raj
2018-02-03 21:04 ` Burton, Ross
2018-01-30 5:04 ` ✗ patchtest: failure for Update to binutils 2.30, glibc 2.27 initiated fixes, musl update (rev2) Patchwork
2018-01-30 7:09 ` Khem Raj
2018-01-30 12:58 ` [PATCH V2 0/8] Update to binutils 2.30, glibc 2.27 initiated fixes, musl update Burton, Ross
2018-01-30 17:50 ` Khem Raj
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1517286478.git.raj.khem@gmail.com \
--to=raj.khem@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox