Re: [OE-core] [PATCH 0/1] Image manifest support

2013-11-27 Thread Chris Larson
On Wed, Nov 27, 2013 at 1:26 PM, Paul Eggleton < paul.eggle...@linux.intel.com> wrote: > On Wednesday 27 November 2013 12:02:41 Chris Larson wrote: > > Would you mind summarizing the differences between this and the already > > emitted image license manifest in deploy/license? > > Actually I hadn'

Re: [OE-core] [PATCH 0/1] Image manifest support

2013-11-27 Thread Paul Eggleton
Hi Chris, On Wednesday 27 November 2013 12:02:41 Chris Larson wrote: > Would you mind summarizing the differences between this and the already > emitted image license manifest in deploy/license? Actually I hadn't appreciated that there is a plain package list in that directory now in addition to

Re: [OE-core] [PATCH 0/1] Image manifest support

2013-11-27 Thread Chris Larson
Would you mind summarizing the differences between this and the already emitted image license manifest in deploy/license? On Tue, Nov 26, 2013 at 5:09 AM, Paul Eggleton < paul.eggle...@linux.intel.com> wrote: > The following change since commit 25a75e83550fab0f9d2486b13ec9ab6339b6a8b0: > > lin

[OE-core] [PATCH] icecc: Don't replace non-empty PARALLEL_MAKE with empty ICECC_PARALLEL_MAKE

2013-11-27 Thread Martin Jansa
* it's needed for use-case like this: # Inherit icecc here, so that all builders have the same sstate signatures INHERIT_DISTRO += "icecc" # and then disable its function by default (so that people still need to explicity # enable it in local.conf if they have configured icecc and want to

Re: [OE-core] [PATCH 0/4] Script and layer for running tests

2013-11-27 Thread Chris Larson
On Wed, Nov 27, 2013 at 10:08 AM, Stefan Stanacar < stefanx.stana...@intel.com> wrote: > This series adds an oe-selftest script, some modules and a new layer > meta-selftest. > which are meant to help in writing tests (using python unittest) for > various > bitbake tools/scripts as well as simple

[OE-core] [PATCH 5/7] perf: remove /usr/local/include from default makefile includes

2013-11-27 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- meta/recipes-kernel/perf/perf.bb | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index 903ffa6..4fb8956 100644 --- a/meta/recipes-ke

[OE-core] [PATCH 6/7] qemu: handle CLOEXEC/NONBLOCK if unavailable on host

2013-11-27 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- ...Handle-SOCK_CLOEXEC-NONBLOCK-if-unavailab.patch | 92 ++ meta/recipes-devtools/qemu/qemu.inc| 1 + 2 files changed, 93 insertions(+) create mode 100644 meta/recipes-devtools/qemu/files/linux

[OE-core] [PATCH 3/7] python, python-native: fix PARALLEL_MAKEINST failure

2013-11-27 Thread Christopher Larson
From: Christopher Larson When using make -j with the 'install' target, it's possible for altbininstall (which normally creates BINDIR) and libainstall (which doesn't, though it installs python-config there) to race, resulting in a failure due to attempting to install python-config into a nonexist

[OE-core] [PATCH 4/7] cairo: add/use packageconfig for valgrind support

2013-11-27 Thread Christopher Larson
From: Christopher Larson It was currently autodetecting. Signed-off-by: Christopher Larson --- meta/recipes-graphics/cairo/cairo.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-graphics/cairo/cairo.inc b/meta/recipes-graphics/cairo/cairo.inc index 2149997..5212f8b 100644

[OE-core] [PATCH 7/7] pulseaudio: fix RDEPENDS traversal for consolekit

2013-11-27 Thread Christopher Larson
From: Christopher Larson Include the console-kit module in PACKSGES explicitly so bitbake can map to the RDEPENDS we define for it in this recipe, and thereby ensure that when adding the console-kit module to an image, we also get the necessary consolekit package produced. Signed-off-by: Christo

[OE-core] Random fixes from the Mentor Graphics push queue

2013-11-27 Thread Christopher Larson
The following changes since commit f991d2d60b74f5ebd990f77aecd3324b1a4533e9: libpng: set reasonable SUMMARY (2013-11-27 11:51:08 +) are available in the git repository at: https://github.com/kergoth/oe-core.git random-fixes https://github.com/kergoth/oe-core/tree/random-fixes Christop

[OE-core] [PATCH 1/7] update-rc.d: process symlinks recursively

2013-11-27 Thread Christopher Larson
From: Christopher Larson When processing startup scripts which use update-alternatives, we need to keep resolving the symlink recursively until we hit a real file, due to the alternatives indirection. This fixes the ability to run certain postinsts at do_rootfs time, which is needed for good read

[OE-core] [PATCH 2/7] quota: apply patch to obey tcp-wrappers config

2013-11-27 Thread Christopher Larson
From: Christopher Larson Without this, the tcpwrappers argument wasn't obeyed, and as such the build wasn't as deterministic as we'd prefer. Signed-off-by: Christopher Larson --- .../quota/quota/config-tcpwrappers.patch | 75 ++ meta/recipes-extended/quota/quota_4

[OE-core] [PATCH] sstatesig.py: Fix image regeneration issue

2013-11-27 Thread Richard Purdie
With the "ABI safe" recipes, we've been excluding those from signatures. This is fine in the general case but in the specific case of image recipes it breaks. A good test case is the interfaces file. Editing this causes init-ifupdown to rebuild but not an image containing it (e.g. core-image-minim

[OE-core] [PATCH 2/4] meta-selftest: create a new test layer to be used by oe-selftest script

2013-11-27 Thread Stefan Stanacar
From: Corneliu Stoicescu Everything in this layer is meant to be used by tests called by scripts/oe-selftest. These are helper recipes/appends to test various bitbake options or scripts. Currently most of these files here only have "include test_recipe.inc" which is the file tests will actually u

[OE-core] [PATCH 4/4] lib/oeqa/selftest: add test modules for expected bitbake output and bitbake-layers

2013-11-27 Thread Stefan Stanacar
From: Corneliu Stoicescu Tests for bitbake-layers and expected output for some bitbake options. Signed-off-by: Corneliu Stoicescu Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/selftest/bblayers.py | 37 +++ meta/lib/oeqa/selftest/bbtests.py | 97 +++

[OE-core] [PATCH 0/4] Script and layer for running tests

2013-11-27 Thread Stefan Stanacar
Hello, This series adds an oe-selftest script, some modules and a new layer meta-selftest. which are meant to help in writing tests (using python unittest) for various bitbake tools/scripts as well as simple output checks or do complete builds with different options (with the emphasis that every

[OE-core] [PATCH 3/4] lib/oeqa/selftest: buildoptions.py: add simple image build tests

2013-11-27 Thread Stefan Stanacar
From: Alexandru Palalau Build images and tests different build options like RM_OLD_IMAGE and for WARN_QA/ERROR_QA behaviour. Signed-off-by: Alexandru Palalau Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/selftest/buildoptions.py | 86 ++ 1 file changed, 86 i

[OE-core] [PATCH 1/4] scripts/oe-selftest: script to run builds as unittest against bitbake or various scripts

2013-11-27 Thread Stefan Stanacar
The purpose of oe-selftest is to run unittest modules added from meta/lib/oeqa/selftest, which are tests against bitbake tools. Right now the script it's useful for simple tests like: - "bitbake --someoption, change some metadata, bitbake X, check something" type scenarios (PR service, error o

[OE-core] [PATCH] initramfs-framework: fix udev working directory creation

2013-11-27 Thread Michaƫl Burtin
udev recipe defines udev_run=/var/run/udev in udev.conf, update udev initramfs script to create /var/run directory before starting daemon. --- meta/recipes-core/initrdscripts/initramfs-framework/udev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/initrdscript

Re: [OE-core] [PATCH] module-base: Fix misleading comment

2013-11-27 Thread Khem Raj
On Wednesday, November 27, 2013, Bruce Ashfield wrote: > On 13-11-27 08:45 AM, Richard Purdie wrote: > >> The comment was originally written for module.bbclass and is now >> slightly misleading. This updates it to match the current code. >> > > Acked-by: Bruce Ashfield Looks ok > > >> Signed-o

Re: [OE-core] [PATCH] Revert "kernel: restore scripts in the sysroot"

2013-11-27 Thread Khem Raj
On Wednesday, November 27, 2013, Bruce Ashfield wrote: > On 13-11-27 08:44 AM, Richard Purdie wrote: > >> This reverts commit 6a6735cb98d529c8c5376aedb5c951339f54fe96. >> >> The module class already ensures the scripts are rebuilt correctly. >> Running >> this at sstate installation time is proble

[OE-core] [PATCH] rpcbind: Fix rpcbind restart failure when rpcbind is not running

2013-11-27 Thread zhangle.yang
From: Zhangle Yang "rpcbind restart" executes stop and then start function. However, if rpcbind is not started, "exit 0" shall be run in stop function, so start function will not be run at all. This patch changes "exit 0" to "return 0". Signed-off-by: Zhangle Yang --- meta/recipes-extended/rpc

Re: [OE-core] [PATCH 2/5] eglibc: add support for /etc/ld.so.conf.d/*.conf

2013-11-27 Thread Martin Jansa
On Wed, Nov 27, 2013 at 03:55:41PM +0800, Yue Tao wrote: > From: Ming Liu > > There are advantages in changing the contents of ld.so.conf to > "include /etc/ld.so.conf.d/*.conf" instead of directly listing directories > in it, just like most distributions are doing the same. > > Signed-off-by: M

Re: [OE-core] [PATCH] Revert "kernel: restore scripts in the sysroot"

2013-11-27 Thread Bruce Ashfield
On 13-11-27 08:44 AM, Richard Purdie wrote: This reverts commit 6a6735cb98d529c8c5376aedb5c951339f54fe96. The module class already ensures the scripts are rebuilt correctly. Running this at sstate installation time is problematic since it can require the cross compiler. Adding such a dependency

[OE-core] [PATCH] module-base: Fix misleading comment

2013-11-27 Thread Richard Purdie
The comment was originally written for module.bbclass and is now slightly misleading. This updates it to match the current code. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/module-base.bbclass b/meta/classes/module-base.bbclass index 9dbb4b4..1589a90 100644 --- a/meta/classes/modu

Re: [OE-core] [PATCH] module-base: Fix misleading comment

2013-11-27 Thread Bruce Ashfield
On 13-11-27 08:45 AM, Richard Purdie wrote: The comment was originally written for module.bbclass and is now slightly misleading. This updates it to match the current code. Acked-by: Bruce Ashfield Signed-off-by: Richard Purdie --- diff --git a/meta/classes/module-base.bbclass b/meta/class

[OE-core] [PATCH] Revert "kernel: restore scripts in the sysroot"

2013-11-27 Thread Richard Purdie
This reverts commit 6a6735cb98d529c8c5376aedb5c951339f54fe96. The module class already ensures the scripts are rebuilt correctly. Running this at sstate installation time is problematic since it can require the cross compiler. Adding such a dependency would cause issues of its own. Signed-off-by:

Re: [OE-core] [PATCH 2/2] Fix grep pattern when mklibs collects executables in rootfs

2013-11-27 Thread Nicolas Dechesne
On Wed, Nov 27, 2013 at 3:36 AM, Lei Liu wrote: > > If I revert to 0.1.34 (that we had on dylan branch), i can build my > image just fine (note that I am building an arm soft-float image), so are > you able to use image-mklibs with dora or master which have 0.1.38? > > > > Hi, > > I'm testing on

Re: [OE-core] [PATCH 2/5] eglibc: add support for /etc/ld.so.conf.d/*.conf

2013-11-27 Thread Phil Blundell
On Wed, 2013-11-27 at 15:55 +0800, Yue Tao wrote: > + else > + if [ -f ${D}${sysconfdir}/ld.so.conf ]; then > + echo 'include ld.so.conf.d/*.conf' > > ${D}${sysconfdir}/ld.so.conf > + mkdir -p ${D}${sysconfdir}/ld.so.conf.d > + fi This w

Re: [OE-core] [PATCH 1/5] file: avoid to handle special character

2013-11-27 Thread Burton, Ross
On 27 November 2013 07:55, Yue Tao wrote: > avoid to handle special character '@' in filename and directory. Please explain the problem more accurately. From looking I presume the situation here is that the sed breaks when building file-native and the build directory contains @, as ${MAGIC} is $

Re: [OE-core] [PATCH 1/5] file: avoid to handle special character

2013-11-27 Thread Richard Purdie
On Wed, 2013-11-27 at 15:55 +0800, Yue Tao wrote: > From: Li Wang > > avoid to handle special character '@' in filename and directory. > > Signed-off-by: Li Wang > --- > .../file/file/avoid_handle_special_character.patch | 36 > > meta/recipes-devtools/file/file_5.15.bb

Re: [OE-core] [PATCH 3/5] bind: add init.d/bind status command

2013-11-27 Thread Richard Purdie
On Wed, 2013-11-27 at 15:55 +0800, Yue Tao wrote: > Signed-off-by: Yue Tao > --- > .../bind-add-init-bind-status-command.patch| 45 > > meta/recipes-connectivity/bind/bind_9.8.1.bb |3 +- > 2 files changed, 47 insertions(+), 1 deletions(-) > create mode

Re: [OE-core] [PATCH 1/4] fontconfig: upgrade to 2.11.0

2013-11-27 Thread Laurentiu Palcu
On Wed, Nov 27, 2013 at 10:09:04AM +, Burton, Ross wrote: > On 27 November 2013 09:09, Laurentiu Palcu wrote: > > On Tue, Nov 26, 2013 at 07:49:19PM +, Ross Burton wrote: > >> Drop sysroot patch as a rewritten form has been accepted upstream. > > > > How did you test this? The last time I

[OE-core] [PATCH] tcl: fix version string and make recipe multilib build compatible

2013-11-27 Thread Nick D'Ademo
Explicitly set libdir in EXTRA_OECONF so that the correct library folder is generated in a multilib build. The version string (VER) has been changed to 8.6.1 and the library paths have been updated accordingly so that the related tk recipe can correctly detect tcl (this search is done using the

Re: [OE-core] [PATCH 1/4] fontconfig: upgrade to 2.11.0

2013-11-27 Thread Burton, Ross
On 27 November 2013 09:09, Laurentiu Palcu wrote: > On Tue, Nov 26, 2013 at 07:49:19PM +, Ross Burton wrote: >> Drop sysroot patch as a rewritten form has been accepted upstream. > > How did you test this? The last time I checked, their implementation was > not able to generate the cache prope

[OE-core] [PATCH] file: remove useless patches

2013-11-27 Thread rongqing.li
From: Roy Li no user uses these two patches Signed-off-by: Roy Li --- meta/recipes-devtools/file/file/ge-le.patch| 72 .../file/file/stringb-compat.patch | 31 - 2 files changed, 103 deletions(-) delete mode 100644 meta/recipes-devtools

Re: [OE-core] [PATCH 1/4] fontconfig: upgrade to 2.11.0

2013-11-27 Thread Laurentiu Palcu
Hi Ross, On Tue, Nov 26, 2013 at 07:49:19PM +, Ross Burton wrote: > Drop sysroot patch as a rewritten form has been accepted upstream. How did you test this? The last time I checked, their implementation was not able to generate the cache properly when using sysroot. Apparently they didn't b

[OE-core] [PATCH] zlib: Add ptest

2013-11-27 Thread Tudor Florea
Install zlib tests and run them as ptest Signed-off-by: Tudor Florea --- .../zlib/zlib-1.2.8/Makefile-runtests.patch| 38 meta/recipes-core/zlib/zlib-1.2.8/run-ptest|2 ++ meta/recipes-core/zlib/zlib_1.2.8.bb | 18 ++ 3 files cha