[OE-core] [PATCH] boost: add ptest support

2018-05-18 Thread mingli.yu
From: Mingli Yu * Add a patch to remove rpath when compiling tests. * The rules for tests don't work in cross-compiling, they try to run the executable after compiling and linking the test program, so add a patch to hack the rules, and add the running logic in run-ptest * There are 2000+

[OE-core] [PATCH] boost: add contract lib

2018-05-10 Thread mingli.yu
From: Mingli Yu Add the contract lib which implements contract programming (a.k.a., Design by Contract or DbC) [1] for the C++ programming language. Signed-off-by: Mingli Yu --- meta/recipes-support/boost/boost.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-support/boost/

[OE-core] [PATCH] boost: add contract lib

2018-05-10 Thread mingli.yu
From: Mingli Yu Add the contract lib Signed-off-by: Mingli Yu --- meta/recipes-support/boost/boost.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index b447897a0c..6984bee777 100644 --- a/meta/recipes-support

[OE-core] [PATCH] kexec-tools: Set -fno-PIC on aarch64

2018-05-09 Thread mingli.yu
From: Mingli Yu As seen in GCC's gcc/config/aarch64/aarch64.c, -fPIC with large code model is unsupported. This fixes the "sorry, unimplemented" errors when building with compilers defaulting to -fPIC. Signed-off-by: Mingli Yu --- ...rm64-Set-fno-PIC-along-with-mcmodel-large.patch | 33 ++

[OE-core] [PATCH] boost: update to 1.67.0

2018-04-26 Thread mingli.yu
From: Mingli Yu * Remove the backported patch 0001-Fix-a-strange-assert-typo-how-was-this-released-with.patch * Remove the patch 0002-Don-t-set-up-m32-m64-we-do-that-ourselves.patch as it already rewritten gcc to use toolset.flags again as below: commit 12decb3ce680031b915f69902795eec4722

[OE-core] [PATCH] libevent: fix 32bit linux regress test

2018-01-18 Thread mingli.yu
From: Mingli Yu Fix 32bit linux regress test This patch is backported from https://github.com/libevent/libevent/commit/63c4bf78d6af3c6ff46d2e8e4b53dd9f577a9ca9 Signed-off-by: Mingli Yu --- .../0001-test-fix-32bit-linux-regress.patch| 48 ++ meta/recipes-support/li

[OE-core] [PATCH] systemd: fix udev-hwdb warning

2018-01-03 Thread mingli.yu
From: Mingli Yu * Add qemu usermode checking for udev-hwdb as udev-hwdb uses quemu usermode by default, but some architecture such as Intel skylake doesn't support qemu usermode and can result a build warning as below: | warning: %post(udev-hwdb-1:234-r0.skylake_64) scriptlet failed, ex

[OE-core] [PATCH] glibc/gcc/libgcc-initial: Reimplement "deltask do_build"

2017-11-21 Thread mingli.yu
From: Mingli Yu Previously, "deltask do_build" can result in the dependency of do_build lost and can trigger a race condition error as below when do_rm_work is enabled. = NOTE: recipe glibc-initial-2.26-r0: task do_fetch: Failed ERROR: glibc-initial

[OE-core] [PATCH] glibc/gcc/libgcc-initial: Reimplement "deltask do_build"

2017-11-21 Thread mingli.yu
From: Mingli Yu Previously, "deltask do_build" can result in the dependency of do_build lost and can trigger a race condition error as below when do_rm_work is enabled. = NOTE: recipe glibc-initial-2.26-r0: task do_fetch: Failed ERROR: glibc-initial

[OE-core] [PATCH] gpgme: add GPGME_STATUS_KEY_CONSIDERED

2016-12-21 Thread mingli.yu
From: Mingli Yu * src/gpgme.h.in (GPGME_STATUS_KEY_CONSIDERED): New. * src/status-table.c (KEY_CONSIDERED): New. * src/op-support.c (_gpgme_parse_inv_recp): Add argc KC_FPR and KC_FLAGS. Use calloc. (_gpgme_parse_key_considered): New. * src/sign.c (op_data_t): Add fields KC_FPR and KC_FLAGS.

[OE-core] [PATCH 2/3] tiff: Security fix CVE-2016-9538

2016-12-07 Thread mingli.yu
From: Mingli Yu * tools/tiffcrop.c: fix read of undefined buffer in readContigStripsIntoBuffer() due to uint16 overflow. External References: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9538 Patch from: https://github.com/vadz/libtiff/commit/43c0b81a818640429317c80fea1e66771e85024b

[OE-core] [PATCH 3/3] tiff: Fix several CVE issues

2016-12-07 Thread mingli.yu
From: Mingli Yu Fix CVE-2016-9533, CVE-2016-9534, CVE-2016-9536 and CVE-2016-9537 External References: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9533 http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9534 http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9536 http://

[OE-core] [PATCH 1/3] tiff: Security fix CVE-2016-9535

2016-12-07 Thread mingli.yu
From: Mingli Yu * libtiff/tif_predict.h, libtiff/tif_predict.c: Replace assertions by runtime checks to avoid assertions in debug mode, or buffer overflows in release mode. Can happen when dealing with unusual tile size like YCbCr with subsampling. External References: http://web.nvd.nist.gov/vi

[OE-core] tiff: fix several tiff CVE issues

2016-12-07 Thread mingli.yu
These commits fix several tiff CVE issues: CVE-2016-9533, CVE-2016-9534, CVE-2016-9535, CVE-2016-9536, CVE-2016-9537 and CVE-2016-9538 -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/l

[OE-core] [PATCH] perl: fix CVE-2016-1238

2016-09-25 Thread mingli.yu
From: Mingli Yu Backport patch to fix CVE-2016-1238 from perl upstream: http://perl5.git.perl.org/perl.git/commitdiff/cee96d52c39b1e7b36e1c62d38bcd8d86e9a41ab Signed-off-by: Mingli Yu --- .../perl/perl/perl-fix-CVE-2016-1238.patch | 352 + meta/recipes-devtools/perl

[OE-core] [PATCH] python: fix CVE-2016-1000110

2016-09-25 Thread mingli.yu
From: Mingli Yu Backport patch to fix CVE-2016-1000110 from python upstream: for python2.7 https://hg.python.org/cpython/rev/ba915d561667/ for python3 https://hg.python.org/cpython/rev/a0ac52ed8f79 Signed-off-by: Mingli Yu --- .../python/python-fix-CVE-2016-1000110.patch | 162 ++

[OE-core] [openembedded-core][PATCH 0/2] perl: fix some CVE issues

2016-09-21 Thread mingli.yu
Changed in V2: add CVE tags -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

[OE-core] [openembedded-core][PATCH 1/2] perl: fix CVE-2016-6185

2016-09-21 Thread mingli.yu
From: Mingli Yu Backport patch to fix CVE-2016-6185 from perl upstream: http://perl5.git.perl.org/perl.git/commitdiff/08e3451d7 Signed-off-by: Mingli Yu --- .../perl/perl/perl-fix-CVE-2016-6185.patch | 128 + meta/recipes-devtools/perl/perl_5.22.1.bb | 1

[OE-core] [openembedded-core][PATCH 2/2] perl: fix CVE-2015-8607

2016-09-21 Thread mingli.yu
From: Mingli Yu Backport patch to fix CVE-2015-8607 from perl upstream: http://perl5.git.perl.org/perl.git/commitdiff/0b6f93036de171c12ba95d415e264d9cf7f4e1fd Signed-off-by: Mingli Yu --- .../perl/perl/perl-fix-CVE-2015-8607.patch | 74 ++ meta/recipes-devtools/perl

[OE-core] [PATCH 1/2] perl: fix CVE-2016-6185

2016-09-20 Thread mingli.yu
From: Mingli Yu Backport patch to fix CVE-2016-6185 from perl upstream: http://perl5.git.perl.org/perl.git/commitdiff/08e3451d7 Signed-off-by: Mingli Yu --- .../perl/perl/perl-fix-CVE-2016-6185.patch | 127 + meta/recipes-devtools/perl/perl_5.22.1.bb | 1

[OE-core] [PATCH 2/2] perl: fix CVE-2015-8607

2016-09-20 Thread mingli.yu
From: Mingli Yu Backport patch to fix CVE-2015-8607 from perl upstream: http://perl5.git.perl.org/perl.git/commitdiff/0b6f93036de171c12ba95d415e264d9cf7f4e1fd Signed-off-by: Mingli Yu --- .../perl/perl/perl-fix-CVE-2015-8607.patch | 74 ++ meta/recipes-devtools/perl

[OE-core] [PATCH] shadow: use relaxed usernames

2016-09-12 Thread mingli.yu
From: Shan Hai The groupadd from shadow does not allow upper case group names, the same is true for the upstream shadow. But distributions like Debian/Ubuntu/CentOS has their own way to cope with this problem, this patch is picked up from CentOS release 7.0 to relax the usernames restrictions to

[OE-core] [PATCH] xinetd: add Init Script Actions to xinetd script

2016-09-12 Thread mingli.yu
From: Shan Hai The chkconfig fails to list the xinetd service because the xinetd lacks Init Script Actions in it, add the actions to fix it. Signed-off-by: Shan Hai Signed-off-by: Mingli Yu --- meta/recipes-extended/xinetd/xinetd/xinetd.init | 12 +++- 1 file changed, 11 insertions(+)

[OE-core] [PATCH] webkitgtk: 2.12.4 -> 2.12.5

2016-09-06 Thread mingli.yu
From: Mingli Yu Fix a regression introduced in 2.12.4 that caused a hang in the network process after a load failure. Fix several crashes and rendering issues. reference: https://webkitgtk.org/2016/09/05/webkitgtk2.12.5-released.html Signed-off-by: Mingli Yu --- meta/recipes-sato/webkit/{web

[OE-core] [PATCH v2] groff: not ship /usr/bin/glilypond

2016-09-05 Thread mingli.yu
From: Mingli Yu Not ship /usr/bin/glilypond and related files such as man file /usr/share/man/man1/glilypond.1 and other three files related to glilypond under /usr/lib/groff/glilypond in embedded system, it is because: - Remove the confusion about glilypond fails to run because it lacks depen

[OE-core] [PATCH] gawk: fix command location in ptest script

2016-09-01 Thread mingli.yu
From: Li Wang * Correct the command location in ptest scripts such as update the line "#!/bin/awk -f" to "#!/usr/bin/awk -f" in the file /usr/lib64/gawk/ptest/test/fcall_exit2.awk belongs to package gawk-ptest and the line "#!/usr/local/bin/gawk -f" to "#!/usr/bin/gawk -f" in the file /

[OE-core] [PATCH] ltp: remove useless script STPfailure_report.pl

2016-08-30 Thread mingli.yu
From: Mingli Yu * Remove useless script STPfailure_report.pl to avoid confusing about this script fails to run as it lacks dependency on some perl module such as LWP::Simple - The script STPfailure_report.pl previously is added as a tool to analyze failures from LTP runs on the O

[OE-core] [PATCH 19/21] compress-raw-bzip2-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe compress-raw-bzip2-perl as io-compress-perl rdepends on compress-raw-bzip2-perl Signed-off-by: Mingli Yu --- .../perl/compress-raw-bzip2-perl_2.069.bb | 28 ++ 1 file changed, 28 insertions(+) create mode 100644 meta/recipes-devt

[OE-core] [PATCH 17/21] io-socket-ssl-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe io-socket-ssl-perl as net-http-perl rdepends on io-socket-ssl-perl Signed-off-by: Mingli Yu --- .../perl/io-socket-ssl-perl_2.024.bb | 27 ++ 1 file changed, 27 insertions(+) create mode 100644 meta/recipes-devtools/perl/io-

[OE-core] [PATCH 21/21] net-ssleay-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe net-ssleay-perl as io-socket-ssl-perl rdepends on net-ssleay-perl Signed-off-by: Mingli Yu --- meta/recipes-devtools/perl/net-ssleay-perl_1.72.bb | 37 ++ 1 file changed, 37 insertions(+) create mode 100644 meta/recipes-devtools/perl/net-

[OE-core] [PATCH 18/21] html-tagset-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe html-tagset-perl as html-parser-perl rdepends on html-tagset-perl Signed-off-by: Mingli Yu --- .../recipes-devtools/perl/html-tagset-perl_3.20.bb | 28 ++ 1 file changed, 28 insertions(+) create mode 100644 meta/recipes-devtools/perl/html

[OE-core] [PATCH 20/21] compress-raw-zlib-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe compress-raw-zlib-perl as io-compress-perl rdepends on compress-raw-zlib-perl Signed-off-by: Mingli Yu --- .../perl/compress-raw-zlib-perl_2.069.bb | 28 ++ 1 file changed, 28 insertions(+) create mode 100644 meta/recipes-devtoo

[OE-core] [PATCH 16/21] io-compress-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe io-compress-perl as net-http-perl rdepends on io-compress-perl Signed-off-by: Mingli Yu --- .../perl/io-compress-perl_2.069.bb | 25 ++ 1 file changed, 25 insertions(+) create mode 100644 meta/recipes-devtools/perl/io-comp

[OE-core] [PATCH 14/21] www-robotrules-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe www-robotrules-perl as libwww-perl-perl rdepends on www-robotrules-perl Signed-off-by: Mingli Yu --- .../perl/www-robotrules-perl_6.02.bb | 33 ++ 1 file changed, 33 insertions(+) create mode 100644 meta/recipes-devtools/per

[OE-core] [PATCH 15/21] io-html-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe io-html-perl as http-message-perl rdepends on io-html-perl Signed-off-by: Mingli Yu --- meta/recipes-devtools/perl/io-html-perl_1.001.bb | 30 1 file changed, 30 insertions(+) create mode 100644 meta/recipes-devtools/perl/io-html-per

[OE-core] [PATCH 07/21] http-daemon-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe http-daemon-perl as libwww-perl-perl rdepends on http-daemon-perl Signed-off-by: Mingli Yu --- .../recipes-devtools/perl/http-daemon-perl_6.01.bb | 34 ++ 1 file changed, 34 insertions(+) create mode 100644 meta/recipes-devtools/perl/http

[OE-core] [PATCH 10/21] http-negotiate-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe http-negotiate-perl as libwww-perl-perl rdepends on http-negotiate-perl Signed-off-by: Mingli Yu --- .../perl/http-negotiate-perl_6.01.bb | 33 ++ 1 file changed, 33 insertions(+) create mode 100644 meta/recipes-devtools/per

[OE-core] [PATCH 12/21] net-http-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe net-http-perl as libwww-perl-perl rdepends on net-http-perl Signed-off-by: Mingli Yu --- meta/recipes-devtools/perl/net-http-perl_6.09.bb | 33 1 file changed, 33 insertions(+) create mode 100644 meta/recipes-devtools/perl/net-http-p

[OE-core] [PATCH 13/21] uri-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe uri-perl as libwww-perl-perl rdepends on uri-perl Signed-off-by: Mingli Yu --- meta/recipes-devtools/perl/uri-perl_1.71.bb | 24 1 file changed, 24 insertions(+) create mode 100644 meta/recipes-devtools/perl/uri-perl_1.71.bb diff --

[OE-core] [PATCH 11/21] lwp-mediatypes-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe lwp-mediatypes-perl as libwww-perl-perl rdepends on lwp-mediatypes-perl Signed-off-by: Mingli Yu --- .../perl/lwp-mediatypes-perl_6.02.bb | 32 ++ 1 file changed, 32 insertions(+) create mode 100644 meta/recipes-devtools/per

[OE-core] [PATCH 09/21] http-message-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe http-message-perl as libwww-perl-perl rdepends on http-message-perl Signed-off-by: Mingli Yu --- .../perl/http-message-perl_6.11.bb | 29 ++ 1 file changed, 29 insertions(+) create mode 100644 meta/recipes-devtools/perl/ht

[OE-core] [PATCH 06/21] http-cookies-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe http-cookies-perl as libwww-perl-perl rdepends on http-cookies-perl Signed-off-by: Mingli Yu --- .../perl/http-cookies-perl_6.01.bb | 32 ++ 1 file changed, 32 insertions(+) create mode 100644 meta/recipes-devtools/perl/ht

[OE-core] [PATCH 08/21] http-date-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe http-date-perl as libwww-perl-perl rdepends on http-date-perl Signed-off-by: Mingli Yu --- meta/recipes-devtools/perl/http-date-perl_6.02.bb | 31 +++ 1 file changed, 31 insertions(+) create mode 100644 meta/recipes-devtools/perl/http-dat

[OE-core] [PATCH 04/21] file-listing-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe file-listing-perl as libwww-perl-perl rdepends on file-listing-perl Signed-off-by: Mingli Yu --- .../perl/file-listing-perl_6.04.bb | 29 ++ 1 file changed, 29 insertions(+) create mode 100644 meta/recipes-devtools/perl/fi

[OE-core] [PATCH 05/21] html-parser-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe html-parser-perl as libwww-perl-perl rdepends on html-parser-perl Signed-off-by: Mingli Yu --- .../recipes-devtools/perl/html-parser-perl_3.72.bb | 32 ++ 1 file changed, 32 insertions(+) create mode 100644 meta/recipes-devtools/perl/html

[OE-core] [PATCH 01/21] ltp: add libwww-perl-perl to RDEPENDS

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add libwww-perl-perl to RDEPENDS for ltp as STPfailure_report.pl provided by ltp depends on LWP/Simple.pm which is provided by libwww-perl-perl, otherwise comes below error root@super_micro-1:~# /opt/ltp/bin/STPfailure_report.pl -h Can't locate LWP/Simple.pm in @INC (

[OE-core] Review request 0/21: ltp: add libwww-perl-perl to RDEPENDS

2016-08-28 Thread mingli.yu
The series add libwww-perl-perl to RDEPENDS for ltp as STPfailure_report.pl provided by ltp depends on LWP/Simple.pm which is provided by libwww-perl-perl Add new recipe libwww-perl-perl as lftp rdepends on libwww-perl-perl Add encode-locale-perl recipe as libwww-perl-perl rdepends on encode-loca

[OE-core] [PATCH 02/21] libwww-perl-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add new recipe libwww-perl-perl as lftp rdepends on libwww-perl-perl Signed-off-by: Mingli Yu --- .../recipes-devtools/perl/libwww-perl-perl_6.15.bb | 39 ++ 1 file changed, 39 insertions(+) create mode 100644 meta/recipes-devtools/perl/libwww-perl-perl

[OE-core] [PATCH 03/21] encode-locale-perl: add new recipe

2016-08-28 Thread mingli.yu
From: Mingli Yu * Add encode-locale-perl recipe as libwww-perl-perl rdepends on encode-locale-perl Signed-off-by: Mingli Yu --- .../perl/encode-locale-perl_1.05.bb| 32 ++ 1 file changed, 32 insertions(+) create mode 100644 meta/recipes-devtools/perl/enco

[OE-core] [PATCH 3/4] file-which-perl: add new recipe

2016-08-25 Thread mingli.yu
From: Mingli Yu * Add file-which-perl recipe as file-homedir-perl rdepends on file-which-perl Signed-off-by: Mingli Yu --- meta/recipes-devtools/perl/file-which-perl_1.21.bb | 27 ++ 1 file changed, 27 insertions(+) create mode 100644 meta/recipes-devtools/perl/file-whic

[OE-core] [PATCH 4/4] extutils-makemaker-perl: add new recipe

2016-08-25 Thread mingli.yu
From: Mingli Yu * Add extutils-makemaker-perl recipe as file-homedir-perl depends on extutils-makemaker-perl-native * Add no-packlist-neither-perllocal-legacy.patch to avoid generating of .packlist and perllocal.pod files to avoid conflicts between packages writing same file Signed-of

[OE-core] [PATCH 1/4] groff: add file-homedir-perl to RDEPENDS

2016-08-25 Thread mingli.yu
From: Mingli Yu * Add file-homedir-perl to RDEPENDS for groff as glilypond provided by groff depends on File/HomeDir.pm provided by file-homedir-perl, otherwise comes below error root@super_micro-1:~# glilypond -h Can't locate File/HomeDir.pm in @INC (you may need to install the File

[OE-core] [PATCH 2/4] file-homedir-perl: add new recipe

2016-08-25 Thread mingli.yu
From: Mingli Yu * Add file-homedir-perl recipe as glilypond which in groff package depends on HomeDir.pm provided by file-homedir-perl Signed-off-by: Mingli Yu --- .../perl/file-homedir-perl_1.00.bb | 32 ++ 1 file changed, 32 insertions(+) create mode

[OE-core] [PATCH 0/4] groff: add file-homedir-perl to RDEPENDS

2016-08-25 Thread mingli.yu
The series add file-homedir-perl to RDEPENDS for groff as glilypond rdepends on File/HomeDir.pm provided by file-homedir-perl Add new recipe file-homedir-perl Add new recipe file-which-perl as file-homedir-perl rdepends on file-which-perl Add a new recipe extutils-makemaker-perl as file-homedir-

[OE-core] [PATCH] lzo: update ptest output format

2016-08-03 Thread mingli.yu
The output format was updated to match yocto ptest rules: : where the result can be PASS, FAIL, or SKIP, and the testname can be any identifying string. Signed-off-by: Li Wang Signed-off-by: Mingli Yu --- meta/recipes-support/lzo/lzo/run-ptest | 25 + 1 file changed, 25

[OE-core] [PATCH V2] grub2.inc: run autogen.sh before configure

2016-08-01 Thread mingli.yu
* When adding new source files from upstream the autogen.sh script needs to be run * Rework grub2-remove-sparc64-setup-from-x86-builds.patch to remove the grub-setup helper program grub-sparc64-setup in Makefile.util.def instead of the previous Makefile.util.am to avoid the update for Makef

[OE-core] [PATCH] grub2.inc: run autogen.sh before configure

2016-07-31 Thread mingli.yu
When adding new source files from upstream the autogen.sh script needs to be run Signed-off-by: Catalin Enache Signed-off-by: Mingli Yu --- meta/recipes-bsp/grub/grub2.inc | 4 +++- meta/recipes-bsp/grub/grub_git.bb | 7 --- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/m

[OE-core] [PATCH] gcc-cross-canadian.inc: add INSANE_SKIP_ to avoid build warning

2016-07-26 Thread mingli.yu
WARNING: QA Issue: gcc-cross-canadian-i586-dbg: found library in wrong location: /PATH/sysroots/x86_64-oesdk-linux/usr/libexec/i586-oe-linux/gcc/ i586-oe-linux/5.2.0/.debug/libcc1.so.0.0.0 This warning is introduced by commit f6e47aa(gcc-target 5.1: fix for libcc1) Signed-off-by: Li Xin Signed-o

[OE-core] [PATCH 2/2] busybox: handle syslog

2016-07-26 Thread mingli.yu
If CONFIG_KLOGD is not enabled, then the related service file should not be installed, The error message is below: Cannot add dependency job for unit busybox-klogd.service, ignoring: Unit busybox-klogd.service failed to load: No such file or directory. So we should first check the con

[OE-core] [PATCH 1/2] busybox: fix for syslog service in systemd

2016-07-26 Thread mingli.yu
This patch includes the following changes: 1. Explicitly set StandardOutput of the log daemon to null. This would avoid creating a feedback loop of the syslog service. See link below for more information. http://www.freedesktop.org/wiki/Software/systemd/syslog/ 2. Use ALTERNATIVE machanis

[OE-core] [PATCH] busybox: fix for syslog service in systemd

2016-07-26 Thread mingli.yu
commit 9943ffeeed5c612d1bc44a12607d553f7704dc7e Author: Chen Qi Date: Thu Sep 11 04:55:35 2014 -0400 busybox: fix for syslog service in systemd This patch includes the following changes: 1. Explicitly set StandardOutput of the log daemon to null. This would avoid creatin

[OE-core] [PATCH] at: add libselinux to PACKAGECONFIG

2016-07-20 Thread mingli.yu
* add libselinux to PACKAGECONFIG for at Signed-off-by: Mingli Yu --- meta/recipes-extended/at/at_3.1.20.bb | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/recipes-extended/at/at_3.1.20.bb b/meta/recipes-extended/at/at_3.1.20.bb index 1c3eefc..ce5ff53 100644 --- a/meta/recipes-ex

[OE-core] [PATCH] Make smartpm rpm5 support check signatures config.

2016-07-20 Thread mingli.yu
RPMv5 has removed support for _RPMVSF_NOSIGNATURES, the flag can be replaced with a flags set: "RPMVSF_NODSAHEADER|RPMVSF_NORSAHEADER|RPMVSF_NODSA RPMVSF_NORSA" Signed-off-by: Haiqing Bai Signed-off-by: Mingli Yu --- .../python/python-smartpm/smartpm-rpm5-nodig.patch | 59 --- .../smar

[OE-core] [PATCH] package_manager.py: Avoid installing an empty package list

2016-07-19 Thread mingli.yu
From: Mark Hatle It is possible in an attempt only install, that everything listed is not available to be installed. This will have the effect of clearing the package list. However, we only check for an empty package list at the beginning of the function. We need to also check before running t

[OE-core] [PATCH] openssh: conditional compile DES code.

2016-07-19 Thread mingli.yu
After openssl disabled DES, openssh fails to build for some DES codes are not wrapped in conditional compile statement "#ifndef OPENSSL_NO_DES" and "#endif". Signed-off-by: Haiqing Bai Signed-off-by: Mingli Yu --- ...h-7.1p1-conditional-compile-des-in-cipher.patch | 116 + .

<    1   2