Re: [OE-core] [for-dora] Dora backports

2014-02-06 Thread Robert Yang
Hi Otavio, Thanks, I will add it to dora-next by next Tue since I'm OOO this week. // Robert On 2014年02月03日 23:51, Otavio Salvador wrote: Hello, I am adding OE-Core and Yocto mailing list as destination as this has fixes for both. While setting a build system, in a very clean host installat

Re: [OE-core] [for-dora] systemd: journald fix ignored disk space restrictions

2014-02-06 Thread Robert Yang
Yes, I'm OOO, thanks for the patch, I will take it when I come back on next Tue. // Robert On 2014年02月07日 07:58, Diego Sueiro wrote: On Thu, Feb 6, 2014 at 4:49 PM, Randy MacLeod wrote: Hi *dS, :) Robert, who maintains dora, lives in China where they are currently enjoying the Spring Festi

Re: [OE-core] [PATCH] rpm: fix a endian incompatible error in generating tag

2014-02-06 Thread Ming Liu
On 01/29/2014 10:51 PM, Mark Hatle wrote: On 1/28/14, 9:27 PM, Ming Liu wrote: On 01/10/2014 02:05 AM, Mark Hatle wrote: On 1/9/14, 2:49 AM, Ming Liu wrote: A flaw was found in the way rpm generating arbitrary tags, which leads to a incorrect query result, this issue is introduced by a incompa

Re: [OE-core] [for-dora] systemd: journald fix ignored disk space restrictions

2014-02-06 Thread Diego Sueiro
On Thu, Feb 6, 2014 at 4:49 PM, Randy MacLeod wrote: > Hi *dS, :) > > Robert, who maintains dora, lives in China where they are > currently enjoying the Spring Festival holiday week. > I think Robert is back early next week. Please be patient. > :-D Thanks for the feedback Randy. Regards, --

[OE-core] [v3 PATCH 0/2] Implement deterministic uid/gid

2014-02-06 Thread Mark Hatle
V3: Refactor the code into a new class specific with rewriting the adduser functions. Otherwise the code is the same as before. V2: Rebase to latest master... Rework the code a bit based on comments from a few people. Specifically add a mode where passwd/group file entries are NOT overridden

[OE-core] [v3 PATCH 2/2] useradd.bbclass: Add ability to select a static uid/gid automatically

2014-02-06 Thread Mark Hatle
[YOCTO #5436] Automatic selection of static uid/gid is needed for a dynamically generated passwd and group file to have a deterministic outcome. When a package is installed and instructs the system to add a new user or group, unless it selects a static uid/gid value, the next available uid/gid wi

[OE-core] [v3 PATCH 1/2] useradd.bbclass: Fix build time install issues

2014-02-06 Thread Mark Hatle
When the system attempts to populate the sysroot's passwd/group files, it does so in a single block. However, with the way it was previously implemented, the system would always run through the code necessary to populate the sysroot, even in the case of target packages. This had the side effect t

[OE-core] [PATCH] binconfig: mangle ${base_libdir}

2014-02-06 Thread Ross Burton
Some recipes are installing libraries into ${base_libdir} (typically /lib) and also use a foo-config binary to identify compile paths, for example libusb-compat. Without mangling ${base_libdir} the ${base_libdir} path is passed to the compiler, where it looks like a host path and results in compil

Re: [OE-core] [v2 PATCH 2/2] useradd.bbclass: Add ability to select a static uid/gid automatically

2014-02-06 Thread Richard Purdie
On Tue, 2014-02-04 at 17:39 -0600, Mark Hatle wrote: > [YOCTO #5436] > > Automatic selection of static uid/gid is needed for a dynamically generated > passwd and group file to have a deterministic outcome. > > When a package is installed and instructs the system to add a new user or > group, unle

[OE-core] [dylan][PATCH] libx11: backport _XEatDataWords API

2014-02-06 Thread Paul Eggleton
If you build libx11-native then that has to be ABI-compatible with the libX11 on the host or you'll have problems running qemu-native. Most current distros are using libX11 1.6+. Thus, we need to backport the _XEatDataWords API present in 1.6. This only affects the dylan branch as dora+ has libx11

Re: [OE-core] [PATCH] kernel: use oldnoconfig instead of yes '' | make oldconfig

2014-02-06 Thread Bruce Ashfield
On 14-01-29 08:10 AM, Alexandre Belloni wrote: Hi Bruce, Any news on that ? work with me on the triple nesting of this response, but it should be easier to just reply to this email, and consolidate all the questions I had. This is also a bit long .. so apologies for that as well. I've been r

Re: [OE-core] [RFC][PATCH] kernel: Enable externalsrc on kernels which instantiate kernel.bbclass

2014-02-06 Thread Khem Raj
On Thu, Feb 6, 2014 at 11:26 AM, Bruce Ashfield wrote: > On 14-02-06 05:05 AM, Khem Raj wrote: >> >> This also make a change where for kernel >> S != B, this is done because when S = B >> and we use O= option or set KBUILD_OUTPUT >> to point to objectdir, kernel build system >> ends up denoting it

Re: [OE-core] [RFC][PATCH] kernel: Enable externalsrc on kernels which instantiate kernel.bbclass

2014-02-06 Thread Bruce Ashfield
On 14-02-06 05:05 AM, Khem Raj wrote: This also make a change where for kernel S != B, this is done because when S = B and we use O= option or set KBUILD_OUTPUT to point to objectdir, kernel build system ends up denoting itself dirty and asking for running mrproper during later build steps after

Re: [OE-core] [for-dora] systemd: journald fix ignored disk space restrictions

2014-02-06 Thread Randy MacLeod
On 14-02-06 05:34 AM, Diego Sueiro wrote: Folks, Any chance to get this up-streamed? Hi *dS, :) Robert, who maintains dora, lives in China where they are currently enjoying the Spring Festival holiday week. I think Robert is back early next week. Please be patient. ../Randy Regards, --

[OE-core] [PATCH] valgrind: Integration of regression tests to ptest

2014-02-06 Thread Dave Lerner
Modifies valgrind's regression test framework to be compatible with the yocto PTEST framework as follows: * existing recipe valgrind*bb adds new methods: do_compile_ptest and do_install_ptest. * new file run-ptest adds the wrapper interface to the valgrind regression test script vg_regtest.

[OE-core] valgrind: add ptest integration

2014-02-06 Thread Dave Lerner
Hello Christiana, The attached patch adds PTEST integration to valgrind. The patch was built and tested as shown in the "CONFIGURATION", "BUILD TESTS", and "RUNTIME TESTS" sections below. A summary of changes is shown in "COMMIT STAT". Thanks, Dave Lerner COMMIT STAT === Commit ID: 9a

[OE-core] [PATCH] valgrind: Integration of regression tests to ptest

2014-02-06 Thread Dave Lerner
Modifies valgrind's regression test framework to be compatible with the yocto PTEST framework as follows: * existing recipe valgrind*bb adds new methods: do_compile_ptest and do_install_ptest. * new file run-ptest adds the wrapper interface to the valgrind regression test script vg_regtest.

[OE-core] [PATCH 12/13] xserver-xorg: upgrade to 1.15.0

2014-02-06 Thread Laurentiu Palcu
License file changed slightly: a new person has been added to the list of authors. Add dependency of presentproto. Signed-off-by: Laurentiu Palcu --- .../recipes-graphics/xorg-xserver/xserver-xorg.inc |4 ++-- ...erver-xorg_1.14.4.bb => xserver-xorg_1.15.0.bb} |4 ++-- 2 files changed,

[OE-core] [PATCH 01/13] nasm: upgrade to 2.11

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- .../nasm/{nasm_2.10.09.bb => nasm_2.11.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/nasm/{nasm_2.10.09.bb => nasm_2.11.bb} (81%) diff --git a/meta/recipes-devtools/nasm/nasm_2.10.09.bb b/meta/recipes-de

[OE-core] [PATCH 10/13] presentproto_git.bb: add recipe

2014-02-06 Thread Laurentiu Palcu
This is needed by xserver-xorg 1.15. Since presentproto has just been created, use a git recipe because the initial version is missing some fixes, license file, etc. Signed-off-by: Laurentiu Palcu --- .../xorg-proto/presentproto_git.bb | 22 1 file changed,

[OE-core] [PATCH 08/13] libmpc: upgrade to 1.0.2

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- .../libmpc/{libmpc_1.0.1.bb => libmpc_1.0.2.bb}|4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/libmpc/{libmpc_1.0.1.bb => libmpc_1.0.2.bb} (64%) diff --git a/meta/recipes-support/libmpc/libmpc_1.0.1.bb b/meta/recip

[OE-core] [PATCH 06/13] libdrm: upgrade to 2.4.52

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- .../drm/{libdrm_2.4.49.bb => libdrm_2.4.52.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/drm/{libdrm_2.4.49.bb => libdrm_2.4.52.bb} (46%) diff --git a/meta/recipes-graphics/drm/libdrm_2.4.49.bb b/meta/recipe

[OE-core] [PATCH 09/13] xf86-input-synaptics: upgrade to 1.7.3

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- ...tics_1.7.1.bb => xf86-input-synaptics_1.7.3.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-driver/{xf86-input-synaptics_1.7.1.bb => xf86-input-synaptics_1.7.3.bb} (81%) diff --git a/meta/recipes-graphics/

[OE-core] [PATCH 13/13] python-pycurl: upgrade to 7.19.3

2014-02-06 Thread Laurentiu Palcu
Changes: * Refreshed no-static-link.patch; * LGPL&MIT license files changed names; * MIT license file added a contributor to the list; * README.rst license snippet changed to reflect the filename changes and the new contributor; Signed-off-by: Laurentiu Palcu --- .../python/python-pycurl/

[OE-core] [PATCH 03/13] gdb: upgrade to 7.6.2

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- .../gdb/{gdb-7.6.1.inc => gdb-7.6.2.inc} |4 ++-- ...nadian_7.6.1.bb => gdb-cross-canadian_7.6.2.bb} |0 .../gdb/{gdb-cross_7.6.1.bb => gdb-cross_7.6.2.bb} |0 .../gdb/{gdb_7.6.1.bb => gdb_7.6.2.bb} |0 4 files changed, 2 in

[OE-core] [PATCH 11/13] xf86-video-intel: add compat patch for xorg >= 1.14.99.2

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- ...Map-changes-of-DamageUnregister-API-in-1..patch | 29 .../xorg-driver/xf86-video-intel_2.21.15.bb|4 ++- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-graphics/xorg-driver/xf86-video-inte

[OE-core] [PATCH 04/13] xcb-util-wm: upgrade to 0.4.0

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- .../{xcb-util-wm_0.3.9.bb => xcb-util-wm_0.4.0.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-lib/{xcb-util-wm_0.3.9.bb => xcb-util-wm_0.4.0.bb} (73%) diff --git a/meta/recipes-graphics/xorg-lib/xcb-util-wm_

[OE-core] [PATCH 02/13] xextproto: upgrade to 7.3.0

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- .../{xextproto_7.2.1.bb => xextproto_7.3.0.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-proto/{xextproto_7.2.1.bb => xextproto_7.3.0.bb} (81%) diff --git a/meta/recipes-graphics/xorg-proto/xextproto_7.

[OE-core] [PATCH 07/13] xkeyboard-config: upgrade to 2.11

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- ...d-config_2.10.1.bb => xkeyboard-config_2.11.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-lib/{xkeyboard-config_2.10.1.bb => xkeyboard-config_2.11.bb} (87%) diff --git a/meta/recipes-graphics/xorg-lib/xk

[OE-core] [PATCH 05/13] xtrans: upgrade to 1.3.3

2014-02-06 Thread Laurentiu Palcu
Signed-off-by: Laurentiu Palcu --- .../xorg-lib/{xtrans_1.3.2.bb => xtrans_1.3.3.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-lib/{xtrans_1.3.2.bb => xtrans_1.3.3.bb} (82%) diff --git a/meta/recipes-graphics/xorg-lib/xtrans_1.3.2.bb b/met

[OE-core] [PATCH 00/13] package upgrades

2014-02-06 Thread Laurentiu Palcu
Built tested on AB (including sanity tests) with nightly-(x86|x86-64|ppc|mips|arm) and build-appliance which finished successfully. Did a basic manual sanity test with a genericx86-64 core-image-sato image on real HW. Nothing obviously wrong spotted. laurentiu The following changes since commit 4

Re: [OE-core] [PATCH] systemd: add a hard dependency on udev=$EXTENDPKGV

2014-02-06 Thread Burton, Ross
On 6 February 2014 14:27, Henning Heinold wrote: > which package manager did you test to verify it is working as expected? I haven't attempted to replicate the failure case (because it involves quite a lot of building...) but the idiom of EXTENDPKGV is used in every -dbg and -dev package. Ross _

Re: [OE-core] [PATCH] systemd: add a hard dependency on udev=$EXTENDPKGV

2014-02-06 Thread Henning Heinold
On Thu, Feb 06, 2014 at 02:13:12PM +, Ross Burton wrote: > If the systemd/sysvinit DISTRO_FEATURES are changed without wiping the package > feeds it's possible to build an image that pulls in mismatching versions of > systemd and udev. This leads to images that are broken and don't boot > corr

[OE-core] [PATCH] systemd: add a hard dependency on udev=$EXTENDPKGV

2014-02-06 Thread Ross Burton
If the systemd/sysvinit DISTRO_FEATURES are changed without wiping the package feeds it's possible to build an image that pulls in mismatching versions of systemd and udev. This leads to images that are broken and don't boot correctly. Prevent this by adding a version-locked dependency on udev in

Re: [OE-core] [PATCH] kernel: use oldnoconfig instead of yes '' | make oldconfig

2014-02-06 Thread Bruce Ashfield
On 14-01-29 08:10 AM, Alexandre Belloni wrote: Hi Bruce, Any news on that ? And a update. I've been debugging some results that don't look right, so I have haven't followed up yet. I'm hopeful to get a consistent set of results by the end of the day. Bruce On Tue, Jan 07, 2014 at 15:39:01

[OE-core] [PATCH] iproute2: split out package for tc

2014-02-06 Thread Paul Eggleton
tc (the IP traffic control utility) isn't often used and makes up a reasonably large part of the iproute2 package as well as having a runtime dependency on iptables, so split it out into its own package. Signed-off-by: Paul Eggleton --- meta/recipes-connectivity/iproute2/iproute2.inc | 9 ++-

[OE-core] [PATCH] python-smartpm: really ignore conflicts during install with --attempt

2014-02-06 Thread Paul Eggleton
The original patch added in OE-Core commit bdf07b1698d228dc7ff555199a269b1ff8ceca19 was supposed to ignore conflicts, but it was unable to do so because it wasn't raising errors in the right place. When the --attempt option is used (as is done in complementary package installation for RPM), raise e

Re: [OE-core] [RFC][PATCH] kernel: Enable externalsrc on kernels which instantiate kernel.bbclass

2014-02-06 Thread Bruce Ashfield
On 14-02-06 05:05 AM, Khem Raj wrote: This also make a change where for kernel S != B, this is done because when S = B and we use O= option or set KBUILD_OUTPUT to point to objectdir, kernel build system ends up denoting itself dirty and asking for running mrproper during later build steps after

[OE-core] [PATCH v2] conf/bitbake.conf: default HOMEPAGE to blank instead of unknown

2014-02-06 Thread Paul Eggleton
The default value for HOMEPAGE of "unknown" has been in place since the early OE-Classic days, but it doesn't really make sense - "unknown" is not a valid URL and it just means we have to explicitly check for this hardcoded string if we're displaying the value in some form of UI, such as Toaster.

[OE-core] [PATCH 2/2] systemd-compat-units: don't mask dbus, the recipe does this itself

2014-02-06 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-core/systemd/systemd-compat-units.bb |1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-core/systemd/systemd-compat-units.bb b/meta/recipes-core/systemd/systemd-compat-units.bb index e653470..fe4c50c 100644 --- a/meta/recipes-core/syste

[OE-core] [PATCH 1/2] dbus: mask the dbus-1 init script if using systemd

2014-02-06 Thread Ross Burton
If the image is built with both systemd and sysvinit there'll be a dbus-1 init script and a dbus service. This means systemd can try and launch both, which won't work. There's a systemctl mask to stop this in systemd-compat-units, but the logical place for it to be is in the dbus recipe so it can'

[OE-core] [PATCH] classes/buildhistory: write out files in UTF-8 format

2014-02-06 Thread Paul Eggleton
If the package information contained unicode characters (for example, in the package file listing) then writing them out as ASCII would fail, so write them out using codecs.open() instead of open() using UTF-8. This fixes ca-certificates failing in do_packagedata when buildhistory is enabled. Sign

[OE-core] [PATCH] puzzles: upgrade to r10116

2014-02-06 Thread Marius Avram
License has not changed. Contains changes to the building system. Signed-off-by: Marius Avram --- meta/recipes-sato/puzzles/puzzles_r10116.bb | 53 +++ meta/recipes-sato/puzzles/puzzles_r9765.bb | 61 --- 2 files changed, 53 insertions(+), 61 dele

Re: [OE-core] [for-dora] systemd: journald fix ignored disk space restrictions

2014-02-06 Thread Diego Sueiro
Folks, Any chance to get this up-streamed? Regards, -- *dS Diego Sueiro Administrador do Embarcados www.embarcados.com.br /*long live rock 'n roll*/ On Sat, Feb 1, 2014 at 7:07 AM, Diego Sueiro wrote: > The upstream bug report can be seen at: > [Systemd #68161] -- https://bugs.freedesktop.

[OE-core] [RFC][PATCH] kernel: Enable externalsrc on kernels which instantiate kernel.bbclass

2014-02-06 Thread Khem Raj
This also make a change where for kernel S != B, this is done because when S = B and we use O= option or set KBUILD_OUTPUT to point to objectdir, kernel build system ends up denoting itself dirty and asking for running mrproper during later build steps after do_configure but works perfectly for whe

Re: [OE-core] [PATCH 1/1] build-appliance-image: Update to poky commit b37dd451a52622d5b570183a81583cc34c2ff555

2014-02-06 Thread Iorga, Cristian
Ping. -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Cristian Iorga Sent: Monday, February 3, 2014 1:14 PM To: openembedded-core@lists.openembedded.org Subject: [OE-core] [PATCH 1/1] build-a

Re: [OE-core] [PATCHv3 6/6] ltp: fix ffsb ftbfs on cross-compiled environment

2014-02-06 Thread Fathi Boudra
On 29 January 2014 01:11, Khem Raj wrote: > On Tue, Jan 28, 2014 at 4:41 AM, Fathi Boudra wrote: >> Add ffsb-remove-hardcoded-configure.patch: get rid of the hardcoded >> configure call preventing cross-compilation >> Add do_configure_prepend to explicitly force regeneration the configure file

Re: [OE-core] [PATCHv3 1/6] ltp: update SRC_REV to LTP 20140115 release

2014-02-06 Thread Fathi Boudra
On 29 January 2014 01:06, Khem Raj wrote: > On Tue, Jan 28, 2014 at 4:41 AM, Fathi Boudra wrote: >> Signed-off-by: Fathi Boudra >> --- >> meta/recipes-extended/ltp/ltp_20130904.bb | 78 >> --- >> meta/recipes-extended/ltp/ltp_20140115.bb | 78 >> +++