[OE-core] [PATCH 1/1] parselogs.py: whilelist one more amba error message

2019-01-16 Thread Chen Qi
When using linux-yocto-dev, we will have one more amba error message for qemuarm, so ignore it too. Signed-off-by: Chen Qi --- meta/lib/oeqa/runtime/cases/parselogs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases

[OE-core] [PATCH 1/1] target-sdk-provides-dummy: add more perl modules to avoid populate_sdk failure

2019-01-09 Thread Chen Qi
such failure. Signed-off-by: Chen Qi --- meta/recipes-core/meta/target-sdk-provides-dummy.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-core/meta/target-sdk-provides-dummy.bb b/meta/recipes-core/meta/target-sdk-provides-dummy.bb index edf07c4..26716ac 100644 --- a/meta

[OE-core] [PATCH 0/1] target-sdk-provides-dummy: add more perl modules to avoid populate_sdk failure

2019-01-09 Thread Chen Qi
/cgit.cgi/poky-contrib/log/?h=ChenQi/target-dummy Chen Qi (1): target-sdk-provides-dummy: add more perl modules to avoid populate_sdk failure meta/recipes-core/meta/target-sdk-provides-dummy.bb | 3 +++ 1 file changed, 3 insertions(+) -- 1.9.1

[OE-core] [PATCH 0/1] netbase/base-files: move /etc/hosts from netbase to base-files

2019-01-08 Thread Chen Qi
-contrib/log/?h=ChenQi/etc-hosts Chen Qi (1): netbase/base-files: move /etc/hosts from netbase to base-files meta/recipes-core/{netbase/netbase => base-files/base-files}/hosts | 0 meta/recipes-core/base-files/base-files_3.0.14.bb | 5 - meta/recipes-core/netbase/netbase_

[OE-core] [PATCH 1/1] netbase/base-files: move /etc/hosts from netbase to base-files

2019-01-08 Thread Chen Qi
Move /etc/hosts to base-files, and also add entry to it according to hostname setting. This fixes the problem of commands like `hostname -f' failing due to lack of such entry. Signed-off-by: Chen Qi --- meta/recipes-core/{netbase/netbase => base-files/base-files}/hosts | 0 meta/recipes-c

[OE-core] [PATCH 1/1] buildoptions.py: use different STAMPS_DIR and SSTATE_DIR

2019-01-03 Thread Chen Qi
Use a different STAMPS_DIR and SSTATE_DIR in test_yocto_source_mirror. Otherwise, when executing `oe-selftest -a', we will get a lot of failures due to do_unpack failure. Signed-off-by: Chen Qi --- meta/lib/oeqa/selftest/cases/buildoptions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git

[OE-core] [PATCH 0/1] buildoptions.py: use different STAMPS_DIR and SSTATE_DIR

2019-01-03 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/mirror_test Chen Qi (1): buildoptions.py: use different STAMPS_DIR and SSTATE_DIR meta/lib/oeqa/selftest/cases/buildoptions.py | 2 ++ 1 file changed, 2 insertions(+) -- 1.9.1 -- ___ Openembedded-core

[OE-core] [PATCH 0/1] package.bbclass: fix python unclosed file ResourceWarning

2018-12-17 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/package_warn Chen Qi (1): package.bbclass: fix python unclosed file ResourceWarning meta/classes/package.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 1.9.1 -- ___ Openembedded-core

[OE-core] [PATCH 1/1] package.bbclass: fix python unclosed file ResourceWarning

2018-12-17 Thread Chen Qi
Fix the following warning. ResourceWarning: unclosed file <_io.TextIOWrapper name='/.../systemd/1_239-r0/debugsources.list' mode='a' encoding='UTF-8'> Signed-off-by: Chen Qi --- meta/classes/package.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/c

[OE-core] [PATCH 0/1] oeqa/selftest/context: ensure log directory exists

2018-12-06 Thread Chen Qi
/poky-contrib/log/?h=ChenQi/selftest_log Chen Qi (1): oeqa/selftest/context: ensure log directory exists meta/lib/oeqa/selftest/context.py | 1 + 1 file changed, 1 insertion(+) -- 1.9.1 -- ___ Openembedded-core mailing list Openembedded-core

[OE-core] [PATCH 1/1] oeqa/selftest/context: ensure log directory exists

2018-12-06 Thread Chen Qi
Ensure log directory exists to avoid the following error. FileNotFoundError: [Errno 2] No such file or directory: '/.../build-selftest/tmp/log/oe-selftest-results-20181207043431.log' Signed-off-by: Chen Qi --- meta/lib/oeqa/selftest/context.py | 1 + 1 file changed, 1 insertion(+) diff

[OE-core] [PATCH V2 0/1] oeqa: drop support of listing machines in QEMU_USE_KVM

2018-12-05 Thread Chen Qi
ChenQi/qemu_use_kvm http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/qemu_use_kvm Chen Qi (1): oeqa: drop support of listing machines in QEMU_USE_KVM meta/classes/testimage.bbclass | 12 +++- meta/lib/oeqa/targetcontrol.py | 12 +++- 2 files changed, 14 insertions

[OE-core] [PATCH 1/1] oeqa: drop support of listing machines in QEMU_USE_KVM

2018-12-05 Thread Chen Qi
to determine whether to enable kvm. Signed-off-by: Chen Qi --- meta/classes/testimage.bbclass | 12 +++- meta/lib/oeqa/targetcontrol.py | 12 +++- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index

[OE-core] [PATCH 0/1] oeqa: drop support of listing machines in QEMU_USE_KVM

2018-12-05 Thread Chen Qi
Hi Yeoh Ee Peng, meta/lib/oeqa/manual/bsp-qemu.json might need to be modified after this patch. But I don't know how it is used. Could you please help take care of it? Best Regards, Chen Qi The following changes since commit 016e3dda2d6acc9b457079d11b5346a5352a431d: btrfs-tools: update

[OE-core] [PATCH 1/1] oeqa: drop support of listing machines in QEMU_USE_KVM

2018-12-05 Thread Chen Qi
'intel-corei7-64 intel-core2-32 qemux86 qemux86-64' QEMU_USE_KVM needs to be set to a boolean value. It no longer supports accepting a list of machines. e.g. QEMU_USE_KVM_qemux86-64 = '1' ERROR: core-image-minimal-1.0-r0 do_testimage: Function failed: do_testimage Signed-off-by: Chen

[OE-core] [PATCH 4/4] at: upgrade to 3.1.23

2018-12-05 Thread Chen Qi
The following patches are rebased. fix_parallel_build_error.patch pam.conf.patch Signed-off-by: Chen Qi --- .../at/at/fix_parallel_build_error.patch | 15 +--- meta/recipes-extended/at/at/pam.conf.patch | 40 +- .../at/{at_3.1.20.bb => at_3.1.23

[OE-core] [PATCH 2/4] cups: upgrade to 2.2.9

2018-12-05 Thread Chen Qi
The following patch is rebased. 0001-don-t-try-to-run-generated-binaries.patch Signed-off-by: Chen Qi --- .../0001-don-t-try-to-run-generated-binaries.patch | 29 +++--- .../cups/{cups_2.2.8.bb => cups_2.2.9.bb} | 4 +-- 2 files changed, 17 insertions(+),

[OE-core] [PATCH 3/4] sysstat: upgrade to 12.1.1

2018-12-05 Thread Chen Qi
Signed-off-by: Chen Qi --- .../recipes-extended/sysstat/{sysstat_11.7.4.bb => sysstat_12.1.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/sysstat/{sysstat_11.7.4.bb => sysstat_12.1.1.bb} (53%) diff --git a/meta/recipes-extended/s

[OE-core] [PATCH 1/4] sudo: upgrade to 1.8.26

2018-12-05 Thread Chen Qi
License-Update: include more files to check, but license remains the same. Signed-off-by: Chen Qi --- meta/recipes-extended/sudo/sudo.inc | 7 +-- meta/recipes-extended/sudo/{sudo_1.8.23.bb => sudo_1.8.26.bb} | 4 ++-- 2 files changed, 7 insertions(+), 4 deleti

[OE-core] [PATCH 0/4] Upgrade sudo, cups, sysstat, at

2018-12-05 Thread Chen Qi
The following changes since commit 016e3dda2d6acc9b457079d11b5346a5352a431d: btrfs-tools: update to 4.19 (2018-12-03 12:20:01 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/PU http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/PU Chen

[OE-core] [PATCH 0/1] testimage: fix boolean checking for QEMU_USE_KVM

2018-12-03 Thread Chen Qi
-contrib/log/?h=ChenQi/qemu_use_kvm Chen Qi (1): testimage: fix boolean checking for QEMU_USE_KVM meta/classes/testimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 -- ___ Openembedded-core mailing list Openembedded-core

[OE-core] [PATCH 1/1] testimage: fix boolean checking for QEMU_USE_KVM

2018-12-03 Thread Chen Qi
is not values like 'true', 'false', etc. Fix the boolean checking to avoid the exception. Signed-off-by: Chen Qi --- meta/classes/testimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 82cbb06

[OE-core] [PATCH 1/1] netbase: add entry to /etc/hosts according to /etc/hostname

2018-11-29 Thread Chen Qi
We default hostname to ${MACHINE}, but it's not in /etc/hosts, resulting in commands like `hostname -f' failing due to lack of entry. So add entry to /etc/hosts according to /etc/hostname. We do this via pkg_postinst because hostname is set in base-files recipe. Signed-off-by: Chen Qi --- meta

[OE-core] [PATCH 0/1] netbase: add entry to /etc/hosts according to /etc/hostname

2018-11-29 Thread Chen Qi
in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/netbase-hosts http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/netbase-hosts Chen Qi (1): netbase: add entry to /etc/hosts according to /etc/hostname meta/recipes-core/netbase/netbase_5.4.bb | 11

[OE-core] [PATCH 0/1] netbase: add entry to /etc/hosts according to /etc/hostname

2018-11-25 Thread Chen Qi
log/?h=ChenQi/netbase-hosts Chen Qi (1): netbase: add entry to /etc/hosts according to /etc/hostname meta/recipes-core/netbase/netbase_5.4.bb | 9 + 1 file changed, 9 insertions(+) -- 1.9.1 -- ___ Openembedded-core mailing list Openembed

[OE-core] [PATCH 1/1] netbase: add entry to /etc/hosts according to /etc/hostname

2018-11-25 Thread Chen Qi
We default hostname to ${MACHINE}, but it's not in /etc/hosts, resulting in commands like `hostname -f' failing due to lack of entry. So add entry to /etc/hosts according to /etc/hostname. We do this via pkg_postinst because hostname is set in base-files recipe. Signed-off-by: Chen Qi --- meta

[OE-core] [PATCH 8/9] busybox: ship a symlink farm for ptest

2018-11-22 Thread Chen Qi
current_dir to current_path, as the former is a little misleading. `readlink -f $0' gets a path to the current script instead of the current directory. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox.inc | 14 ++ meta/recipes-core/busybox/files/run-ptest | 5 +++-- 2

[OE-core] [PATCH 6/9] busybox: fix du-l-works test case

2018-11-22 Thread Chen Qi
64 + 64 + 16 = 144K 144 + sizeof_a_directory >= 145 So fix to use 145 instead of 144. Signed-off-by: Chen Qi --- ...-du-l-works-fix-to-use-145-instead-of-144.patch | 32 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 33 insertions(+) cre

[OE-core] [PATCH 9/9] base-files: default hostname to localhost

2018-11-22 Thread Chen Qi
Previously we default hostname to be ${MACHINE}, but there's no entry in /etc/hosts, and `hostname -f' command fails. So change it to 'localhost'. Signed-off-by: Chen Qi --- meta/recipes-core/base-files/base-files_3.0.14.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH 7/9] busybox: check CONFIG_DESKTOP before using 'od -t' in test case

2018-11-22 Thread Chen Qi
The '-t' option support for 'od' is enabled by CONFIG_DESKTOP. So check it before using it in test cases. Signed-off-by: Chen Qi --- ...te-check-CONFIG_DESKTOP-before-using-od-t.patch | 83 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 84

[OE-core] [PATCH 5/9] busybox: use example.org instead of google.com in wget test case

2018-11-22 Thread Chen Qi
Use example.org to ensure it's always reachible. Signed-off-by: Chen Qi --- ...e-use-www.example.org-for-wget-test-cases.patch | 62 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 63 insertions(+) create mode 100644 meta/recipes-core/busybox

[OE-core] [PATCH 2/9] bzip2: extend alternatives list to include bzip2

2018-11-22 Thread Chen Qi
bzip2 could also be provided by busybox. So extend the alternatives list to include bzip2. Signed-off-by: Chen Qi --- meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb b/meta/recipes

[OE-core] [PATCH 1/9] busybox: enable bzip2 by default

2018-11-22 Thread Chen Qi
bunzip2 is enabled by default, but bzip2 is not. This is kind of strange, and it also causes busybox's ptest failure regarding bunzip2, as bunzip2's test case needs bzip2 command. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox/defconfig | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [PATCH 4/9] busybox: check uudecode before using it in test case

2018-11-22 Thread Chen Qi
Check uudecode before using it in test case to avoid unexpected failure. Signed-off-by: Chen Qi --- ...-testsuite-check-uudecode-before-using-it.patch | 45 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 46 insertions(+) create mode 100644

[OE-core] [PATCH 3/9] busybox: add zip to RDEPENDS of ptest package

2018-11-22 Thread Chen Qi
busybox's unzip test case requires zip command. However, busybox itself does not provide one. So add zip as a runtime dependency. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta

[OE-core] [PATCH V3 0/9] Fixes for busybox ptest

2018-11-22 Thread Chen Qi
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/busybox-ptest Chen Qi (8): busybox: enable bzip2 by default bzip2: extend alternatives list to include bzip2 busybox: add zip to RDEPENDS of ptest package busybox: check uudecode before using it in test case busybox: use

[OE-core] [PATCH 8/8] busybox: check CONFIG_DESKTOP before using 'od -t' in test case

2018-11-20 Thread Chen Qi
The '-t' option support for 'od' is enabled by CONFIG_DESKTOP. So check it before using it in test cases. Signed-off-by: Chen Qi --- ...te-check-CONFIG_DESKTOP-before-using-od-t.patch | 83 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 84

[OE-core] [PATCH 7/8] busybox: fix du-l-works test case

2018-11-20 Thread Chen Qi
64 + 64 + 16 = 144K 144 + sizeof_a_directory >= 145 So fix to use 145 instead of 144. Signed-off-by: Chen Qi --- ...-du-l-works-fix-to-use-145-instead-of-144.patch | 32 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 33 insertions(+) cre

[OE-core] [PATCH 5/8] busybox: use example.org instead of google.com in wget test case

2018-11-20 Thread Chen Qi
Use example.org to ensure it's always reachible. Signed-off-by: Chen Qi --- ...e-use-www.example.org-for-wget-test-cases.patch | 62 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 63 insertions(+) create mode 100644 meta/recipes-core/busybox

[OE-core] [PATCH 1/8] busybox: enable bzip2 by default

2018-11-20 Thread Chen Qi
bunzip2 is enabled by default, but bzip2 is not. This is kind of strange, and it also causes busybox's ptest failure regarding bunzip2, as bunzip2's test case needs bzip2 command. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox/defconfig | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [PATCH 4/8] busybox: check uudecode before using it in test case

2018-11-20 Thread Chen Qi
Check uudecode before using it in test case to avoid unexpected failure. Signed-off-by: Chen Qi --- ...-testsuite-check-uudecode-before-using-it.patch | 45 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 46 insertions(+) create mode 100644

[OE-core] [PATCH 3/8] busybox: add zip to RDEPENDS of ptest package

2018-11-20 Thread Chen Qi
busybox's unzip test case requires zip command. However, busybox itself does not provide one. So add zip as a runtime dependency. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta

[OE-core] [PATCH 6/8] busybox: remove three hostname test cases

2018-11-20 Thread Chen Qi
, which is not an entry in /etc/hosts This results in lookup failure when using `hostname -f' as there's no entry in /etc/hosts. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox.inc | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/recipes-core/busybox/busybox.inc b

[OE-core] [PATCH 2/8] bzip2: extend alternatives list to include bzip2

2018-11-20 Thread Chen Qi
bzip2 could also be provided by busybox. So extend the alternatives list to include bzip2. Signed-off-by: Chen Qi --- meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb b/meta/recipes

[OE-core] [PATCH V2 0/8] Fixes for busybox ptest

2018-11-20 Thread Chen Qi
at: git://git.pokylinux.org/poky-contrib ChenQi/busybox-ptest http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/busybox-ptest Chen Qi (8): busybox: enable bzip2 by default bzip2: extend alternatives list to include bzip2 busybox: add zip to RDEPENDS of ptest package busybox

[OE-core] [PATCH 5/8] busybox: use example.org instead of google.com in wget test case

2018-11-14 Thread Chen Qi
Use example.org to ensure it's always reachible. Signed-off-by: Chen Qi --- ...e-use-www.example.org-for-wget-test-cases.patch | 62 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 63 insertions(+) create mode 100644 meta/recipes-core/busybox

[OE-core] [PATCH 8/8] busybox: add coreutils to RDEPENDS of busybox-ptest

2018-11-14 Thread Chen Qi
busybox's echo test cases needs 'od' command to have '-t' option support. However, our busybox disable it by default by not setting CONFIG_DESKTOP. CONFIG_DESKTOP affects many busybox utilities. So add coreutils to RDEPENDS of busybox-ptest. Signed-off-by: Chen Qi --- meta/recipes-core/busybox

[OE-core] [PATCH 6/8] busybox: remove three hostname test cases

2018-11-14 Thread Chen Qi
, which is not an entry in /etc/hosts This results in lookup failure when using `hostname -f' as there's no entry in /etc/hosts. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox.inc | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/recipes-core/busybox/busybox.inc b

[OE-core] [PATCH 7/8] busybox: fix du-l-works test case

2018-11-14 Thread Chen Qi
64 + 64 + 16 = 144K 144 + sizeof_a_directory >= 145 So fix to use 145 instead of 144. Signed-off-by: Chen Qi --- ...-du-l-works-fix-to-use-145-instead-of-144.patch | 32 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 33 insertions(+) cre

[OE-core] [PATCH 1/8] busybox: enable bzip2 by default

2018-11-14 Thread Chen Qi
bunzip2 is enabled by default, but bzip2 is not. This is kind of strange, and it also causes busybox's ptest failure regarding bunzip2, as bunzip2's test case needs bzip2 command. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox/defconfig | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [PATCH 2/8] busybox: skip known bugs in ptest

2018-11-14 Thread Chen Qi
Set SKIP_KNOWN_BUGS in run-ptest script to skip ptest cases which are known to relate to some known bugs. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/files/run-ptest | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/busybox/files/run-ptest b/meta/recipes-core

[OE-core] [PATCH 3/8] busybox: add zip to RDEPENDS of ptest package

2018-11-14 Thread Chen Qi
busybox's unzip test case requires zip command. However, busybox itself does not provide one. So add zip as a runtime dependency. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta

[OE-core] [PATCH 0/8] Fixes for busybox ptest

2018-11-14 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/busybox-ptest Chen Qi (8): busybox: enable bzip2 by default busybox: skip known bugs in ptest busybox: add zip to RDEPENDS of ptest package busybox: check uudecode before using it in test case busybox: use example.org instead of google.com in wget

[OE-core] [PATCH 4/8] busybox: check uudecode before using it in test case

2018-11-14 Thread Chen Qi
Check uudecode before using it in test case to avoid unexpected failure. Signed-off-by: Chen Qi --- ...-testsuite-check-uudecode-before-using-it.patch | 45 ++ meta/recipes-core/busybox/busybox_1.29.2.bb| 1 + 2 files changed, 46 insertions(+) create mode 100644

[OE-core] [PATCH 1/3] systemd: fix CVE-2018-15686

2018-11-01 Thread Chen Qi
Backport patch to fix the following CVE. CVE: CVE-2018-15686 Signed-off-by: Chen Qi --- ...eserializing-state-always-use-read_line-L.patch | 250 + meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 251 insertions(+) create mode 100644 meta

[OE-core] [PATCH 2/3] systemd: fix CVE-2018-15687

2018-11-01 Thread Chen Qi
Backport patch to fix the following CVE. CVE: CVE-2018-15687 Signed-off-by: Chen Qi --- ...sive-let-s-rework-the-recursive-logic-to-.patch | 219 + meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 220 insertions(+) create mode 100644 meta

[OE-core] [PATCH V2 0/3] systemd: backport patches to fix 3 CVEs

2018-11-01 Thread Chen Qi
in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/systemd-CVEs http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/systemd-CVEs Chen Qi (3): systemd: fix CVE-2018-15686 systemd: fix CVE-2018-15687 systemd: fix CVE-2018-15688 ...sive-let-s-rework-the-recursive

[OE-core] [PATCH 3/3] systemd: fix CVE-2018-15688

2018-11-01 Thread Chen Qi
Backport patch to fix the following CVE. CVE: CVE-2018-15688 Signed-off-by: Chen Qi --- ...sure-we-have-enough-space-for-the-DHCP6-o.patch | 39 ++ meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 40 insertions(+) create mode 100644 meta/recipes

[OE-core] [PATCH 2/3] systemd: fix CVE-2018-15687

2018-11-01 Thread Chen Qi
Backport patch to fix the following CVE. CVE: CVE-2018-15687 Signed-off-by: Chen Qi --- ...sive-let-s-rework-the-recursive-logic-to-.patch | 216 + meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 217 insertions(+) create mode 100644 meta

[OE-core] [PATCH 3/3] systemd: fix CVE-2018-15688

2018-11-01 Thread Chen Qi
Backport patch to fix the following CVE. CVE: CVE-2018-15688 Signed-off-by: Chen Qi --- ...sure-we-have-enough-space-for-the-DHCP6-o.patch | 36 ++ meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 37 insertions(+) create mode 100644 meta/recipes

[OE-core] [PATCH 0/3] systemd: backport patches to fix 3 CVEs

2018-11-01 Thread Chen Qi
=ChenQi/systemd-CVEs Chen Qi (3): systemd: fix CVE-2018-15686 systemd: fix CVE-2018-15687 systemd: fix CVE-2018-15688 ...sive-let-s-rework-the-recursive-logic-to-.patch | 216 +++ ...eserializing-state-always-use-read_line-L.patch | 238 + ...sure-we-have

[OE-core] [PATCH 1/3] systemd: fix CVE-2018-15686

2018-11-01 Thread Chen Qi
Backport patch to fix the following CVE. CVE: CVE-2018-15686 Signed-off-by: Chen Qi --- ...eserializing-state-always-use-read_line-L.patch | 238 + meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 239 insertions(+) create mode 100644 meta

[OE-core] [PATCH 1/1] gdbm: fix ptest failure

2018-10-30 Thread Chen Qi
Some of gdbm's ptest cases require gdbmtool, which is packaged into ${PN}-bin. So extend the RDEPENDS_${PN}-ptest to include the package. Signed-off-by: Chen Qi --- meta/recipes-support/gdbm/gdbm_1.18.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support

[OE-core] [PATCH 0/1] gdbm: fix ptest failure

2018-10-30 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/gdbm-ptest Chen Qi (1): gdbm: fix ptest failure meta/recipes-support/gdbm/gdbm_1.18.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 -- ___ Openembedded-core mailing list Openembedded

[OE-core] [PATCH 0/1] go-dep: disable PTEST_ENABLED for mips and mips64

2018-10-30 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/go-dep Chen Qi (1): go-dep: disable PTEST_ENABLED for mips and mips64 meta/recipes-devtools/go/go-dep_0.5.0.bb | 5 + 1 file changed, 5 insertions(+) -- 1.9.1 -- ___ Openembedded-core mailing list

[OE-core] [PATCH 1/1] go-dep: disable PTEST_ENABLED for mips and mips64

2018-10-30 Thread Chen Qi
The current go-dep does not compile ptest successfully on mips and mips64. So as a workaround, disable PTEST_ENABLED explicitly to avoid error like below. | vet config not found Signed-off-by: Chen Qi --- meta/recipes-devtools/go/go-dep_0.5.0.bb | 5 + 1 file changed, 5 insertions

[OE-core] [PATCH 1/1] packagegroup-core-lsb/-x11-sato: no udev-extraconf in case of systemd

2018-10-24 Thread Chen Qi
-off-by: Chen Qi --- meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | 2 +- meta/recipes-sato/packagegroups/packagegroup-core-x11-sato.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta

[OE-core] [PATCH 0/1] packagegroup-core-lsb/-x11-sato: no udev-extraconf in case of systemd

2018-10-24 Thread Chen Qi
/cgit.cgi/poky-contrib/log/?h=ChenQi/udev-extraconf Chen Qi (1): packagegroup-core-lsb/-x11-sato: no udev-extraconf in case of systemd meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | 2 +- meta/recipes-sato/packagegroups/packagegroup-core-x11-sato.bb | 2 +- 2 files changed, 2

[OE-core] [PATCH 1/1] libaio: extend to nativesdk

2018-10-22 Thread Chen Qi
this issue. Signed-off-by: Chen Qi --- meta/recipes-extended/libaio/libaio_0.3.111.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-extended/libaio/libaio_0.3.111.bb b/meta/recipes-extended/libaio/libaio_0.3.111.bb index 5bd8307..04b50b6 100644 --- a/meta/recipes-extended/libaio

[OE-core] [PATCH 0/1] libaio: extend to nativesdk

2018-10-22 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/libaio-nativesdk Chen Qi (1): libaio: extend to nativesdk meta/recipes-extended/libaio/libaio_0.3.111.bb | 2 ++ 1 file changed, 2 insertions(+) -- 1.9.1 -- ___ Openembedded-core mailing list

[OE-core] [PATCH V2 0/1] systemd: add back alternatives for init utitilies

2018-10-22 Thread Chen Qi
ChenQi/systemd-alternatives http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/systemd-alternatives Chen Qi (1): systemd: add back alternatives for init utitilies meta/recipes-core/systemd/systemd_239.bb | 23 --- 1 file changed, 20 insertions(+), 3 deletions

[OE-core] [PATCH 1/1] systemd: add back alternatives for init utitilies

2018-10-22 Thread Chen Qi
have the second use case. In such situation, users will find themselves having regression error when using 'busybox + systemd' (and busybox is installed after systemd, overriding the systemd symlinks). So in order to avoid regression, add back these alternatives. Signed-off-by: Chen Qi --- meta

[OE-core] [PATCH 0/1] systemd: add back alternatives for init utitilies

2018-10-18 Thread Chen Qi
/systemd-alternatives http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/systemd-alternatives Chen Qi (1): systemd: add back alternatives for init utitilies meta/recipes-core/systemd/systemd_239.bb | 27 --- 1 file changed, 24 insertions(+), 3 deletions

[OE-core] [PATCH 1/1] systemd: add back alternatives for init utitilies

2018-10-18 Thread Chen Qi
have the second use case. In such situation, users will find themselves having regression error when using 'busybox + systemd' (and busybox is installed after systemd, overriding the systemd symlinks). So in order to avoid regression, add back these alternatives. Signed-off-by: Chen Qi --- meta

[OE-core] [PATCH 1/2] python: backport patch to fix CVE-2018-1000802

2018-10-18 Thread Chen Qi
Backport a patch to fix the following CVE. CVE: CVE-2018-1000802 Signed-off-by: Chen Qi --- ...34540-Convert-shutil._call_external_zip-t.patch | 69 ++ meta/recipes-devtools/python/python_2.7.15.bb | 1 + 2 files changed, 70 insertions(+) create mode 100644 meta

[OE-core] [PATCH 2/2] python: backport patch to fix CVE-2018-14647

2018-10-18 Thread Chen Qi
Backport patch to fix the following CVE. CVE: CVE-2018-14647 Signed-off-by: Chen Qi --- ...23-Use-XML_SetHashSalt-in-_elementtree-GH.patch | 98 ++ meta/recipes-devtools/python/python_2.7.15.bb | 1 + 2 files changed, 99 insertions(+) create mode 100644 meta/recipes

[OE-core] [PATCH 0/2] python: fix two CVEs

2018-10-18 Thread Chen Qi
/?h=ChenQi/python-cve Chen Qi (2): python: backport patch to fix CVE-2018-1000802 python: backport patch to fix CVE-2018-14647 ...23-Use-XML_SetHashSalt-in-_elementtree-GH.patch | 98 ++ ...34540-Convert-shutil._call_external_zip-t.patch | 69 +++ meta/recipes

[OE-core] [PATCH 1/1] bind: fix startup failure in sysvinit

2018-10-15 Thread Chen Qi
The generated key file should try to have bind group so that if the named daemon is started via '-u bind' option, which is the default in OE core, we will not get startup failure because of 'permission denied' error. Signed-off-by: Chen Qi --- .../0001-avoid-start-failure-with-bind-user.patch

[OE-core] [PATCH 0/1] bind: fix startup failure in sysvinit

2018-10-15 Thread Chen Qi
ChenQi/bind-sysvinit http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/bind-sysvinit Chen Qi (1): bind: fix startup failure in sysvinit .../0001-avoid-start-failure-with-bind-user.patch | 27 ++ meta/recipes-connectivity/bind/bind_9.11.4.bb | 1 + 2 files

[OE-core] [PATCH 2/3] packagegroup-core-lsb/-full-cmdline: add bzip2

2018-10-11 Thread Chen Qi
to install them. """ So we'd better cluster gzip and bzip2 with tar. These two packagegroups already get 'gzip', so we also add 'bzip2'. Signed-off-by: Chen Qi --- meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb | 1 + meta/recipes-extended/packagegroups/packagegr

[OE-core] [PATCH 1/3] ksample.py: fix error message

2018-10-11 Thread Chen Qi
The current error message is like: kobject-example.kodoesn't exist Add a space so that it looks like: kobject-example.ko doesn't exist Signed-off-by: Chen Qi --- meta/lib/oeqa/runtime/cases/ksample.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa

[OE-core] [PATCH 3/3] nativesdk-packagegroup-sdk-host: add nativesdk-flex

2018-10-11 Thread Chen Qi
nativesdk-flex is needed for kernel development inside traidtional SDK environment, more particularly, `make scripts' under /usr/src/kernel. So add it to nativesdk-packagegroup-sdk-host. Signed-off-by: Chen Qi --- meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb | 1 + 1 file

[OE-core] [PATCH 0/3] Three fixes regarding SDK and testimage

2018-10-11 Thread Chen Qi
/cgit.cgi/poky-contrib/log/?h=ChenQi/misc-fix Chen Qi (3): ksample.py: fix error message packagegroup-core-lsb/-full-cmdline: add bzip2 nativesdk-packagegroup-sdk-host: add nativesdk-flex meta/lib/oeqa/runtime/cases/ksample.py| 2 +- meta/recipes-core/packagegroups

[OE-core] [PATCH 1/1] util-linux: fix alternatives setting for unshare

2018-10-11 Thread Chen Qi
The alternative setting for unshare belongs to the util-linux-unshare package instead of the util-linux package. Fix this problem to avoid a dead symlink /usr/bin/unshare -> /usr/bin/unshare.util-linux on target. Signed-off-by: Chen Qi --- meta/recipes-core/util-linux/util-linux.inc

[OE-core] [PATCH 0/1] util-linux: fix alternatives setting for unshare

2018-10-11 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/util-linux-unshare Chen Qi (1): util-linux: fix alternatives setting for unshare meta/recipes-core/util-linux/util-linux.inc | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) -- 1.9.1

[OE-core] [PATCH 1/2] libepoxy: fix PACKAGECONFIG to get rid of required opengl distro feature

2018-09-29 Thread Chen Qi
enable egl PACKAGECONFIG, enable it if opengl is in DISTRO_FEATURES. Remove the required distro feature setting accordingly. Signed-off-by: Chen Qi --- meta/recipes-graphics/libepoxy/libepoxy_1.5.2.bb | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/meta/recipe

[OE-core] [PATCH 2/2] webkitgtk: fix to build without opengl

2018-09-29 Thread Chen Qi
ion to build webkitgtk. So fix to use it. In this way, we can successfully build out webkitgtk if 'opengl' is not in distro features. Signed-off-by: Chen Qi --- .../0001-fix-to-build-with-libepoxy.patch | 35 ++ meta/recipes-sato/webkit/webkitgtk_2.20.5.bb |

[OE-core] [PATCH 0/2] Fix to build webkitgtk without opengl

2018-09-29 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/webkitgtk-opengl Chen Qi (2): libepoxy: fix PACKAGECONFIG to get rid of required opengl distro feature webkitgtk: fix to build without opengl meta/recipes-graphics/libepoxy/libepoxy_1.5.2.bb | 9 +++--- .../0001-fix-to-build

[OE-core] [PATCH 2/2] libsdl2: disable sndio explicitly to avoid inconsistent result

2018-09-29 Thread Chen Qi
: error while loading shared libraries: libsndio.so.6.1: cannot open shared object file: No such file or directory So explicitly disable sndio for libsdl2 to avoid the above problem. Signed-off-by: Chen Qi --- meta/recipes-graphics/libsdl2/libsdl2_2.0.8.bb | 1 + 1 file changed, 1

[OE-core] [PATCH 0/2] Two fixes regarding eSDK

2018-09-29 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/esdk-fixes Chen Qi (2): nativesdk-packagegroup-sdk-host.bb: remove nativesdk-dnf libsdl2: disable sndio explicitly to avoid inconsistent result meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb | 1 - meta/recipes-graphics/libsdl2

[OE-core] [PATCH 1/2] nativesdk-packagegroup-sdk-host.bb: remove nativesdk-dnf

2018-09-29 Thread Chen Qi
. Signed-off-by: Chen Qi --- meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb b/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb index e2f6169

[OE-core] [PATCH 0/1] glibc: refresh patch to also fix qemuppc

2018-09-28 Thread Chen Qi
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/glibc-qemuppc Chen Qi (1): glibc: refresh patch to also fix qemuppc ...eee754-prevent-maybe-uninitialized-errors.patch | 41 +- 1 file changed, 32 insertions(+), 9 deletions(-) -- 1.9.1

[OE-core] [PATCH 1/1] glibc: refresh patch to also fix qemuppc

2018-09-28 Thread Chen Qi
in this function [-Werror=maybe-uninitialized] Signed-off-by: Chen Qi --- ...eee754-prevent-maybe-uninitialized-errors.patch | 41 +- 1 file changed, 32 insertions(+), 9 deletions(-) diff --git a/meta/recipes-core/glibc/glibc/0031-sysdeps-ieee754-prevent-maybe-uninitialized

[OE-core] [PATCH V2 1/1] nativesdk.bbclass: set consistent staging dirs regardless of multilib

2018-09-27 Thread Chen Qi
pecial cases. Using 'recipe-sysroot' does not have this problem. Signed-off-by: Chen Qi --- meta/classes/nativesdk.bbclass | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/classes/nativesdk.bbclass b/meta/classes/nativesdk.bbclass index ab566e9..f25b0c3 100644 --- a/meta/classes/nati

[OE-core] [PATCH V2 0/1] nativesdk.bbclass: set consistent staging dirs regardless of multilib

2018-09-27 Thread Chen Qi
://git.pokylinux.org/poky-contrib ChenQi/nativesdk-recipe-sysroot http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/nativesdk-recipe-sysroot Chen Qi (1): nativesdk.bbclass: set consistent staging dirs regardless of multilib meta/classes/nativesdk.bbclass | 5 + 1 file changed, 5

[OE-core] [PATCH V2 1/1] runqemu: fix handling of SIGTERM and the problem of line wrapping

2018-09-25 Thread Chen Qi
should appear in multiple lines, but they appear in the same line, overriding previous output. Use `tput smam' to fix this problem. Signed-off-by: Chen Qi --- scripts/runqemu | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index

[OE-core] [PATCH V2 0/1] runqemu: fix handling of SIGTERM and the problem of line wrapping

2018-09-25 Thread Chen Qi
ChenQi/runqemu-fix http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/runqemu-fix Chen Qi (1): runqemu: fix handling of SIGTERM and the problem of line wrapping scripts/runqemu | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) -- 1.9.1

[OE-core] [PATCH 0/1] runqemu: fix handling of SIGTERM and the problem of line wrapping

2018-09-20 Thread Chen Qi
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/runqemu-fix Chen Qi (1): runqemu: fix handling of SIGTERM and the problem of line wrapping scripts/runqemu | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) -- 1.9.1

[OE-core] [PATCH 1/1] runqemu: fix handling of SIGTERM and the problem of line wrapping

2018-09-20 Thread Chen Qi
lines or long commands. Long commands or long outputs should appear in multiple lines, but they appear in the same line, overriding previous output. Use `tput smam' to fix this problem. Signed-off-by: Chen Qi --- scripts/runqemu | 14 ++ 1 file changed, 10 insertions(+), 4 deletions

[OE-core] [PATCH 1/1] autotools: do more cleanup when in do_configure

2018-09-10 Thread Chen Qi
. So also do 'make distclean' and remove config.cache just as what the error message told us. Signed-off-by: Chen Qi --- meta/classes/autotools.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 8768a6a..f577461 100644

<    1   2   3   4   5   6   7   8   9   10   >