From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH v2 00/10] recipe updates, testing fixes
Date: Thu, 13 Feb 2020 00:21:43 -0800 [thread overview]
Message-ID: <cover.1581580428.git.raj.khem@gmail.com> (raw)
- Update gdb to 9.1 and musl to latest
- Fix packages busybox, ltp to build with musl exposed 64bit time_t
problems
- rest of all fixes are found testing core-image-sato-sdk on
qemuarm/qemux86_64
- Add a check for gold being used on rv32/rv64
- crosssdk is changed to not use target distro features
The following changes since commit 34535f3e0ca6f6e37e6457fc800dfbfff64d9298:
bitbake: doc: minor tweaks to ch 1 of BB user manual (2020-02-08 17:41:17 +0000)
are available in the Git repository at:
git://git.yoctoproject.org/poky-contrib kraj/pu
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kraj/pu
Khem Raj (10):
qemuarm: Disable highmem when QB_MACHINE is virt
oeqa: Use --disable-maintainer-mode configure option
libsolv: Enable rpm packageconfig by default only if rpm O_P_M is
enabled
dnf,libdnf: Ignore if PACKAGE_CLASSES does not have rpm
musl: Update to latest tip
gdb: Upgrade to 9.1 release
busybox: Backport patches to support removal of __NR_clock_gettime
ltp: Fix tescases with 64bit time_t using 32bit arches
crosssdk: Set natisdk specific distro features
binutils: Bail out if gold is used on 32/64 bit RISC-V
meta/classes/crosssdk.bbclass | 6 +
meta/conf/distro/include/tcmode-default.inc | 2 +-
meta/conf/machine/qemuarm.conf | 2 +-
meta/lib/oeqa/runtime/cases/buildcpio.py | 2 +-
meta/lib/oeqa/sdk/cases/buildcpio.py | 2 +-
...rappers-around-clock_gettime-closes-.patch | 113 +++++++++++++++
...-Use-64-prefix-syscall-if-we-have-to.patch | 53 +++++++
...-Use-64-prefix-syscall-if-we-have-to.patch | 43 ++++++
meta/recipes-core/busybox/busybox_1.31.1.bb | 3 +
meta/recipes-core/musl/musl_git.bb | 2 +-
meta/recipes-devtools/binutils/binutils.inc | 7 +
meta/recipes-devtools/dnf/dnf_4.2.2.bb | 2 +
meta/recipes-devtools/gdb/gdb-8.3.1.inc | 22 ---
meta/recipes-devtools/gdb/gdb-9.1.inc | 21 +++
...ian_8.3.1.bb => gdb-cross-canadian_9.1.bb} | 0
.../{gdb-cross_8.3.1.bb => gdb-cross_9.1.bb} | 0
...ake-man-install-relative-to-DESTDIR.patch} | 9 +-
...x-nat-Define-_ABIO32-if-not-defined.patch} | 9 +-
...-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch} | 7 +-
...ort-for-Renesas-SH-sh4-architecture.patch} | 41 +++---
...eadline.a-when-using-disable-static.patch} | 13 +-
...s.h.patch => 0006-use-asm-sgidefs.h.patch} | 9 +-
...Use-exorted-definitions-of-SIGRTMIN.patch} | 11 +-
...atch => 0008-Change-order-of-CFLAGS.patch} | 13 +-
...9-resolve-restrict-keyword-conflict.patch} | 17 +--
...> 0010-Fix-invalid-sigprocmask-call.patch} | 23 ++-
...h => 0011-gdbserver-ctrl-c-handling.patch} | 31 ++--
.../gdb/gdb/CVE-2019-1010180.patch | 132 ------------------
.../gdb/{gdb_8.3.1.bb => gdb_9.1.bb} | 0
meta/recipes-devtools/libdnf/libdnf_0.28.1.bb | 1 +
.../libsolv/libsolv_0.7.10.bb | 2 +-
...or-time64-unsafe-syscalls-before-usi.patch | 81 +++++++++++
meta/recipes-extended/ltp/ltp_20190930.bb | 1 +
33 files changed, 422 insertions(+), 258 deletions(-)
create mode 100644 meta/recipes-core/busybox/busybox/0001-Remove-syscall-wrappers-around-clock_gettime-closes-.patch
create mode 100644 meta/recipes-core/busybox/busybox/0001-date-Use-64-prefix-syscall-if-we-have-to.patch
create mode 100644 meta/recipes-core/busybox/busybox/0001-time-Use-64-prefix-syscall-if-we-have-to.patch
delete mode 100644 meta/recipes-devtools/gdb/gdb-8.3.1.inc
create mode 100644 meta/recipes-devtools/gdb/gdb-9.1.inc
rename meta/recipes-devtools/gdb/{gdb-cross-canadian_8.3.1.bb => gdb-cross-canadian_9.1.bb} (100%)
rename meta/recipes-devtools/gdb/{gdb-cross_8.3.1.bb => gdb-cross_9.1.bb} (100%)
rename meta/recipes-devtools/gdb/gdb/{0002-make-man-install-relative-to-DESTDIR.patch => 0001-make-man-install-relative-to-DESTDIR.patch} (77%)
rename meta/recipes-devtools/gdb/gdb/{0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch => 0002-mips-linux-nat-Define-_ABIO32-if-not-defined.patch} (82%)
rename meta/recipes-devtools/gdb/gdb/{0004-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch => 0003-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch} (89%)
rename meta/recipes-devtools/gdb/gdb/{0005-Add-support-for-Renesas-SH-sh4-architecture.patch => 0004-Add-support-for-Renesas-SH-sh4-architecture.patch} (96%)
rename meta/recipes-devtools/gdb/gdb/{0006-Dont-disable-libreadline.a-when-using-disable-static.patch => 0005-Dont-disable-libreadline.a-when-using-disable-static.patch} (83%)
rename meta/recipes-devtools/gdb/gdb/{0007-use-asm-sgidefs.h.patch => 0006-use-asm-sgidefs.h.patch} (84%)
rename meta/recipes-devtools/gdb/gdb/{0008-Use-exorted-definitions-of-SIGRTMIN.patch => 0007-Use-exorted-definitions-of-SIGRTMIN.patch} (81%)
rename meta/recipes-devtools/gdb/gdb/{0009-Change-order-of-CFLAGS.patch => 0008-Change-order-of-CFLAGS.patch} (75%)
rename meta/recipes-devtools/gdb/gdb/{0010-resolve-restrict-keyword-conflict.patch => 0009-resolve-restrict-keyword-conflict.patch} (80%)
rename meta/recipes-devtools/gdb/gdb/{0011-Fix-invalid-sigprocmask-call.patch => 0010-Fix-invalid-sigprocmask-call.patch} (65%)
rename meta/recipes-devtools/gdb/gdb/{0001-gdbserver-ctrl-c-handling.patch => 0011-gdbserver-ctrl-c-handling.patch} (45%)
delete mode 100644 meta/recipes-devtools/gdb/gdb/CVE-2019-1010180.patch
rename meta/recipes-devtools/gdb/{gdb_8.3.1.bb => gdb_9.1.bb} (100%)
create mode 100644 meta/recipes-extended/ltp/ltp/0001-syscalls-Check-for-time64-unsafe-syscalls-before-usi.patch
--
2.25.0
next reply other threads:[~2020-02-13 8:21 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-13 8:21 Khem Raj [this message]
2020-02-13 8:21 ` [PATCH 01/10] qemuarm: Disable highmem when QB_MACHINE is virt Khem Raj
2020-02-13 8:21 ` [PATCH 02/10] oeqa: Use --disable-maintainer-mode configure option Khem Raj
2020-02-13 8:21 ` [PATCH 03/10] libsolv: Enable rpm packageconfig by default only if rpm O_P_M is enabled Khem Raj
2020-02-13 8:21 ` [PATCH 04/10] dnf, libdnf: Ignore if PACKAGE_CLASSES does not have rpm Khem Raj
2020-02-13 8:21 ` [PATCH 05/10] musl: Update to latest tip Khem Raj
2020-02-13 8:21 ` [PATCH 06/10] gdb: Upgrade to 9.1 release Khem Raj
2020-02-13 8:21 ` [PATCH 07/10] busybox: Backport patches to support removal of __NR_clock_gettime Khem Raj
2020-02-13 14:57 ` Richard Purdie
2020-02-13 8:21 ` [PATCH 08/10] ltp: Fix tescases with 64bit time_t using 32bit arches Khem Raj
2020-02-13 8:21 ` [PATCH 09/10] crosssdk: Set natisdk specific distro features Khem Raj
2020-02-13 8:21 ` [PATCH 10/10] binutils: Bail out if gold is used on 32/64 bit RISC-V 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.1581580428.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 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.