[OE-core] [PATCH 1/2] Revert "subversion: fix "svnadmin create" fail on x86"

2016-12-15 Thread Dengke Du
/meta/recipes-devtools/subversion/subversion/0001-fix-svnadmin-create-fail-on-x86.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 09475e0befca8d120c957177ce8568fa2209a1a9 Mon Sep 17 00:00:00 2001 -From: Dengke Du -Date: Wed, 2 Nov 2016 11:09:44 +0800 -Subject: [PATCH] fix "svnadmin create" f

[OE-core] [PATCH 0/2] fix apr configure error for cross compiling

2016-12-15 Thread Dengke Du
-configure-error-for-cross-compiling http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-apr-configure-error-for-cross-compiling Dengke Du (2): Revert "subversion: fix "svnadmin create" fail on x86" apr: fix off_t size can't match when conf

[OE-core] [PATCH 2/2] apr: fix off_t size can't match when configure and in target glibc

2016-12-15 Thread Dengke Du
owing: AC_CHECK_SIZEOF(off_t) Signed-off-by: Dengke Du --- ..._t-size-doesn-t-match-in-glibc-when-cross.patch | 52 ++ meta/recipes-support/apr/apr_1.5.2.bb | 1 + 2 files changed, 53 insertions(+) create mode 100644 meta/recipes-support/apr/apr/0001-apr-fix-off_t

Re: [OE-core] [PATCH 1/2] Revert "subversion: fix "svnadmin create" fail on x86"

2016-12-16 Thread Dengke Du
Hi Richard Yes, I have a root fix for the subversion failed on x86 and multilib. I will send V2 explain it. // Dengke On 2016年12月16日 19:32, Richard Purdie wrote: On Fri, 2016-12-16 at 10:49 +0800, Dengke Du wrote: This reverts commit cfe6f3e251240c9d9a70354be0501600357f0b87. You need to

[OE-core] [PATCH V2 1/2] Revert "subversion: fix "svnadmin create" fail on x86"

2016-12-18 Thread Dengke Du
_int64_t); When the function apr_vformatter meets "lld", it would use the above to parse, but the above read 8 bytes, so the follow-up data go to wrong. So we should configure the apr correct when cross compiling. I do this on the following patchs. Signed

[OE-core] [PATCH V2 0/2] apr: fix off_t size can't match when configure and in target glibc

2016-12-18 Thread Dengke Du
-configure-error-for-cross-compiling http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-apr-configure-error-for-cross-compiling Dengke Du (2): Revert "subversion: fix "svnadmin create" fail on x86" apr: fix off_t size can't match when conf

[OE-core] [PATCH V2 2/2] apr: fix off_t size can't match when configure and in target glibc

2016-12-18 Thread Dengke Du
owing: AC_CHECK_SIZEOF(off_t) Signed-off-by: Dengke Du --- ..._t-size-doesn-t-match-in-glibc-when-cross.patch | 52 ++ meta/recipes-support/apr/apr_1.5.2.bb | 1 + 2 files changed, 53 insertions(+) create mode 100644 meta/recipes-support/apr/apr/0001-apr-fix-off_t

[OE-core] [PATCH 1/1] cdrtools-native: update 3.01 -> 3.02

2016-12-18 Thread Dengke Du
3.01a31 -> 3.02a07 Signed-off-by: Dengke Du --- .../{cdrtools-native_3.01.bb => cdrtools-native_3.02.bb} | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) rename meta/recipes-devtools/cdrtools/{cdrtools-native_3.01.bb => cdrtools-native_3.02.bb} (69%) diff --g

[OE-core] [PATCH 0/1] cdrtools-native: update 3.01 -> 3.02

2016-12-18 Thread Dengke Du
-update-to-3.02 http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/cdrtools-native-update-to-3.02 Dengke Du (1): cdrtools-native: update 3.01 -> 3.02 .../{cdrtools-native_3.01.bb => cdrtools-native_3.02.bb} | 10 +- 1 file changed, 5 insertions

Re: [OE-core] [PATCH 1/1] cdrtools-native: update 3.01 -> 3.02

2016-12-19 Thread Dengke Du
OK, thanks, I get it. On 2016年12月19日 19:53, Burton, Ross wrote: On 19 December 2016 at 06:07, Dengke Du <mailto:dengke...@windriver.com>> wrote: 3.01a31 -> 3.02a07 As the aXX releases are alpha releases for testing, is there a good reason to switch to an alpha? In gen

Re: [OE-core] [PATCH V2 2/2] apr: fix off_t size can't match when configure and in target glibc

2016-12-19 Thread Dengke Du
Thank you for reminding, the following types were hardcoded in apr source code when cross compiling: pid_t 8 ssize_t 8 size_t8 off_t 8 I will send V3. On 2016年12月19日 19:56, Burton, Ross wrote: On 19 December 2016 at 05:40, Dengke Du <mailto:den

[OE-core] [PATCH V3 1/2] Revert "subversion: fix "svnadmin create" fail on x86"

2016-12-19 Thread Dengke Du
_int64_t); When the function apr_vformatter meets "lld", it would use the above to parse, but the above read 8 bytes, so the follow-up data go to wrong. So we should configure the apr correct when cross compiling. I do this on the following patchs. Signed

[OE-core] [PATCH V3 0/2] apr: fix off_t size can't match when configure and in target glibc

2016-12-19 Thread Dengke Du
-for-cross-compiling Dengke Du (2): Revert "subversion: fix "svnadmin create" fail on x86" apr: fix off_t size can't match when configure and in target glibc .../0001-fix-svnadmin-create-fail-on-x86.patch | 56 .../subversion/subversion_1.9.5.bb

[OE-core] [PATCH V3 2/2] apr: fix off_t size can't match when configure and in target glibc

2016-12-19 Thread Dengke Du
owing: AC_CHECK_SIZEOF(off_t) The same for the following hardcoded types for cross compiling: pid_t 8 size_t 8 ssize_t 8 Change the above correspondingly. Signed-off-by: Dengke Du --- ..._t-size-doesn-t-match-in-glibc-when-cross.patch | 76 ++ meta/re

[OE-core] [PATCH 0/1] Fix RPM backend does not honor package overrides for PACKAGE_ARCH

2017-01-10 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-yocto-bug-7984 Dengke Du (1): Fix RPM backend does not honor package overrides for PACKAGE_ARCH meta/classes/package_rpm.bbclass | 202 ++- 1 file changed, 134 insertions(+), 68

[OE-core] [PATCH 1/1] Fix RPM backend does not honor package overrides for PACKAGE_ARCH

2017-01-10 Thread Dengke Du
e solution is that we need to check the extra arch of packages, and build them individually. [YOCTO #7984] Signed-off-by: Dengke Du --- meta/classes/package_rpm.bbclass | 202 ++- 1 file changed, 134 insertions(+), 68 deletions(-) diff --git

[OE-core] [PATCH 0/1] openssh: upgrade to 7.4p1

2017-01-19 Thread Dengke Du
re-contrib dengke/openssh-upgrade-to-7.4p1 http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/openssh-upgrade-to-7.4p1 Dengke Du (1): openssh: upgrade to 7.4p1 .../openssh/add-test-support-for-busybox.patch | 69 -- .../openssh/openssh/fix-CVE

[OE-core] [PATCH 1/1] openssh: upgrade to 7.4p1

2017-01-19 Thread Dengke Du
Signed-off-by: Dengke Du --- .../openssh/add-test-support-for-busybox.patch | 69 -- .../openssh/openssh/fix-CVE-2016-8858.patch| 39 ...ial-signed-overflow-in-pointer-arithmatic.patch | 67 ++--- ...h-7.1p1-conditional-compile-des-in

Re: [OE-core] [PATCH 1/1] openssh: upgrade to 7.4p1

2017-01-19 Thread Dengke Du
anuary 2017 at 09:50, Dengke Du <mailto:dengke...@windriver.com>> wrote: --- a/meta/recipes-connectivity/openssh/openssh/add-test-support-for-busybox.patch +++ /dev/null @@ -1,69 +0,0 @@ -Adjust test cases to work with busybox. - -- Replace dd parameter "ob

Re: [OE-core] [PATCH 1/1] openssh: upgrade to 7.4p1

2017-01-19 Thread Dengke Du
ch: On 19 January 2017 at 09:50, Dengke Du mailto:dengke...@windriver.com>> wrote: --- a/meta/recipes-connectivity/openssh/openssh/add-test-support-for-busybox.patch +++ /dev/null @@ -1,69 +0,0 @@ -Adjust test cases to work with busybox.

[OE-core] [PATCH V2 1/1] openssh: upgrade to 7.4p1

2017-01-21 Thread Dengke Du
1. Drop CVE patch: fix-CVE-2016-8858.patch, because the version 7.4p1 have been fixed it. 2. Rebase the remaining patchs on the version 7.4p1. Signed-off-by: Dengke Du --- .../openssh/openssh/fix-CVE-2016-8858.patch| 39 -- ...h-7.1p1-conditional-compile-des-in

[OE-core] [PATCH V2 0/1] openssh: upgrade to 7.4p1

2017-01-21 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/openssh-upgrade-to-7.4p1 Dengke Du (1): openssh: upgrade to 7.4p1 .../openssh/openssh/fix-CVE-2016-8858.patch| 39 -- ...h-7.1p1-conditional-compile-des-in-cipher.patch | 39

[OE-core] [PATCH 0/1] dosfstools: upgrade to 4.1

2017-02-05 Thread Dengke Du
://cgit.openembedded.org/openembedded-core-contrib/log/?h=dengke/dosfstools-upgrade-to-4.1 Dengke Du (1): dosfstools: upgrade to 4.1 .../dosfstools/{dosfstools_4.0.bb => dosfstools_4.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/dosfsto

[OE-core] [PATCH 1/1] dosfstools: upgrade to 4.1

2017-02-05 Thread Dengke Du
upgrade dosfstools from 4.0 to 4.1 Signed-off-by: Dengke Du --- .../dosfstools/{dosfstools_4.0.bb => dosfstools_4.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/dosfstools/{dosfstools_4.0.bb => dosfstools_4.1.bb} (86%) diff -

[OE-core] [PATCH 1/1] ltp: upgrade to 20170116

2017-02-09 Thread Dengke Du
m executes do_install function. Signed-off-by: Dengke Du --- .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 36 ++ .../ltp/0001-ltp-Don-t-link-against-libfl.patch| 30 -- ...TH_MAX-undeclared-when-building-with-musl.patch | 30 ++ ...sendfile-Use-off64_t-instead-of-__off64_t.p

[OE-core] [PATCH 0/1] ltp: upgrade to 20170116

2017-02-09 Thread Dengke Du
/openembedded-core-contrib/log/?h=dengke/ltp-upgrade-to-20170116 Dengke Du (1): ltp: upgrade to 20170116 .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 36 ++ .../ltp/0001-ltp-Don-t-link-against-libfl.patch| 30 -- ...TH_MAX-undeclared-when-building-with-musl.patch | 30

[OE-core] [PATCH V2 1/1] ltp: upgrade to 20170116

2017-02-09 Thread Dengke Du
m executes do_install function. Signed-off-by: Dengke Du --- .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp/0001-ltp-Don-t-link-against-libfl.patch| 30 -- ...TH_MAX-undeclared-when-building-with-musl.patch | 30 ++ ...sendfile-Use-off64_t-instead-of-__off64_t.p

[OE-core] [PATCH V2 0/1] ltp: upgrade to 20170116

2017-02-09 Thread Dengke Du
://git.openembedded.org/openembedded-core-contrib dengke/ltp-upgrade-to-20170116 http://cgit.openembedded.org/openembedded-core-contrib/log/?h=dengke/ltp-upgrade-to-20170116 Dengke Du (1): ltp: upgrade to 20170116 .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp/0001-ltp-Don-t-link-against

[OE-core] [PATCH V3 0/1] ltp: upgrade to 20170116

2017-02-09 Thread Dengke Du
ade-to-20170116-new Dengke Du (1): ltp: upgrade to 20170116 .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp/0001-ltp-Don-t-link-against-libfl.patch| 30 -- ...TH_MAX-undeclared-when-building-with-musl.patch | 30 ++ ...sendfile-Use-off64_t-instead-of-__off6

[OE-core] [PATCH V3 1/1] ltp: upgrade to 20170116

2017-02-09 Thread Dengke Du
m executes do_install function. Signed-off-by: Dengke Du --- .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp/0001-ltp-Don-t-link-against-libfl.patch| 30 -- ...TH_MAX-undeclared-when-building-with-musl.patch | 30 ++ ...sendfile-Use-off64_t-instead-of-__off64_t.p

Re: [OE-core] [PATCH V3 0/1] ltp: upgrade to 20170116

2017-02-19 Thread Dengke Du
Ping. On 2017年02月10日 13:29, Dengke Du wrote: Changed in V3: Add the runtime depends packages: "unzip gzip cpio cronie logrotate which at" according to Yi zhao's suggestion. Changed in V2: Add Upstream-Status for 0001-add-_GNU_SOURCE-to-pec_listener.c.patch

[OE-core] [PATCH V4 0/1] ltp: upgrade to 20170116

2017-02-20 Thread Dengke Du
/ltp-upgrade-to-20170116 http://cgit.openembedded.org/openembedded-core-contrib/log/?h=dengke/ltp-upgrade-to-20170116 Dengke Du (1): ltp: upgrade to 20170116 .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp/0001-ltp-Don-t-link-against-libfl.patch| 30 -- ...TH_MAX-

[OE-core] [PATCH V4 1/1] ltp: upgrade to 20170116

2017-02-20 Thread Dengke Du
. The new version of ltp add the checking for ksh and csh, we doesn't support ksh and csh in oe-core, so remove the checking files when the system executes do_install function. Signed-off-by: Dengke Du --- .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp/0001-ltp-

[OE-core] [PATCH 0/1] ncurses: 5.9 0 -> 6.0

2016-01-14 Thread Dengke Du
/poky-contrib/log/?h=dengke/upgrade-ncurses Dengke Du (1): ncurses: 5.9 0 -> 6.0 .../recipes-core/ncurses/{ncurses-5.9 => ncurses-6.0}/config.cache | 0 .../ncurses/{ncurses-5.9 => ncurses-6.0}/tic-hang.patch| 0 meta/recipes-core/ncurses/ncurses.inc

[OE-core] [PATCH 1/1] ncurses: 5.9 0 -> 6.0

2016-01-14 Thread Dengke Du
To be compatible with ncurses 5, add option '--with-abi-version=5' to EXTRA_OECONF Signed-off-by: Dengke Du --- .../recipes-core/ncurses/{ncurses-5.9 => ncurses-6.0}/config.cache | 0 .../ncurses/{ncurses-5.9 => ncurses-6.0}/tic-hang.patch| 0 meta/recipes-core/ncu

[OE-core] [PATCH 0/1] ncurses: 5.9 0 -> 6.0

2016-01-14 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/upgrade-ncurses Dengke Du (1): ncurses: 5.9 0 -> 6.0 .../recipes-core/ncurses/{ncurses-5.9 => ncurses-6.0}/config.cache | 0 .../ncurses/{ncurses-5.9 => ncurses-6.0}/tic-hang.patch| 0 meta/recipes-core/ncurses/nc

[OE-core] [PATCH 1/1] ncurses: 5.9 0 -> 6.0

2016-01-14 Thread Dengke Du
To be compatible with ncurses 5, add option '--with-abi-version=5' to EXTRA_OECONF Signed-off-by: Dengke Du --- .../recipes-core/ncurses/{ncurses-5.9 => ncurses-6.0}/config.cache | 0 .../ncurses/{ncurses-5.9 => ncurses-6.0}/tic-hang.patch| 0 meta/recipes-core/ncu

[OE-core] [PATCH 0/1] ncurses: drop the compatible option

2016-01-20 Thread Dengke Du
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/ncurses_drop_compatible_option Dengke Du (1): ncurses: drop the compatible option meta/recipes-core/ncurses/ncurses.inc| 10 +- meta/recipes-core/ncurses/ncurses_6.0.bb | 1 - 2 files changed, 5 insertions

[OE-core] [PATCH 1/1] ncurses: drop the compatible option

2016-01-20 Thread Dengke Du
drop the compatible option --with-abi-version=5 Signed-off-by: Dengke Du --- meta/recipes-core/ncurses/ncurses.inc| 10 +- meta/recipes-core/ncurses/ncurses_6.0.bb | 1 - 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta

[OE-core] [PATCH 0/1] cracklib: Apply patch to fix CVE-2016-6318

2016-09-23 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/cracklib-fix-CVE-2016-6318 Dengke Du (1): cracklib: Apply patch to fix CVE-2016-6318 .../0001-Apply-patch-to-fix-CVE-2016-6318.patch| 105 + meta/recipes-extended/cracklib/cracklib_2.9.5.bb | 1 + 2

[OE-core] [PATCH 1/1] cracklib: Apply patch to fix CVE-2016-6318

2016-09-23 Thread Dengke Du
Fix CVE-2016-6318 Backport from cracklib upstream: https://github.com/cracklib/cracklib/commit/47e5dec521ab6243c9b249dd65b93d232d90d6b1 Signed-off-by: Dengke Du --- .../0001-Apply-patch-to-fix-CVE-2016-6318.patch| 105 + meta/recipes-extended/cracklib/cracklib_2.9.5.bb

[OE-core] [PATCH 1/1] rng-tools: add systemd service file

2016-09-29 Thread Dengke Du
Add systemd service file for rng-tools. Signed-off-by: Dengke Du --- meta/recipes-support/rng-tools/rng-tools/rngd.service | 9 + meta/recipes-support/rng-tools/rng-tools_5.bb | 14 -- 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 meta

[OE-core] [PATCH 0/1] rng-tools: add systemd service file

2016-09-29 Thread Dengke Du
-rng_tools http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/add-systemd-service-for-rng_tools Dengke Du (1): rng-tools: add systemd service file meta/recipes-support/rng-tools/rng-tools/rngd.service | 9 + meta/recipes-support/rng-tools/rng-tools_5.bb

Re: [OE-core] [PATCH 1/1] rng-tools: add systemd service file

2016-10-27 Thread Dengke Du
Ping. // Dengke On 2016年09月30日 13:05, Dengke Du wrote: Add systemd service file for rng-tools. Signed-off-by: Dengke Du --- meta/recipes-support/rng-tools/rng-tools/rngd.service | 9 + meta/recipes-support/rng-tools/rng-tools_5.bb | 14 -- 2 files changed

[OE-core] [PATCH 0/1] fix "svnadmin create" fail on x86

2016-11-02 Thread Dengke Du
-create-fail http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-svnadmin-create-fail Dengke Du (1): fix "svnadmin create" fail on x86 .../0001-fix-svnadmin-create-fail-on-x86.patch | 56 ++ .../subversion/subversio

[OE-core] [PATCH 1/1] fix "svnadmin create" fail on x86

2016-11-02 Thread Dengke Du
to apr, but in apr source code file apr_snprintf.c the function apr_vformatter meet "lld", it would use the: i_quad = va_arg(ap, apr_int64_t); It uses the apr_int64_t to deal data, it read 8 bytes, so the follow-up data may be error. Signed-off-by: Dengke Du --- .../0001-fix-sv

[OE-core] [PATCH 1/1] trace-cmd: fix QA warning

2016-11-04 Thread Dengke Du
Add PACKAGECONFIG for audit. Signed-off-by: Dengke Du --- meta/recipes-kernel/trace-cmd/trace-cmd_git.bb | 4 1 file changed, 4 insertions(+) diff --git a/meta/recipes-kernel/trace-cmd/trace-cmd_git.bb b/meta/recipes-kernel/trace-cmd/trace-cmd_git.bb index dd9a8a0..05f5f9a 100644 --- a

[OE-core] [PATCH 0/1] trace-cmd: fix QA warning

2016-11-04 Thread Dengke Du
-trace_cmd-QA-warning http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-trace_cmd-QA-warning Dengke Du (1): trace-cmd: fix QA warning meta/recipes-kernel/trace-cmd/trace-cmd_git.bb | 4 1 file changed, 4 insertions(+) -- 2.7.4

[OE-core] [PATCH 0/1] archiver.bbclass: fix can't create diff tarball

2016-11-23 Thread Dengke Du
-diff-tarball http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-can-not-create-diff-tarball Dengke Du (1): archiver.bbclass: fix can't create diff tarball meta/classes/archiver.bbclass | 1 + 1 file changed, 1 insertion(+) --

[OE-core] [PATCH 1/1] archiver.bbclass: fix can't create diff tarball

2016-11-23 Thread Dengke Du
esn't exit. So we should add the bb.utils.mkdirhier(ar_outdir) to function create_diff_gz in archiver.bbclass. Signed-off-by: Dengke Du --- meta/classes/archiver.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass

[OE-core] [PATCH 0/2] archiver.bbclass: fix some errors for do_ar_original and do_ar_recipe

2016-12-06 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=ddk/fix-some-error-for-archiver-bbclass Dengke Du (2): archiver.bbclass: fix do_ar_original error for matchbox-desktop archiver.bbclass: fix do_ar_recipe error for bonnie++ and libsigc++-2.0 meta/classes/archiver.bbclass | 21

[OE-core] [PATCH 2/2] archiver.bbclass: fix do_ar_recipe error for bonnie++ and libsigc++-2.0

2016-12-06 Thread Dengke Du
When recipes name contains regular expression special characters, such as "++", in this case, the re.compile function in do_ar_recipe can't recognize it, so we should associate with re.escape to recognize the special characters in pattern. Signed-off-by: Dengke Du --

[OE-core] [PATCH 1/2] archiver.bbclass: fix do_ar_original error for matchbox-desktop

2016-12-06 Thread Dengke Du
tarball, for example: In matchbox-desktop bb file, the SRC_URI contains: file://vfloders/* We set "name" to "vfolders" to identify the created tarball. In connman-gnome bb file, the SRC_URI contains: file://images/* We set "name" to "images"

[OE-core] [PATCH 0/1] coreutils: correct the case for class-native

2016-04-05 Thread Dengke Du
/correct_the_case_for_class-native http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/correct_the_case_for_class-native Dengke Du (1): coreutils: correct the case for class-native meta/recipes-core/coreutils/coreutils_8.25.bb | 4 1 file changed, 4 insertions(+) -- 1.9.1

[OE-core] [PATCH 1/1] coreutils: correct the case for class-native

2016-04-05 Thread Dengke Du
The function of do_install_append_class-native for class-native had alread exist,so exclude the class-native in function do_install_append. Signed-off-by: Dengke Du --- meta/recipes-core/coreutils/coreutils_8.25.bb | 4 1 file changed, 4 insertions(+) diff --git a/meta/recipes-core

[OE-core] [PATCH 0/1] bash: fix run-builtins

2016-04-18 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-bash-ptest-run-builtins Dengke Du (1): bash: fixed run-builtins fail .../bash/bash/fix-run-builtins.patch | 25 ++ meta/recipes-extended/bash/bash_4.3.30.bb | 1 + 2 files

[OE-core] [PATCH 1/1] bash: fixed run-builtins fail

2016-04-18 Thread Dengke Du
tem include the locales "en_US.UTF-8", such as we add the following to the local.conf: IMAGE_LINGUAS_append = " en-us" Signed-off-by: Dengke Du --- .../bash/bash/fix-run-builtins.patch | 25 ++ meta/recipes-extended/bash/bash_4.3.30.b

[OE-core] [PATCHv2 1/1] bash: fixed ptest run-builtins failed

2016-04-19 Thread Dengke Du
hat contain: LC_ALL=en_US.UTF-8 such as add the following to the local.conf: IMAGE_LINGUAS_append = " en-us" Signed-off-by: Dengke Du --- .../bash/bash/fix-run-builtins.patch | 33 ++ meta/recipes-extended/bash/bash_4.3.30.bb

[OE-core] [PATCHv2 0/1] bash: fixed ptest run-builtins failed

2016-04-19 Thread Dengke Du
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fixed-bash-ptest-run-builtins-failed Dengke Du (1): bash: fixed ptest run-builtins failed .../bash/bash/fix-run-builtins.patch | 33 ++ meta/recipes-extended/bash/bash_4.3.30.bb

[OE-core] [PATCH 0/1] lttng-tools: filter random filename of ptest output

2016-04-29 Thread Dengke Du
-output http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/filter-lttng-tools-ptest-output Dengke Du (1): lttng-tools: filter random filename of ptest output ...ls-filter-random-filename-of-tests-output.patch | 55 ++ meta/recipes-kernel/lttng

[OE-core] [PATCH 1/1] lttng-tools: filter random filename of ptest output

2016-04-29 Thread Dengke Du
:... unit_tests statistics total pass: 133 tests passed! total fail: 5 tests failed! ... FAIL:... fast_regression statistics total pass: 1904 tests passed! total fail: 202 tests failed! Signed-off-by: Dengke Du --- ...ls-filter-random-filename-of-tests-output.patch | 55 ++ meta

[OE-core] [PATCH 0/1] pTest-strace fail fixed

2016-02-22 Thread Dengke Du
-strace-fail-fixed http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/pTest-strace-fail-fixed Dengke Du (1): pTest-strace fails fixed meta/recipes-devtools/strace/strace_4.11.bb | 1 + 1 file changed, 1 insertion(+) -- 1.9.1

[OE-core] [PATCH 1/1] pTest-strace fails fixed

2016-02-22 Thread Dengke Du
able srcdir, replace the strace-* to ptest when do the do_install_ptest() function using the following: sed -i -e '/^src/s/strace.*[1-9]/ptest/' ${D}/${PTEST_PATH}/${TESTDIR}/Makefile Signed-off-by: Dengke Du --- meta/recipes-devtools/strace/strace_4.11.bb | 1 + 1 file changed

[OE-core] [PATCH 0/1] pTest-tcl fail fixed

2016-03-01 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/pTest-tcl-fail-fixed Dengke Du (1): pTest-tcl fail fixed meta/recipes-core/initscripts/initscripts-1.0/hostname.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1

[OE-core] [PATCH 1/1] pTest-tcl fail fixed

2016-03-01 Thread Dengke Du
ripts/initscripts-1.0/", when the system invoke the hostname.sh in "/etc/init.d/", it add the IP and hostname pair in the /etc/hosts. Signed-off-by: Dengke Du --- meta/recipes-core/initscripts/initscripts-1.0/hostname.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[OE-core] [PATCH 0/1] quilt: fix ptest faildiff.test failed

2016-03-08 Thread Dengke Du
/openembedded-core-contrib/log/?h=dengke/pTest-quilt-fail-fixed Dengke Du (1): quilt: fix ptest faildiff.test failed meta/recipes-devtools/quilt/quilt/run-ptest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 -- ___ Openembedded

[OE-core] [PATCH 1/1] quilt: fix ptest faildiff.test failed

2016-03-08 Thread Dengke Du
evtools/quilt/quilt/run-ptest", when it meet the faildiff.test it skipped. I will report this bug to quilt upstream. Signed-off-by: Dengke Du --- meta/recipes-devtools/quilt/quilt/run-ptest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/quilt/qu

[OE-core] [PATCH 0/1] nativesdk-coreutils: a lot of warnings fixed

2016-03-15 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/nativesdk-coreutils_many_warnings_fixed Dengke Du (1): nativesdk-coreutils: a lot of warnings fixed meta/recipes-core/coreutils/coreutils_8.25.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 1.9.1

[OE-core] [PATCH 1/1] nativesdk-coreutils: a lot of warnings fixed

2016-03-15 Thread Dengke Du
should add the do_install for the nativesdk, change the function do_install_append_class-target() to do_install_append() in the file: meta/recipes-core/coreutils/coreutils_8.25.bb in this way, the alternative system can find the files, the warnings disappear. Signed-off-by: Dengke Du --- me

[OE-core] [PATCH 0/1] pTest-tcl fail fixed

2016-03-16 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/pTest-tcl-fail-fixed Dengke Du (1): pTest-tcl fail fixed meta/recipes-core/netbase/netbase_5.3.bb | 1 + 1 file changed, 1 insertion(+) -- 1.9.1 -- ___ Openembedded-core mailing list

[OE-core] [PATCH 1/1] pTest-tcl fail fixed

2016-03-16 Thread Dengke Du
rrect,add it at build time, add the following command: "sed -i '1s/$/${MACHINE}/' ${WORKDIR}/hosts" in do_install() function in the file meta/recipes-core/netbase/netbase_5.3.bb Signed-off-by: Dengke Du --- meta/recipes-core/netbase/netbase_5.3.bb | 1 + 1 file changed

[OE-core] [PATCH 1/1] pTest-quilt: pTest-quilt failed fixed

2016-03-23 Thread Dengke Du
st which collect all the test case under the directory /usr/lib/quilt/ptest/ on the target to 777. Because the test case would write this directory, if the user is test user, it can't write this directory. Signed-off-by: Dengke Du --- meta/recipes-devtools/quilt/quilt.inc | 9 +++--

[OE-core] [PATCH 0/1] pTest-quilt: pTest-quilt failed fixed

2016-03-23 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=ptest-quilt Dengke Du (1): pTest-quilt: fixed the quilt ptest fail meta/recipes-devtools/quilt/quilt.inc | 9 +++-- meta/recipes-devtools/quilt/quilt/run-ptest | 3 ++- meta/recipes-devtools/quilt/quilt/test.sh | 1 + 3 files

[OE-core] [PATCH 1/1] quilt: run ptest as normal user

2016-03-25 Thread Dengke Du
led on file 'test.txt', aborting But when the user is root, we can access the file, so we got the following: > Nothing in patch patchs/test.diff So the faildiff.test was failed. We should create a normal user to run the ptest in the run-ptest scripts to slove the problem. S

[OE-core] [PATCH 0/1] quilt: run ptest as normal user

2016-03-25 Thread Dengke Du
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/quilt-ptest-fail-fixed Dengke Du (1): quilt: run ptest as normal user meta/recipes-devtools/quilt/quilt.inc | 4 +++- meta/recipes-devtools/quilt/quilt/run-ptest | 5 - meta/recipes-devtools/quilt/quilt

Re: [OE-core] [PATCH V4 1/1] ltp: upgrade to 20170116

2017-02-21 Thread Dengke Du
This is because the ltp source code adds a new function "SAFE_FILE_PRINTF" in the version 20170116 of ltp, in function "SAFE_FILE_PRINTF", the third arguments need a format string, but in fchmodat01.c, at the line of 130: SAFE_FILE_PRINTF(cleanup, testfile, testfile) it passed the same as t

[OE-core] [PATCH V5 1/1] ltp: upgrade to 20170116

2017-02-22 Thread Dengke Du
m executes do_install function. Signed-off-by: Dengke Du --- .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp/0001-ltp-Don-t-link-against-libfl.patch| 30 -- ...TH_MAX-undeclared-when-building-with-musl.patch | 30 ++ ...sendfile-Use-off64_t-instead-of-__off64_t.patch | 31 --

[OE-core] [PATCH V5 0/1] ltp: upgrade to 20170116

2017-02-22 Thread Dengke Du
tory at: git://git.openembedded.org/openembedded-core-contrib dengke/ltp-upgrade-to-20170116 http://cgit.openembedded.org/openembedded-core-contrib/log/?h=dengke/ltp-upgrade-to-20170116 Dengke Du (1): ltp: upgrade to 20170116 .../0001-add-_GNU_SOURCE-to-pec_listener.c.patch | 39 ++ .../ltp

[OE-core] Yocto Bug#10456 discuss

2017-02-24 Thread Dengke Du
Hi Jussi and bruce Yocto Bug#10456: X can not launch on qemumips64 I find the kernel 4.4 is ok, and on the latest 4.9 is ok, but on kernel 4.8 is failed. This is because this commit in linux-yocto-4.8: ~~ commit d03516df837587368fc6e75591f6329c072

[OE-core] [PATCH 0/1] delete the extra varflag set for autotools_copy_aclocals

2017-03-01 Thread Dengke Du
-autotools_copy_aclocals http://cgit.openembedded.org/openembedded-core-contrib/log/?h=dengke/del-extra-varflag-for-autotools_copy_aclocals Dengke Du (1): delete the extra varflag set for autotools_copy_aclocals meta/classes/autotools.bbclass | 1 - 1 file changed, 1 deletion(-) -- 2.8.1

[OE-core] [PATCH 1/1] delete the extra varflag set for autotools_copy_aclocals

2017-03-01 Thread Dengke Du
The autotools_copy_aclocals has been droped, so the varflag set for that should be removed. Signed-off-by: Dengke Du --- meta/classes/autotools.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index da5ec27..d494734

[OE-core] [PATCH V2 1/1] autotools.bbclass: delete the extra varflag set for autotools_copy_aclocals

2017-03-01 Thread Dengke Du
The autotools_copy_aclocals has been droped, so the varflag set for that should be removed. Signed-off-by: Dengke Du --- meta/classes/autotools.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index da5ec27..d494734

[OE-core] [PATCH V2 0/1] autotools.bbclass: delete the extra varflag set for autotools_copy_aclocals

2017-03-01 Thread Dengke Du
-autotools_copy_aclocals http://cgit.openembedded.org/openembedded-core-contrib/log/?h=dengke/del-extra-varflag-set-for-autotools_copy_aclocals Dengke Du (1): autotools.bbclass: delete the extra varflag set for autotools_copy_aclocals meta/classes/autotools.bbclass | 1 - 1 file changed, 1 deletion

[OE-core] [PATCH] openssh: upgrade to 7.5p1

2017-04-10 Thread Dengke Du
Signed-off-by: Dengke Du --- .../openssh/{openssh_7.4p1.bb => openssh_7.5p1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-connectivity/openssh/{openssh_7.4p1.bb => openssh_7.5p1.bb} (97%) diff --git a/meta/recipes-connectivity/o

Re: [OE-core] [PATCH] openssh: upgrade to 7.5p1

2017-04-16 Thread Dengke Du
Ping. On 2017年04月11日 10:01, Dengke Du wrote: Signed-off-by: Dengke Du --- .../openssh/{openssh_7.4p1.bb => openssh_7.5p1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-connectivity/openssh/{openssh_7.4p1.bb => openssh_7.5p1.b

Re: [OE-core] [PATCH] openssh: upgrade to 7.5p1

2017-04-16 Thread Dengke Du
Sorry for my rude. On 2017年04月17日 14:43, Richard Purdie wrote: On Mon, 2017-04-17 at 12:37 +0800, Dengke Du wrote: Ping. We do not take upgrades after feature freeze when we're stabilising unless there is a pressing reason to do so. Your commit messages makes no mention of any pre

[OE-core] [PATCH 0/1] lsbtest: add option --ignoreos to rpm install command

2017-04-20 Thread Dengke Du
//tree/dengke/LSB_Test Dengke Du (1): lsbtest: add option --ignoreos to rpm install command meta/recipes-extended/lsb/lsbtest/LSB_Test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 2.7.4 -- ___ Openembedded-core mailing list

[OE-core] [PATCH 1/1] lsbtest: add option --ignoreos to rpm install command

2017-04-20 Thread Dengke Du
e logs, this is because the above test rpm packages didn't install. [YOCTO #11224] Signed-off-by: Dengke Du --- meta/recipes-extended/lsb/lsbtest/LSB_Test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh b/meta/recipes-

[OE-core] [PATCH 0/1] LSB: 4.1.0 -> 5.0

2016-07-20 Thread Dengke Du
sitory at: git://git.openembedded.org/openembedded-core-contrib dengke/LSB_Update_to_5.0 http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/LSB_Update_to_5.0 Dengke Du (1): LSB: 4.1.0 -> 5.0 meta/recipes-extended/lsb/lsbtest/LSB_Test.sh | 3 +- meta/recipes

[OE-core] [PATCH 1/1] LSB: 4.1.0 -> 5.0

2016-07-20 Thread Dengke Du
and delete the test session. 2. Update the test packages. Signed-off-by: Dengke Du --- meta/recipes-extended/lsb/lsbtest/LSB_Test.sh | 3 +- meta/recipes-extended/lsb/lsbtest/packages_list| 57 +++--- meta/recipes-extended/lsb/lsbtest/session | 9

[OE-core] [PATCH 0/2] perf: enable man pages for 'help' functionality

2016-07-26 Thread Dengke Du
-for-perf http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/enable-help-man-pages-for-perf Dengke Du (2): Asciidoc: add it perf: enable man pages for 'help' functionality meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb | 20 me

[OE-core] [PATCH 1/2] Asciidoc: add it

2016-07-26 Thread Dengke Du
In order to enable perf man pages for basic 'help' functionality, it needs to produce man pages for perf, which depends on the xmlto and asciidoc tools. So add the asciidoc recipe to help produce man pages for perf and other commands. Signed-off-by: Dengke Du --- meta/recipes-extende

[OE-core] [PATCH 2/2] perf: enable man pages for 'help' functionality

2016-07-26 Thread Dengke Du
When using 'perf help ', it can't find 'man' command and pages for perf. The perf man pages depends on the xmlto-native and asciidoc-native, so we just need to add the two packages to the DEPENDS variable and add 'man'to RDEPENDS_perf-doc. Signed-off-by: Dengk

[OE-core] [PATCH 1/1] bash: fix run-intl ptest failed

2016-08-07 Thread Dengke Du
d to change locales to accomplish. So you need add the following to a conf file: IMAGE_LINGUAS = "en-us fr-fr de-de" Signed-off-by: Dengke Du --- meta/recipes-extended/bash/bash/fix-run-intl.patch | 116 + meta/recipes-extended/bash/bash_4.3.30.bb

[OE-core] [PATCH 0/1] bash: fix run-intl ptest failed

2016-08-07 Thread Dengke Du
-intl-failed http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-bash-ptest-run-intl-failed Dengke Du (1): bash: fix run-intl ptest failed meta/recipes-extended/bash/bash/fix-run-intl.patch | 116 + meta/recipes-extended/bash/bash_4.3.30.bb

[OE-core] [PATCH V2 0/1] bash: fix run-intl ptest failed

2016-08-11 Thread Dengke Du
-intl-failed http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-bash-ptest-run-intl-failed Dengke Du (1): bash: fix run-intl ptest failed meta/recipes-extended/bash/bash/fix-run-intl.patch | 110 + meta/recipes-extended/bash/bash_4.3.30.bb

[OE-core] [PATCH V2 1/1] bash: fix run-intl ptest failed

2016-08-11 Thread Dengke Du
nsure the system contain fr-fr & de-de locales Some tests of intl.tests need to change locales to accomplish. So you need add the following to a conf file: IMAGE_LINGUAS = "en-us fr-fr de-de" Signed-off-by: Dengke Du --- meta/recipes-extended/bash/bash/fix-run-int

[OE-core] [PATCH V3 0/1] bash: fix run-intl ptest failed

2016-08-16 Thread Dengke Du
-intl-failed http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-bash-ptest-run-intl-failed Dengke Du (1): bash: fix run-intl ptest failed meta/recipes-extended/bash/bash/fix-run-intl.patch | 110 + meta/recipes-extended/bash/bash/run-ptest

[OE-core] [PATCH V3 1/1] bash: fix run-intl ptest failed

2016-08-16 Thread Dengke Du
anity check for locales When run the intl.tests, we need the following locales: en_US & fr_FR & de_DE So add the locales check for the intl.tests in run-ptest. Signed-off-by: Dengke Du --- meta/recipes-extended/bash/bash/fix-run-intl.patch | 110 + met

[OE-core] [PATCH 0/1] Bash: 4.3.39 -> 4.3.46

2016-08-16 Thread Dengke Du
://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/update-bash-to-4.3.46 Dengke Du (1): Bash: 4.3.39 -> 4.3.46 meta/recipes-extended/bash/bash_4.3.30.bb | 21 + 1 file changed, 21 insertions(+) -- 2.

  1   2   3   >