mirror of
https://git.yoctoproject.org/poky
synced 2026-03-04 06:19:40 +01:00
1. Rebase patches:
- fix-run-coproc-run-heredoc-run-execscript-run-test-f.patch
- test-output.patch
2. Drop backported patches:
- CVE-2016-9401.patch
- fix-run-intl.patch
3. Add ${PN}-loadable for loadable builtins which is new features in Bash 4.4
4. The 4.4 fixed CVE-2017-5932 and CVE-2016-0634
- https://security-tracker.debian.org/tracker/CVE-2017-5932
- https://security-tracker.debian.org/tracker/CVE-2016-0634
5. The 4.4 installed include header files, fix bash-dev confilicts
with lib32-bash-dev
.....
$ bitbake lib32-core-image-sato-sdk
...
|Error: Transaction check error: file /usr/include/bash/config.h
conflicts between attempted installs
|of lib32-bash-dev-4.4-r0.x86 and bash-dev-4.4-r0.core2_64
......
(From OE-Core rev: 4097694b13cd5f0d68987551c3f9af80c87dc6ae)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
43 lines
961 B
Diff
43 lines
961 B
Diff
From 28eb06047ebd2deaa8c7cd2bf6655ef6a469dc14 Mon Sep 17 00:00:00 2001
|
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
|
Date: Tue, 15 Aug 2017 10:01:56 +0800
|
|
Subject: [PATCH 1/2] Add FAIL/PASS output to test output.
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Björn Stenberg <bjst@enea.com>
|
|
Upstream-Status: Pending
|
|
|
|
Rebase to 4.4
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
tests/run-all | 11 ++++++++++-
|
|
1 file changed, 10 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/run-all b/tests/run-all
|
|
index 2882fe0..e21d026 100644
|
|
--- a/tests/run-all
|
|
+++ b/tests/run-all
|
|
@@ -33,7 +33,16 @@ do
|
|
case $x in
|
|
$0|run-minimal|run-gprof) ;;
|
|
*.orig|*~) ;;
|
|
- *) echo $x ; sh $x ; rm -f ${BASH_TSTOUT} ;;
|
|
+ *) echo $x
|
|
+ output=`sh $x`
|
|
+ if [ -n "$output" ]; then
|
|
+ echo "$output"
|
|
+ echo "FAIL: $x"
|
|
+ else
|
|
+ echo "PASS: $x"
|
|
+ fi
|
|
+ rm -f ${BASH_TSTOUT}
|
|
+ ;;
|
|
esac
|
|
done
|
|
|
|
--
|
|
1.8.3.1
|
|
|