* [dora][PATCH 0/4] Dora backports
@ 2014-01-08 18:36 Martin Jansa
2014-01-08 18:36 ` [dora][PATCH 1/4] ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script Martin Jansa
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Martin Jansa @ 2014-01-08 18:36 UTC (permalink / raw)
To: openembedded-core
The following changes since commit e86622a932bbd0acdea67ecfb15c8b06c27353d8:
libsoup-2.4: add intltool-native to DEPENDS (2013-12-19 14:59:47 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib jansa/dora-backports2
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/dora-backports2
Martin Jansa (1):
ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script
Mike Crowe (2):
Revert "kernel.bbclass: move bundle_initramfs after
kernel_link_vmlinux"
kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix
race
Richard Purdie (1):
eglibc-initial.inc: Drop duplicate include
meta/classes/kernel.bbclass | 24 +--
meta/conf/distro/include/default-providers.inc | 2 +
meta/recipes-core/eglibc/eglibc-initial.inc | 2 -
...tests_noltp.sh-script-so-have-unique-name.patch | 202 +++++++++++++++++++++
meta/recipes-extended/ltp/ltp_20130503.bb | 4 +-
5 files changed, 219 insertions(+), 15 deletions(-)
create mode 100644 meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch
--
1.8.5.2
^ permalink raw reply [flat|nested] 8+ messages in thread* [dora][PATCH 1/4] ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script 2014-01-08 18:36 [dora][PATCH 0/4] Dora backports Martin Jansa @ 2014-01-08 18:36 ` Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 2/4] eglibc-initial.inc: Drop duplicate include Martin Jansa ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Martin Jansa @ 2014-01-08 18:36 UTC (permalink / raw) To: openembedded-core From: Martin Jansa <martin.jansa@gmail.com> * ltp installs 2 different runtests_noltp.sh files from different directories into /opt/ltp/testcases/bin/runtests_noltp.sh last one installed wins and causes unexpected changes in buildhistory's files-in-image.txt report, rename them to have unique name as other ltp scripts have. * also define PREFERRED_PROVIDER to resolve note shown when building with meta-oe layer: NOTE: multiple providers are available for ltp (ltp, ltp-ddt) NOTE: consider defining a PREFERRED_PROVIDER entry to match ltp * use patch generated without -M in my builds both versions worked, but Saul reported that it fails to apply with: Applying patch 0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch patch: **** Only garbage was found in the patch input. Now I've see the same issue on different builder (with Ubuntu 12.04). Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta/conf/distro/include/default-providers.inc | 2 + ...tests_noltp.sh-script-so-have-unique-name.patch | 202 +++++++++++++++++++++ meta/recipes-extended/ltp/ltp_20130503.bb | 4 +- 3 files changed, 207 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch diff --git a/meta/conf/distro/include/default-providers.inc b/meta/conf/distro/include/default-providers.inc index d4b9db0..e2b0892 100644 --- a/meta/conf/distro/include/default-providers.inc +++ b/meta/conf/distro/include/default-providers.inc @@ -43,3 +43,5 @@ PREFERRED_PROVIDER_udev ?= "${@base_contains('DISTRO_FEATURES','systemd','system # There are issues with runtime packages and PREFERRED_PROVIDER, see YOCTO #5044 for details # on this rather strange entry. PREFERRED_PROVIDER_bluez4 ?= "bluez4" +# Alternative is ltp-ddt in meta-oe: meta-oe/recipes-devtools/ltp-ddt/ltp-ddt_0.0.4.bb +PREFERRED_PROVIDER_ltp ?= "ltp" diff --git a/meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch b/meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch new file mode 100644 index 0000000..1b4d232 --- /dev/null +++ b/meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch @@ -0,0 +1,202 @@ +From 9751a6526cffcdf4e3dc2cb33641259a7be00e19 Mon Sep 17 00:00:00 2001 +From: Martin Jansa <Martin.Jansa@gmail.com> +Date: Sat, 7 Dec 2013 18:24:32 +0100 +Subject: [PATCH] Rename runtests_noltp.sh script so have unique name + +* they are installed in the same target path + /opt/ltp/testcases/bin/runtests_noltp.sh + and overwrite each other in non-deterministic way + when multiple processes are used in "make install" + + ./temp/log.do_install:install -m 00775 + "ltp/20120903-r2/ltp-20120903/testcases/kernel/containers/sysvipc/runtests_noltp.sh" + "ltp/20120903-r2/image/opt/ltp/testcases/bin/runtests_noltp.sh" + ./temp/log.do_install:install -m 00775 + "ltp/20120903-r2/ltp-20120903/testcases/kernel/containers/utsname/runtests_noltp.sh" + "ltp/20120903-r2/image/opt/ltp/testcases/bin/runtests_noltp.sh" + +Upstream-Status: Pending + +Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> +--- + .../kernel/containers/sysvipc/runipctests_noltp.sh | 31 ++++++++++++++++ + .../kernel/containers/sysvipc/runtests_noltp.sh | 31 ---------------- + .../kernel/containers/utsname/runtests_noltp.sh | 41 ---------------------- + .../kernel/containers/utsname/runutstests_noltp.sh | 41 ++++++++++++++++++++++ + 4 files changed, 72 insertions(+), 72 deletions(-) + create mode 100644 testcases/kernel/containers/sysvipc/runipctests_noltp.sh + delete mode 100644 testcases/kernel/containers/sysvipc/runtests_noltp.sh + delete mode 100755 testcases/kernel/containers/utsname/runtests_noltp.sh + create mode 100755 testcases/kernel/containers/utsname/runutstests_noltp.sh + +diff --git a/testcases/kernel/containers/sysvipc/runipctests_noltp.sh b/testcases/kernel/containers/sysvipc/runipctests_noltp.sh +new file mode 100644 +index 0000000..84f398f +--- /dev/null ++++ b/testcases/kernel/containers/sysvipc/runipctests_noltp.sh +@@ -0,0 +1,31 @@ ++#!/bin/sh ++################################################################################ ++## ## ++## Copyright (c) International Business Machines Corp., 2007 ## ++## ## ++## This program is free software; you can redistribute it and#or modify ## ++## it under the terms of the GNU General Public License as published by ## ++## the Free Software Foundation; either version 2 of the License, or ## ++## (at your option) any later version. ## ++## ## ++## This program is distributed in the hope that it will be useful, but ## ++## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## ++## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## ++## for more details. ## ++## ## ++## You should have received a copy of the GNU General Public License ## ++## along with this program; if not, write to the Free Software ## ++## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## ++## ## ++################################################################################ ++ ++exit_code=0 ++echo "sysvipc tests" ++for type in none clone unshare; do ++ echo "**sysvipc $type" ++ ./shmnstest_noltp $type ++ if [ $? -ne 0 ]; then ++ exit_code=$? ++ fi ++done ++exit $exit_code +diff --git a/testcases/kernel/containers/sysvipc/runtests_noltp.sh b/testcases/kernel/containers/sysvipc/runtests_noltp.sh +deleted file mode 100644 +index 84f398f..0000000 +--- a/testcases/kernel/containers/sysvipc/runtests_noltp.sh ++++ /dev/null +@@ -1,31 +0,0 @@ +-#!/bin/sh +-################################################################################ +-## ## +-## Copyright (c) International Business Machines Corp., 2007 ## +-## ## +-## This program is free software; you can redistribute it and#or modify ## +-## it under the terms of the GNU General Public License as published by ## +-## the Free Software Foundation; either version 2 of the License, or ## +-## (at your option) any later version. ## +-## ## +-## This program is distributed in the hope that it will be useful, but ## +-## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## +-## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## +-## for more details. ## +-## ## +-## You should have received a copy of the GNU General Public License ## +-## along with this program; if not, write to the Free Software ## +-## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## +-## ## +-################################################################################ +- +-exit_code=0 +-echo "sysvipc tests" +-for type in none clone unshare; do +- echo "**sysvipc $type" +- ./shmnstest_noltp $type +- if [ $? -ne 0 ]; then +- exit_code=$? +- fi +-done +-exit $exit_code +diff --git a/testcases/kernel/containers/utsname/runtests_noltp.sh b/testcases/kernel/containers/utsname/runtests_noltp.sh +deleted file mode 100755 +index 43cb7e2..0000000 +--- a/testcases/kernel/containers/utsname/runtests_noltp.sh ++++ /dev/null +@@ -1,41 +0,0 @@ +-#!/bin/sh +-################################################################################ +-## ## +-## Copyright (c) International Business Machines Corp., 2007 ## +-## ## +-## This program is free software; you can redistribute it and#or modify ## +-## it under the terms of the GNU General Public License as published by ## +-## the Free Software Foundation; either version 2 of the License, or ## +-## (at your option) any later version. ## +-## ## +-## This program is distributed in the hope that it will be useful, but ## +-## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## +-## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## +-## for more details. ## +-## ## +-## You should have received a copy of the GNU General Public License ## +-## along with this program; if not, write to the Free Software ## +-## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## +-## ## +-################################################################################ +- +-oldhostname=`hostname` +-exit_code=0 +-echo "unshare tests" +-for i in `seq 1 5`; do +- echo "test $i (unshare)" +- ./utstest_noltp unshare $i +- if [ $? -ne 0 ]; then +- exit_code=$? +- fi +-done +-echo "clone tests" +-for i in `seq 1 5`; do +- echo "test $i (clone)" +- ./utstest_noltp clone $i +- if [ $? -ne 0 ]; then +- exit_code=$? +- fi +-done +-hostname "$oldhostname" +-exit $exit_code +diff --git a/testcases/kernel/containers/utsname/runutstests_noltp.sh b/testcases/kernel/containers/utsname/runutstests_noltp.sh +new file mode 100755 +index 0000000..43cb7e2 +--- /dev/null ++++ b/testcases/kernel/containers/utsname/runutstests_noltp.sh +@@ -0,0 +1,41 @@ ++#!/bin/sh ++################################################################################ ++## ## ++## Copyright (c) International Business Machines Corp., 2007 ## ++## ## ++## This program is free software; you can redistribute it and#or modify ## ++## it under the terms of the GNU General Public License as published by ## ++## the Free Software Foundation; either version 2 of the License, or ## ++## (at your option) any later version. ## ++## ## ++## This program is distributed in the hope that it will be useful, but ## ++## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## ++## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## ++## for more details. ## ++## ## ++## You should have received a copy of the GNU General Public License ## ++## along with this program; if not, write to the Free Software ## ++## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## ++## ## ++################################################################################ ++ ++oldhostname=`hostname` ++exit_code=0 ++echo "unshare tests" ++for i in `seq 1 5`; do ++ echo "test $i (unshare)" ++ ./utstest_noltp unshare $i ++ if [ $? -ne 0 ]; then ++ exit_code=$? ++ fi ++done ++echo "clone tests" ++for i in `seq 1 5`; do ++ echo "test $i (clone)" ++ ./utstest_noltp clone $i ++ if [ $? -ne 0 ]; then ++ exit_code=$? ++ fi ++done ++hostname "$oldhostname" ++exit $exit_code +-- +1.8.4.3 + diff --git a/meta/recipes-extended/ltp/ltp_20130503.bb b/meta/recipes-extended/ltp/ltp_20130503.bb index 387826d..9e1183c 100644 --- a/meta/recipes-extended/ltp/ltp_20130503.bb +++ b/meta/recipes-extended/ltp/ltp_20130503.bb @@ -21,7 +21,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ DEPENDS = "attr libaio libcap acl openssl" -SRC_URI = "${SOURCEFORGE_MIRROR}/ltp/ltp-full-${PV}.bz2" +SRC_URI = "${SOURCEFORGE_MIRROR}/ltp/ltp-full-${PV}.bz2 \ + file://0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch \ +" SRC_URI[md5sum] = "d448d9e9731d7ef45352fc74633cc97f" SRC_URI[sha256sum] = "afdb1479e73d4da7f0d4d5d3fe1570bc5fc96e3317d4a5c10c59c046d3dfa4a0" -- 1.8.5.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [dora][PATCH 2/4] eglibc-initial.inc: Drop duplicate include 2014-01-08 18:36 [dora][PATCH 0/4] Dora backports Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 1/4] ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script Martin Jansa @ 2014-01-08 18:36 ` Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 3/4] Revert "kernel.bbclass: move bundle_initramfs after kernel_link_vmlinux" Martin Jansa ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Martin Jansa @ 2014-01-08 18:36 UTC (permalink / raw) To: openembedded-core From: Richard Purdie <richard.purdie@linuxfoundation.org> There is little point in including the file twice so lets not. The main recipe already included it. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta/recipes-core/eglibc/eglibc-initial.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-core/eglibc/eglibc-initial.inc b/meta/recipes-core/eglibc/eglibc-initial.inc index 83b1d2c..0f0e1cd 100644 --- a/meta/recipes-core/eglibc/eglibc-initial.inc +++ b/meta/recipes-core/eglibc/eglibc-initial.inc @@ -1,5 +1,3 @@ -require eglibc-common.inc - DEPENDS = "linux-libc-headers virtual/${TARGET_PREFIX}gcc-initial" PROVIDES = "virtual/${TARGET_PREFIX}libc-initial" -- 1.8.5.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [dora][PATCH 3/4] Revert "kernel.bbclass: move bundle_initramfs after kernel_link_vmlinux" 2014-01-08 18:36 [dora][PATCH 0/4] Dora backports Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 1/4] ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 2/4] eglibc-initial.inc: Drop duplicate include Martin Jansa @ 2014-01-08 18:36 ` Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 4/4] kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix race Martin Jansa 2014-01-13 2:02 ` [dora][PATCH 0/4] Dora backports Robert Yang 4 siblings, 0 replies; 8+ messages in thread From: Martin Jansa @ 2014-01-08 18:36 UTC (permalink / raw) To: openembedded-core From: Mike Crowe <mac@mcrowe.com> This reverts commit 3baa63b4d588c3262254528b406ede265dd117bf. It broke builds that aren't using kernel-yocto. Signed-off-by: Mike Crowe <mac@mcrowe.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta/classes/kernel.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 61a6d10..1374e68 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -152,7 +152,7 @@ python do_devshell_prepend () { os.environ["LDFLAGS"] = '' } -addtask bundle_initramfs after do_kernel_link_vmlinux before do_build +addtask bundle_initramfs after do_compile before do_build kernel_do_compile() { unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE -- 1.8.5.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [dora][PATCH 4/4] kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix race 2014-01-08 18:36 [dora][PATCH 0/4] Dora backports Martin Jansa ` (2 preceding siblings ...) 2014-01-08 18:36 ` [dora][PATCH 3/4] Revert "kernel.bbclass: move bundle_initramfs after kernel_link_vmlinux" Martin Jansa @ 2014-01-08 18:36 ` Martin Jansa 2014-01-13 2:02 ` [dora][PATCH 0/4] Dora backports Robert Yang 4 siblings, 0 replies; 8+ messages in thread From: Martin Jansa @ 2014-01-08 18:36 UTC (permalink / raw) To: openembedded-core From: Mike Crowe <mac@mcrowe.com> The new do_bundle_initramfs task introduced in 609d5a9ab9e58bb1c2bcc2145399fbc8b701b85a defeats using the sstate cache. The kernel is resurrected from the sstate cache but ends up being built again since do_bundle_initramfs depends on do_compile. The task is no longer nostamp to avoid causing unnecessary rebuilds. The sstate checksum stamps should know when to rebuild. The task now runs before do_deploy and part of the work has been moved to do_deploy where it now writes to ${DEPLOYDIR} rather than ${DEPLOY_DIR_IMAGE} so that the files end up in sstate. The task can also race against do_install since both call into the kernel build system. This is fixed by making do_bundle_initramfs run after do_install (which therefore also fixes the problem that 3baa63b4d588c3262254528b406ede265dd117bf was addressing.) Signed-off-by: Mike Crowe <mac@mcrowe.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta/classes/kernel.bbclass | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 1374e68..e639bd5 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -134,25 +134,14 @@ do_bundle_initramfs () { echo "There is kernel image bundled with initramfs: ${B}/${KERNEL_OUTPUT}.initramfs" install -m 0644 ${B}/${KERNEL_OUTPUT}.initramfs ${D}/boot/${KERNEL_IMAGETYPE}-initramfs-${MACHINE}.bin echo "${B}/${KERNEL_OUTPUT}.initramfs" - cd ${B} - # Update deploy directory - if [ -e "${KERNEL_OUTPUT}.initramfs" ]; then - echo "Copying deploy kernel-initramfs image and setting up links..." - initramfs_base_name=${INITRAMFS_BASE_NAME} - initramfs_symlink_name=${KERNEL_IMAGETYPE}-initramfs-${MACHINE} - install -m 0644 ${KERNEL_OUTPUT}.initramfs ${DEPLOY_DIR_IMAGE}/${initramfs_base_name}.bin - cd ${DEPLOY_DIR_IMAGE} - ln -sf ${initramfs_base_name}.bin ${initramfs_symlink_name}.bin - fi fi } -do_bundle_initramfs[nostamp] = "1" python do_devshell_prepend () { os.environ["LDFLAGS"] = '' } -addtask bundle_initramfs after do_compile before do_build +addtask bundle_initramfs after do_install before do_deploy kernel_do_compile() { unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE @@ -464,6 +453,17 @@ kernel_do_deploy() { ln -sf ${KERNEL_IMAGE_BASE_NAME}.bin ${DEPLOYDIR}/${KERNEL_IMAGETYPE} cp ${COREBASE}/meta/files/deploydir_readme.txt ${DEPLOYDIR}/README_-_DO_NOT_DELETE_FILES_IN_THIS_DIRECTORY.txt + + cd ${B} + # Update deploy directory + if [ -e "${KERNEL_OUTPUT}.initramfs" ]; then + echo "Copying deploy kernel-initramfs image and setting up links..." + initramfs_base_name=${INITRAMFS_BASE_NAME} + initramfs_symlink_name=${KERNEL_IMAGETYPE}-initramfs-${MACHINE} + install -m 0644 ${KERNEL_OUTPUT}.initramfs ${DEPLOYDIR}/${initramfs_base_name}.bin + cd ${DEPLOYDIR} + ln -sf ${initramfs_base_name}.bin ${initramfs_symlink_name}.bin + fi } do_deploy[dirs] = "${DEPLOYDIR} ${B}" do_deploy[prefuncs] += "package_get_auto_pr" -- 1.8.5.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [dora][PATCH 0/4] Dora backports 2014-01-08 18:36 [dora][PATCH 0/4] Dora backports Martin Jansa ` (3 preceding siblings ...) 2014-01-08 18:36 ` [dora][PATCH 4/4] kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix race Martin Jansa @ 2014-01-13 2:02 ` Robert Yang 2014-01-20 16:08 ` Koen Kooi 4 siblings, 1 reply; 8+ messages in thread From: Robert Yang @ 2014-01-13 2:02 UTC (permalink / raw) To: Martin Jansa, openembedded-core Hi Martin, Thank you ver much, I will merge them to dora-next. // Robert On 01/09/2014 02:36 AM, Martin Jansa wrote: > The following changes since commit e86622a932bbd0acdea67ecfb15c8b06c27353d8: > > libsoup-2.4: add intltool-native to DEPENDS (2013-12-19 14:59:47 +0000) > > are available in the git repository at: > > git://git.openembedded.org/openembedded-core-contrib jansa/dora-backports2 > http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/dora-backports2 > > Martin Jansa (1): > ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script > > Mike Crowe (2): > Revert "kernel.bbclass: move bundle_initramfs after > kernel_link_vmlinux" > kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix > race > > Richard Purdie (1): > eglibc-initial.inc: Drop duplicate include > > meta/classes/kernel.bbclass | 24 +-- > meta/conf/distro/include/default-providers.inc | 2 + > meta/recipes-core/eglibc/eglibc-initial.inc | 2 - > ...tests_noltp.sh-script-so-have-unique-name.patch | 202 +++++++++++++++++++++ > meta/recipes-extended/ltp/ltp_20130503.bb | 4 +- > 5 files changed, 219 insertions(+), 15 deletions(-) > create mode 100644 meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [dora][PATCH 0/4] Dora backports 2014-01-13 2:02 ` [dora][PATCH 0/4] Dora backports Robert Yang @ 2014-01-20 16:08 ` Koen Kooi 2014-01-21 1:13 ` Robert Yang 0 siblings, 1 reply; 8+ messages in thread From: Koen Kooi @ 2014-01-20 16:08 UTC (permalink / raw) To: Robert Yang; +Cc: OE Core (openembedded-core@lists.openembedded.org) Op 13 jan. 2014, om 03:02 heeft Robert Yang <liezhi.yang@windriver.com> het volgende geschreven: > > Hi Martin, > > Thank you ver much, I will merge them to dora-next. What's the status on these? regards, Koen > > // Robert > > On 01/09/2014 02:36 AM, Martin Jansa wrote: >> The following changes since commit e86622a932bbd0acdea67ecfb15c8b06c27353d8: >> >> libsoup-2.4: add intltool-native to DEPENDS (2013-12-19 14:59:47 +0000) >> >> are available in the git repository at: >> >> git://git.openembedded.org/openembedded-core-contrib jansa/dora-backports2 >> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/dora-backports2 >> >> Martin Jansa (1): >> ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script >> >> Mike Crowe (2): >> Revert "kernel.bbclass: move bundle_initramfs after >> kernel_link_vmlinux" >> kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix >> race >> >> Richard Purdie (1): >> eglibc-initial.inc: Drop duplicate include >> >> meta/classes/kernel.bbclass | 24 +-- >> meta/conf/distro/include/default-providers.inc | 2 + >> meta/recipes-core/eglibc/eglibc-initial.inc | 2 - >> ...tests_noltp.sh-script-so-have-unique-name.patch | 202 +++++++++++++++++++++ >> meta/recipes-extended/ltp/ltp_20130503.bb | 4 +- >> 5 files changed, 219 insertions(+), 15 deletions(-) >> create mode 100644 meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch >> > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-core > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [dora][PATCH 0/4] Dora backports 2014-01-20 16:08 ` Koen Kooi @ 2014-01-21 1:13 ` Robert Yang 0 siblings, 0 replies; 8+ messages in thread From: Robert Yang @ 2014-01-21 1:13 UTC (permalink / raw) To: Koen Kooi; +Cc: OE Core (openembedded-core@lists.openembedded.org) On 01/21/2014 12:08 AM, Koen Kooi wrote: > > > Op 13 jan. 2014, om 03:02 heeft Robert Yang <liezhi.yang@windriver.com> het volgende geschreven: > >> >> Hi Martin, >> >> Thank you ver much, I will merge them to dora-next. > > > What's the status on these? > Hi Koen, I will send out a branch with will the fixes for dora-next (1.5.2) by this week. // Robert > regards, > > Koen > >> >> // Robert >> >> On 01/09/2014 02:36 AM, Martin Jansa wrote: >>> The following changes since commit e86622a932bbd0acdea67ecfb15c8b06c27353d8: >>> >>> libsoup-2.4: add intltool-native to DEPENDS (2013-12-19 14:59:47 +0000) >>> >>> are available in the git repository at: >>> >>> git://git.openembedded.org/openembedded-core-contrib jansa/dora-backports2 >>> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/dora-backports2 >>> >>> Martin Jansa (1): >>> ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script >>> >>> Mike Crowe (2): >>> Revert "kernel.bbclass: move bundle_initramfs after >>> kernel_link_vmlinux" >>> kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix >>> race >>> >>> Richard Purdie (1): >>> eglibc-initial.inc: Drop duplicate include >>> >>> meta/classes/kernel.bbclass | 24 +-- >>> meta/conf/distro/include/default-providers.inc | 2 + >>> meta/recipes-core/eglibc/eglibc-initial.inc | 2 - >>> ...tests_noltp.sh-script-so-have-unique-name.patch | 202 +++++++++++++++++++++ >>> meta/recipes-extended/ltp/ltp_20130503.bb | 4 +- >>> 5 files changed, 219 insertions(+), 15 deletions(-) >>> create mode 100644 meta/recipes-extended/ltp/ltp/0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch >>> >> _______________________________________________ >> Openembedded-core mailing list >> Openembedded-core@lists.openembedded.org >> http://lists.openembedded.org/mailman/listinfo/openembedded-core >> > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-01-21 1:14 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-01-08 18:36 [dora][PATCH 0/4] Dora backports Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 1/4] ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 2/4] eglibc-initial.inc: Drop duplicate include Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 3/4] Revert "kernel.bbclass: move bundle_initramfs after kernel_link_vmlinux" Martin Jansa 2014-01-08 18:36 ` [dora][PATCH 4/4] kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix race Martin Jansa 2014-01-13 2:02 ` [dora][PATCH 0/4] Dora backports Robert Yang 2014-01-20 16:08 ` Koen Kooi 2014-01-21 1:13 ` Robert Yang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox