* [OE-core][dunfell 0/2] Patch review
@ 2020-10-05 22:57 Steve Sakoman
2020-10-05 22:57 ` [OE-core][dunfell 1/2] oeqa/selftest/cases/devtool.py: avoid .pyc race Steve Sakoman
2020-10-05 22:57 ` [OE-core][dunfell 2/2] perl: fix ptest test count Steve Sakoman
0 siblings, 2 replies; 5+ messages in thread
From: Steve Sakoman @ 2020-10-05 22:57 UTC (permalink / raw)
To: openembedded-core
Please review this next set of patches for dunfell and have comments back
by end of day Thursday.
Passed a-full test on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1449
The following changes since commit b9296bdeaacc1dce97aac9c9bf0d70555bb36646:
wic: Add 512 Byte alignment to --offset (2020-09-30 05:54:58 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Chee Yang Lee (1):
perl: fix ptest test count
Tim Orling (1):
oeqa/selftest/cases/devtool.py: avoid .pyc race
meta/lib/oeqa/selftest/cases/devtool.py | 3 ++-
meta/recipes-devtools/perl/files/CVE-2020-12723.patch | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [OE-core][dunfell 1/2] oeqa/selftest/cases/devtool.py: avoid .pyc race
2020-10-05 22:57 [OE-core][dunfell 0/2] Patch review Steve Sakoman
@ 2020-10-05 22:57 ` Steve Sakoman
2020-10-05 22:57 ` [OE-core][dunfell 2/2] perl: fix ptest test count Steve Sakoman
1 sibling, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2020-10-05 22:57 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <timothy.t.orling@linux.intel.com>
In certain conditions, most likely under heavy load on the
AutoBuilder, the prebuilt .pyc files are attempting to be
executed before they have been completely copied. Avoid
this by not copying the .pyc files (nor the __pycache__
directory). The impact of python3-native recreating the .pyc
files should hopefully be negligible.
YOCTO#13421
YOCTO#13803
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/lib/oeqa/selftest/cases/devtool.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index 5003f08c75..d8bf4aea08 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -56,7 +56,8 @@ def setUpModule():
if pth.startswith(canonical_layerpath):
if relpth.endswith('/'):
destdir = os.path.join(corecopydir, relpth)
- shutil.copytree(pth, destdir)
+ # avoid race condition by not copying .pyc files YPBZ#13421,13803
+ shutil.copytree(pth, destdir, ignore=ignore_patterns('*.pyc', '__pycache__'))
else:
destdir = os.path.join(corecopydir, os.path.dirname(relpth))
bb.utils.mkdirhier(destdir)
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [OE-core][dunfell 2/2] perl: fix ptest test count
2020-10-05 22:57 [OE-core][dunfell 0/2] Patch review Steve Sakoman
2020-10-05 22:57 ` [OE-core][dunfell 1/2] oeqa/selftest/cases/devtool.py: avoid .pyc race Steve Sakoman
@ 2020-10-05 22:57 ` Steve Sakoman
1 sibling, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2020-10-05 22:57 UTC (permalink / raw)
To: openembedded-core
From: Chee Yang Lee <chee.yang.lee@intel.com>
patche added in commit c2710903859a5545aa9dd56251f61667ee8d80bd
failed ptest perl.t/re/pat. The patch updates incorrect test cases
count causes the ptest to fail.
864 test cases before apply the patch while the patch added only 4
test cases so it should be 868 instead of 873.
ptest-runner log :-
PASS: t/re/overload
# Looks like you planned 873 tests but ran 868.
FAIL: t/re/pat
PASS: t/re/pat_advanced
[YOCTO #14071]
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com<mailto:chee.yang.lee@intel.com>>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-devtools/perl/files/CVE-2020-12723.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-devtools/perl/files/CVE-2020-12723.patch b/meta/recipes-devtools/perl/files/CVE-2020-12723.patch
index ad195cffab..d25f4d4a74 100644
--- a/meta/recipes-devtools/perl/files/CVE-2020-12723.patch
+++ b/meta/recipes-devtools/perl/files/CVE-2020-12723.patch
@@ -265,7 +265,7 @@ index 6a868f4..2869b58 100644
skip_all_without_unicode_tables();
-plan tests => 864; # Update this when adding/deleting tests.
-+plan tests => 873; # Update this when adding/deleting tests.
++plan tests => 868; # Update this when adding/deleting tests.
run_tests() unless caller;
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [OE-core][dunfell 0/2] Patch review
@ 2020-10-29 22:09 Steve Sakoman
0 siblings, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2020-10-29 22:09 UTC (permalink / raw)
To: openembedded-core
Please review this set of patches for dunfell and have comments back by end
of day Monday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1521
The following changes since commit 8a367cbbf092339a8c82c680a2565567b594b6c6:
glib-2.0: fix parsing of slim encoded tzdata (2020-10-26 15:06:51 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Alexander Kanavin (1):
nasm: update 2.14.02 -> 2.15.03 for CVE fixes
Steve Sakoman (1):
qemu: fix CVE-2019-20175
.../nasm/nasm/0001-stdlib-Add-strlcat.patch | 28 ++--
.../0002-Add-debug-prefix-map-option.patch | 129 +++++++-----------
.../nasm/nasm/CVE-2018-19755.patch | 116 ----------------
.../nasm/nasm/CVE-2019-14248.patch | 43 ------
.../nasm/{nasm_2.14.02.bb => nasm_2.15.03.bb} | 10 +-
meta/recipes-devtools/qemu/qemu.inc | 1 +
.../qemu/qemu/CVE-2019-20175.patch | 94 +++++++++++++
7 files changed, 161 insertions(+), 260 deletions(-)
delete mode 100644 meta/recipes-devtools/nasm/nasm/CVE-2018-19755.patch
delete mode 100644 meta/recipes-devtools/nasm/nasm/CVE-2019-14248.patch
rename meta/recipes-devtools/nasm/{nasm_2.14.02.bb => nasm_2.15.03.bb} (56%)
create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2019-20175.patch
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [OE-core][dunfell 0/2] Patch review
@ 2021-03-08 16:47 Steve Sakoman
0 siblings, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2021-03-08 16:47 UTC (permalink / raw)
To: openembedded-core
Please review this next set of patches for dunfell and have comments back by
end of day Wednesday.
Passed a-full and meta-oe on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1948
https://autobuilder.yoctoproject.org/typhoon/#/builders/88/builds/1014
The following changes since commit cf22f3831488b346195e049ace92e153d18660db:
meta/recipes-core: Add HOMEPAGE / DESCRIPTION (2021-03-05 04:40:01 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Michael Halstead (2):
yocto-uninative.inc: version 2.11 updates glibc to 2.33
yocto-uninative.inc: version 3.0 incorporate seccomp filter workaround
meta/conf/distro/include/yocto-uninative.inc | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-03-08 16:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-05 22:57 [OE-core][dunfell 0/2] Patch review Steve Sakoman
2020-10-05 22:57 ` [OE-core][dunfell 1/2] oeqa/selftest/cases/devtool.py: avoid .pyc race Steve Sakoman
2020-10-05 22:57 ` [OE-core][dunfell 2/2] perl: fix ptest test count Steve Sakoman
-- strict thread matches above, loose matches on Subject: below --
2020-10-29 22:09 [OE-core][dunfell 0/2] Patch review Steve Sakoman
2021-03-08 16:47 Steve Sakoman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox