mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
It rarely observes the problem while running shell script aborting test repeatedly, at the problem, the test shell script never returns to shell Steps to reproduce: 1. Run test script and ctrl-c repeatedly 2. Observe whether returns to shell after ctrl-c Fixed issue: https://lists.gnu.org/archive/html/bug-bash/2023-10/msg00131.html (From OE-Core rev: a351d62ca7deff548542c849a6fa696280b5533a) Signed-off-by: Wenlin Kang <wenlin.kang@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
28 lines
1.1 KiB
Bash
28 lines
1.1 KiB
Bash
require bash.inc
|
|
|
|
# GPL-2.0-or-later (< 4.0), GPL-3.0-or-later (>= 4.0)
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \
|
|
file://execute_cmd.patch \
|
|
file://mkbuiltins_have_stringize.patch \
|
|
file://build-tests.patch \
|
|
file://test-output.patch \
|
|
file://run-ptest \
|
|
file://run-bash-ptests \
|
|
file://fix-run-builtins.patch \
|
|
file://use_aclocal.patch \
|
|
file://makerace.patch \
|
|
file://makerace2.patch \
|
|
file://CVE-2022-3715.patch \
|
|
file://0001-changes-to-SIGINT-handler-while-waiting-for-a-child-.patch \
|
|
"
|
|
|
|
SRC_URI[tarball.sha256sum] = "5bac17218d3911834520dad13cd1f85ab944e1c09ae1aba55906be1f8192f558"
|
|
|
|
DEBUG_OPTIMIZATION:append:armv4 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
|
|
DEBUG_OPTIMIZATION:append:armv5 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|