Re: [OE-core] [CONSOLIDATED PULL (M3 rc1) v2 00/25] Needs Final Review & ACK

2013-07-30 Thread Richard Purdie
On Tue, 2013-07-30 at 07:30 -0700, Saul Wold wrote: > Removed bluez / obex patch in preference for Ross's (later this week). > > Please review/ack for RP to pull today for M3-rc1 > > Thanks > > Sau! > > > The following changes since commit 09deeef20ee5a0c12ad4fd89cace6e0fb832d5b1: > > exter

[OE-core] [PATCH V3 9/9] openssh: fix for read-only rootfs

2013-07-30 Thread Qi.Chen
From: Chen Qi If the rootfs is read-only and the ssh keys are not available at system start-up, the init script will generate ssh keys into /etc/ssh, thus causing a 'read-only file system' error. In order for Yocto based image to work correctly for read-only rootfs, we use the following logic fo

[OE-core] [PATCH V3 7/9] initscripts: use a uniform way to handle directories in read-only rootfs

2013-07-30 Thread Qi.Chen
From: Chen Qi Packages in our system may need to write to some directories to function correctly. In read-only rootfs, these directories should be made writable. This patch uses a convenient and uniform way to handle such situations. The read-only-rootfs-hook.sh script searches the /etc/default/

[OE-core] [PATCH V3 2/9] use a uniform way to determine whether rootfs is read-only

2013-07-30 Thread Qi.Chen
From: Chen Qi Previously, we had two ways to check whether the rootfs was read-only. In some part of the system, we determined whether the rootfs is read-only by checking the fstab or /proc/mounts; in other part of the system, we used the value of ROOTFS_READ_ONLY in /etc/default/rcS as a criteri

[OE-core] [PATCH V3 1/9] init-live.sh: make $ROOT_MOUNT/media writable when necessary

2013-07-30 Thread Qi.Chen
From: Chen Qi If the live image is mounted as read-only, we cannot make necessary directories under $ROOT_MOUNT/media, so trying to move the mount points lead to errors. So in case that no unification filesystem mechanism is available in kernel and the rootfs is mounted as read-only, we mount tm

[OE-core] [PATCH V3 8/9] irda-utils: fix for read-only rootfs

2013-07-30 Thread Qi.Chen
From: Chen Qi The init script for irda writes configuration items to /etc/sysconfig/irda if that file is not available in system. But it's actually not necessary, the behavior doesn't change whether the init script writes to the file or not. Considering it issues error messages in case of a read

[OE-core] [PATCH V3 5/9] populate-volatile.sh: don't spawn background process at rootfs time

2013-07-30 Thread Qi.Chen
From: Chen Qi If we're building a read-only rootfs, we'll get the following error now and then. tar: .: file changed as we read it The root cause is that we spawn background process at rootfs time. When the tar command is running, it's possible that files under rootfs are changed by backgro

[OE-core] [PATCH V3 6/9] runqemu-internal: fix to start X correctly in live images

2013-07-30 Thread Qi.Chen
From: Chen Qi The QEMUOPTIONS for ISOFS was not complete, leading to failures when trying to start X in live images. This patch fixes this problem. [YOCTO #4103] [YOCTO #4884] Signed-off-by: Chen Qi --- scripts/runqemu-internal |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -

[OE-core] [PATCH V3 0/9] Make read-only rootfs work with live images

2013-07-30 Thread Qi.Chen
From: Chen Qi Change from V2: 1. modify the irda init script so that it doesn't necessarily need to write to /etc/sysconfig/irda 2. drop the lighttpd patch 3. modify the logic for openssh in case of a read-only rootfs Change from V1: 1. Disable the generating of ssh keys at rootfs time 2. Add a

[OE-core] [PATCH V3 4/9] populate-volatile.sh: use $ROOT_DIR/var/volatile/tmp as TMPDIR

2013-07-30 Thread Qi.Chen
From: Chen Qi It's possible that a 'No such directory' error occurs when doing check_requirement in populate-volatile.sh at rootfs time. This is because the $ROOT_DIR/var/tmp might be a dead link. Use $ROOT_DIR/var/volatile/tmp as the TMPDIR instead to avoid this error. [YOCTO #4883] [YOCTO #41

[OE-core] [PATCH V3 3/9] udev: remove implicit dependency on initscripts

2013-07-30 Thread Qi.Chen
From: Chen Qi At some point, the udev was modified to source the functions from initscripts or lsbinitscripts. This dependency is actually not needed. If we use udev in a system where initscripts from oe-core is not available, there will be errors. This patch fixes this problem by removing the i

Re: [OE-core] [PATCH v2] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Otavio Salvador
On Tue, Jul 30, 2013 at 10:11 PM, Otavio Salvador wrote: > This allow the addition and removal of distro features easily. To add > a feature, use: > > EXTRA_DISTRO_FEATURES += "wayland" > > and to remove, use '~' prefix, as: > > EXTRA_DISTRO_FEATURES += "~x11" > > This code has been mostly copie

[OE-core] [PATCH v2] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Otavio Salvador
This allow the addition and removal of distro features easily. To add a feature, use: EXTRA_DISTRO_FEATURES += "wayland" and to remove, use '~' prefix, as: EXTRA_DISTRO_FEATURES += "~x11" This code has been mostly copied from Mentor Graphics public layer but changed the variable name for a mo

Re: [OE-core] [PATCH] gst-plugins-gl: add explicit dependency on libpng

2013-07-30 Thread Otavio Salvador
On Tue, Jul 30, 2013 at 6:01 PM, Eric Nelson wrote: > Signed-off-by: Eric Nelson Acked-by: Otavio Salvador Paul, can you queue this for dylan next update? Regards, -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://projetos.ossystems.com.br

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Otavio Salvador
On Tue, Jul 30, 2013 at 1:05 PM, Phil Blundell wrote: > On Tue, 2013-07-30 at 10:43 -0500, Mark Hatle wrote: >> That only filters out recommendations though. A good example is some x86 >> packagegroups have a requirement of 'vte'. It turns out a class of end users >> don't want 'vte'. And they

[OE-core] [PATCH] gst-plugins-gl: add explicit dependency on libpng

2013-07-30 Thread Eric Nelson
Signed-off-by: Eric Nelson --- meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb index a6c74fb..213

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Otavio Salvador
On Tue, Jul 30, 2013 at 1:05 PM, Phil Blundell wrote: > On Tue, 2013-07-30 at 10:43 -0500, Mark Hatle wrote: >> That only filters out recommendations though. A good example is some x86 >> packagegroups have a requirement of 'vte'. It turns out a class of end users >> don't want 'vte'. And they

Re: [OE-core] RFC: meta-ro-rootfs approach and volatiles vs tmpfiles.d

2013-07-30 Thread Paul Eggleton
On Tuesday 30 July 2013 11:26:58 Chris Larson wrote: > I forgot to mention, we also need to focus on improving the oe-core systemd > support, and the feature parity between sysvinit and systemd images. Some > are missing systemd support at all still (e.g. dropbear's service files are > still in met

Re: [OE-core] lttng-* 2.2.x point release updates

2013-07-30 Thread Otavio Salvador
On Tue, Jul 30, 2013 at 5:09 PM, wrote: > Hi Otavio, Hi Paul, > The patch below updates LTTng and related packages to the latest point > releases. Thanks by working on this but please send one patch for each recipe and follow the process documented at: http://www.openembedded.org/wiki/How_to

Re: [OE-core] RFC: meta-ro-rootfs approach and volatiles vs tmpfiles.d

2013-07-30 Thread Chris Larson
On Wed, Jul 24, 2013 at 7:51 PM, ChenQi wrote: > You can get more information from the bug link below. The related bugs are > listed in the blocks list of this bug. > https://bugzilla.yoctoproject.org/show_bug.cgi?id=4103 > You can also review the patchset for these bugs on > > http://git.pokylin

Re: [OE-core] [RFC PATCH v3] chrpath.bbclass: strip common parent directories from rpath

2013-07-30 Thread Andreas Oberritter
On 30.07.2013 17:34, Phil Blundell wrote: > On Tue, 2013-07-30 at 08:27 -0700, Khem Raj wrote: >> On Jul 30, 2013, at 8:24 AM, Phil Blundell wrote: >> >>> On Tue, 2013-07-02 at 11:50 +0200, Andreas Oberritter wrote: Allows to use shorter TMPDIRs in corner cases, e.g. with native perl mod

Re: [OE-core] [PATCH 00/24] Add python3 recipes

2013-07-30 Thread Khem Raj
On Jul 30, 2013, at 9:45 AM, Saul Wold wrote: > On 07/30/2013 01:16 AM, Khem Raj wrote: >> >> On Jun 29, 2013, at 8:31 AM, Martin Jansa wrote: >> >>> On Sat, Jun 29, 2013 at 07:11:35AM -0700, Khem Raj wrote: On Jun 28, 2013, at 10:38 PM, Martin Jansa wrote: > On Fri, Jun

Re: [OE-core] RFC: meta-ro-rootfs approach and volatiles vs tmpfiles.d

2013-07-30 Thread Chris Larson
On Tue, Jul 30, 2013 at 11:17 AM, Chris Larson wrote: > - Next steps, from my perspective: > > - We need to agree on a pattern to follow for the read only rootfs > support for individual pieces of recipes, as we need to work through them > individually. Currently we have two possibilities on

Re: [OE-core] RFC: meta-ro-rootfs approach and volatiles vs tmpfiles.d

2013-07-30 Thread Chris Larson
On Tue, Jul 30, 2013 at 11:17 AM, Chris Larson wrote: > I've read though this thread carefully, but still can't get a clear > picture about this RFC. > Could you please give me a link to your patchset, if convenient? > This is interesting, I didn't notice this in your branch until just now: "Ma

Re: [OE-core] RFC: meta-ro-rootfs approach and volatiles vs tmpfiles.d

2013-07-30 Thread Chris Larson
On Wed, Jul 24, 2013 at 7:51 PM, ChenQi wrote: > You can get more information from the bug link below. The related bugs are > listed in the blocks list of this bug. > https://bugzilla.yoctoproject.org/show_bug.cgi?id=4103 > You can also review the patchset for these bugs on > > http://git.pokylin

Re: [OE-core] [PATCH] util-linux: fix PACKAGECONFIG options

2013-07-30 Thread Khem Raj
On Jul 30, 2013, at 8:35 AM, Saul Wold wrote: > It's pending on oe-contrib/sgw/stage, a series of 3 Update-Alternatives for > busybox, util-linux and shadow, > I see. thx ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org ht

Re: [OE-core] [PATCH 00/24] Add python3 recipes

2013-07-30 Thread Saul Wold
On 07/30/2013 01:16 AM, Khem Raj wrote: On Jun 29, 2013, at 8:31 AM, Martin Jansa wrote: On Sat, Jun 29, 2013 at 07:11:35AM -0700, Khem Raj wrote: On Jun 28, 2013, at 10:38 PM, Martin Jansa wrote: On Fri, Jun 28, 2013 at 03:03:39PM -0700, Khem Raj wrote: generate-manifest-3.3.py: Add s

Re: [OE-core] [PATCH] busybox-1.21.1/defconfig: disable rfkill

2013-07-30 Thread Burton, Ross
On 30 July 2013 17:10, Phil Blundell wrote: > On Tue, 2013-07-30 at 16:55 +0100, Laszlo Papp wrote: > >> At any rate, can someone provide a helper change from the past for >> PACKAGEGROUP like changes? > > Do you mean PACKAGECONFIG? If so, just run "git log" in your oe-core > tree and search for

Re: [OE-core] [PATCH] busybox-1.21.1/defconfig: disable rfkill

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-30 at 16:55 +0100, Laszlo Papp wrote: > At any rate, can someone provide a helper change from the past for > PACKAGEGROUP like changes? Do you mean PACKAGECONFIG? If so, just run "git log" in your oe-core tree and search for PACKAGECONFIG. p. _

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-30 at 10:43 -0500, Mark Hatle wrote: > That only filters out recommendations though. A good example is some x86 > packagegroups have a requirement of 'vte'. It turns out a class of end users > don't want 'vte'. And they have no easy way to remove it. Telling them to > generat

Re: [OE-core] [PATCH] busybox-1.21.1/defconfig: disable rfkill

2013-07-30 Thread Laszlo Papp
One person not using the latest toolchains? At any rate, can someone provide a helper change from the past for PACKAGEGROUP like changes? On Mon, Jul 29, 2013 at 4:42 PM, Bernhard Reutner-Fischer < rep.dot@gmail.com> wrote: > On 29 July 2013 15:34:29 Laszlo Papp wrote: > >> No, it should b

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Mark Hatle
On 7/30/13 10:19 AM, Phil Blundell wrote: On Tue, 2013-07-30 at 09:46 -0500, Mark Hatle wrote: They want a method similar to the one posted by Otavio in order to tailor the system. End users never want to create a new distribution, they simply want to start with one and tweak it. They can alr

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Mark Hatle
On 7/30/13 10:09 AM, Paul Eggleton wrote: On Tuesday 30 July 2013 09:46:19 Mark Hatle wrote: I agree with the previous folks that the design of the distribution setting the one and true value is the right technical answer for this. HOWEVER, in my experience, this is NOT what end users want. Th

Re: [OE-core] [PATCH] util-linux: fix PACKAGECONFIG options

2013-07-30 Thread Saul Wold
On 07/30/2013 08:31 AM, Khem Raj wrote: On Jul 30, 2013, at 3:50 AM, Paul Eggleton wrote: On Tuesday 30 July 2013 01:52:42 Khem Raj wrote: On Jul 26, 2013, at 12:01 AM, Koen Kooi wrote: Op 25 jul. 2013, om 16:51 heeft Koen Kooi het volgende geschreven: The ??= operator is too weak and

Re: [OE-core] [RFC PATCH v3] chrpath.bbclass: strip common parent directories from rpath

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-30 at 08:27 -0700, Khem Raj wrote: > On Jul 30, 2013, at 8:24 AM, Phil Blundell wrote: > > > On Tue, 2013-07-02 at 11:50 +0200, Andreas Oberritter wrote: > >> Allows to use shorter TMPDIRs in corner cases, e.g. with native > >> perl modules, having a deep directory structure. > >>

Re: [OE-core] [PATCH] util-linux: fix PACKAGECONFIG options

2013-07-30 Thread Khem Raj
On Jul 30, 2013, at 3:50 AM, Paul Eggleton wrote: > On Tuesday 30 July 2013 01:52:42 Khem Raj wrote: >> On Jul 26, 2013, at 12:01 AM, Koen Kooi wrote: >>> Op 25 jul. 2013, om 16:51 heeft Koen Kooi het > volgende geschreven: The ??= operator is too weak and it's setting a non-existent >>

Re: [OE-core] [RFC PATCH v3] chrpath.bbclass: strip common parent directories from rpath

2013-07-30 Thread Khem Raj
On Jul 30, 2013, at 8:24 AM, Phil Blundell wrote: > On Tue, 2013-07-02 at 11:50 +0200, Andreas Oberritter wrote: >> Allows to use shorter TMPDIRs in corner cases, e.g. with native >> perl modules, having a deep directory structure. >> >> The problem is that the original absolute rpath may be sh

Re: [OE-core] [RFC PATCH v3] chrpath.bbclass: strip common parent directories from rpath

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-02 at 11:50 +0200, Andreas Oberritter wrote: > Allows to use shorter TMPDIRs in corner cases, e.g. with native > perl modules, having a deep directory structure. > > The problem is that the original absolute rpath may be shorter > than the newly generated relative rpath. Can we no

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-30 at 09:46 -0500, Mark Hatle wrote: > They want a method similar to the one posted by Otavio in order to tailor the > system. End users never want to create a new distribution, they simply want > to > start with one and tweak it. They can already do that by overriding the dist

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Paul Eggleton
On Tuesday 30 July 2013 09:46:19 Mark Hatle wrote: > I agree with the previous folks that the design of the distribution setting > the one and true value is the right technical answer for this. HOWEVER, in > my experience, this is NOT what end users want. > > They want a method similar to the one

Re: [OE-core] [PATCH] makedevs: Change numeric user/group ids to user/group names in device table

2013-07-30 Thread Saul Wold
On 07/30/2013 02:45 AM, Mihai Prica wrote: Full usernames and groupnames should be used instead of numeric ids in meta/files/device_table-minimal.txt. I think this will uses the host's files not the target's rootfs, please verify this. Thanks Sau! [YOCTO #1159] Signed-off-by: M

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Mark Hatle
On 7/30/13 7:24 AM, Otavio Salvador wrote: On Tue, Jul 30, 2013 at 9:14 AM, Phil Blundell wrote: On Tue, 2013-07-30 at 09:00 -0300, Otavio Salvador wrote: To make this, we cannot reuse Poky distro for example as it /unconditionally/ appends to DISTRO_FEATURES. Besides it is easier for test to

Re: [OE-core] [CONSOLIDATED PULL (M3 rc1) v2 00/25] Needs Final Review & ACK

2013-07-30 Thread Paul Eggleton
On Tuesday 30 July 2013 07:30:25 Saul Wold wrote: > Removed bluez / obex patch in preference for Ross's (later this week). > > Please review/ack for RP to pull today for M3-rc1 > > Thanks > > Sau! > > > The following changes since commit 09deeef20ee5a0c12ad4fd89cace6e0fb832d5b1: > > externa

Re: [OE-core] [CONSOLIDATED PULL (M3 rc1) v2 00/25] Needs Final Review & ACK

2013-07-30 Thread Burton, Ross
On 30 July 2013 15:30, Saul Wold wrote: > Please review/ack for RP to pull today for M3-rc1 Acked-By: Ross Burton Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembed

[OE-core] [PATCH 1/1] adt_installer: allow specifying relative target sysroot paths

2013-07-30 Thread Laurentiu Palcu
If one specifies a relative target sysroot path, then he/she must always be in the same directory in order to be able to compile. With this patch, adt_installer will automatically convert user supplied relative paths to absolute. [YOCTO #4955] Signed-off-by: Laurentiu Palcu --- .../installer/a

[OE-core] [PATCH 0/1] adt_installer: allow specifying relative target sysroot paths

2013-07-30 Thread Laurentiu Palcu
The following changes since commit bd1c441a210cae03fb6006c996227211cc29056b: bitbake: bitbake: runqueue: add warning if invalidating invalid task (2013-07-29 15:25:09 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib lpalcu/b4955_adt_installer_sysroot_r

Re: [OE-core] [PATCH 1/3] ofono: Add systemd support

2013-07-30 Thread Saul Wold
On 07/30/2013 03:30 AM, Jukka Rissanen wrote: On 29.07.2013 12:43, Muhammad Shakeel wrote: On 07/26/2013 05:35 PM, Jukka Rissanen wrote: do_install_append() { - install -d ${D}${sysconfdir}/init.d/ - install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono +if ${@base_contains('D

[OE-core] [CONSOLIDATED PULL (M3 rc1) v2 00/25] Needs Final Review & ACK

2013-07-30 Thread Saul Wold
Removed bluez / obex patch in preference for Ross's (later this week). Please review/ack for RP to pull today for M3-rc1 Thanks Sau! The following changes since commit 09deeef20ee5a0c12ad4fd89cace6e0fb832d5b1: external-sourcery: add missing providers (2013-07-27 23:28:29 -0700) are availab

Re: [OE-core] [CONSOLIDATED PULL (M3 rc1) 00/26] Needs early review and ACK

2013-07-30 Thread Saul Wold
On 07/30/2013 02:46 AM, Burton, Ross wrote: On 30 July 2013 07:14, Saul Wold wrote: Saul Wold (2): bluez5: Add obex as a PACKAGECONFIG and package seperately I'm still unsure why this patch was needed. I've nothing against splitting out the OBEX functionality and controlling it with a pac

Re: [OE-core] [PATCH] directfb: don't patch pkg-config files

2013-07-30 Thread Paul Eggleton
On Friday 19 July 2013 14:52:00 Otavio Salvador wrote: > On Fri, Jul 19, 2013 at 11:46 AM, Nicolas Dechesne > > wrote: > > On Fri, Jul 19, 2013 at 10:39 AM, André Draszik > > > > wrote: > >> We are currently getting build failures of projects that rely on > >> being able to access DirectFB's in

[OE-core] [PATCH][V2] bluez5: Add obex-profiles as a PACKAGECONFIG, package obexd separately

2013-07-30 Thread Ross Burton
--enable-obex controls if obexd supports extra profiles (currently IRMC and PBAB), which brings in a dependency on libical for the dummy phonebook implementation. Based on work by Saul Wold . Signed-off-by: Ross Burton --- meta/recipes-connectivity/bluez5/bluez5.inc | 13 ++--- 1 file

Re: [OE-core] [PATCH] bluez5: Add obex-profiles as a PACKAGECONFIG, package obexd separately

2013-07-30 Thread Burton, Ross
On 30 July 2013 14:24, Phil Blundell wrote: >> meta/classes/buildhistory.bbclass |1 + > > I don't suppose you intended to send that change to buildhistory as part > of this patch. Nope. :( Ross ___ Openembedded-core mailing list Openembe

Re: [OE-core] [PATCH] bluez5: Add obex-profiles as a PACKAGECONFIG, package obexd separately

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-30 at 14:13 +0100, Ross Burton wrote: > --enable-obex controls if obexd supports extra profiles (currently IRMC and > PBAB), which brings in a dependency on libical for the dummy phonebook > implementation. > > Based on work by Saul Wold . > > Signed-off-by: Ross Burton > --- >

Re: [OE-core] [CONSOLIDATED PULL (M3 rc1) 00/26] Needs early review and ACK

2013-07-30 Thread Burton, Ross
On 30 July 2013 11:04, Phil Blundell wrote: >> I'm still unsure why this patch was needed. I've nothing against >> splitting out the OBEX functionality and controlling it with a >> packageconfig, but this does disable it by default when before it was >> enabled. > > Was that patch ever actually p

[OE-core] [PATCH] bluez5: Add obex-profiles as a PACKAGECONFIG, package obexd separately

2013-07-30 Thread Ross Burton
--enable-obex controls if obexd supports extra profiles (currently IRMC and PBAB), which brings in a dependency on libical for the dummy phonebook implementation. Based on work by Saul Wold . Signed-off-by: Ross Burton --- meta/classes/buildhistory.bbclass |1 + meta/recipes-conne

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Otavio Salvador
On Tue, Jul 30, 2013 at 9:14 AM, Phil Blundell wrote: > On Tue, 2013-07-30 at 09:00 -0300, Otavio Salvador wrote: >> To make this, we cannot reuse Poky distro for example as it >> /unconditionally/ appends to DISTRO_FEATURES. Besides it is easier for >> test to be able to override it using local.c

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-30 at 09:00 -0300, Otavio Salvador wrote: > To make this, we cannot reuse Poky distro for example as it > /unconditionally/ appends to DISTRO_FEATURES. Besides it is easier for > test to be able to override it using local.conf. For products I agree > we'll end adding a distro to mak

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Otavio Salvador
On Tue, Jul 30, 2013 at 7:59 AM, Paul Eggleton wrote: > On Monday 29 July 2013 19:26:27 Otavio Salvador wrote: >> This allow the addition and removal of distro features easily. To add >> a feature, use: >> >> EXTRA_DISTRO_FEATURES += "wayland" >> >> and to remove, use '~' prefix, as: >> >> EXTRA

Re: [OE-core] [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES

2013-07-30 Thread Paul Eggleton
On Monday 29 July 2013 19:26:27 Otavio Salvador wrote: > This allow the addition and removal of distro features easily. To add > a feature, use: > > EXTRA_DISTRO_FEATURES += "wayland" > > and to remove, use '~' prefix, as: > > EXTRA_DISTRO_FEATURES += "~x11" > > This code has been mostly copi

Re: [OE-core] [PATCH] util-linux: fix PACKAGECONFIG options

2013-07-30 Thread Paul Eggleton
On Tuesday 30 July 2013 01:52:42 Khem Raj wrote: > On Jul 26, 2013, at 12:01 AM, Koen Kooi wrote: > > Op 25 jul. 2013, om 16:51 heeft Koen Kooi het volgende geschreven: > >> The ??= operator is too weak and it's setting a non-existent > >> PACKAGECONFIG option ('libpam' instead of 'pam'). > >>

Re: [OE-core] [PATCH 1/3] ofono: Add systemd support

2013-07-30 Thread Jukka Rissanen
On 29.07.2013 12:43, Muhammad Shakeel wrote: On 07/26/2013 05:35 PM, Jukka Rissanen wrote: do_install_append() { - install -d ${D}${sysconfdir}/init.d/ - install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono +if ${@base_contains('DISTRO_FEATURES','sysvinit','true','false',d)};

Re: [OE-core] [CONSOLIDATED PULL (M3 rc1) 00/26] Needs early review and ACK

2013-07-30 Thread Phil Blundell
On Tue, 2013-07-30 at 10:46 +0100, Burton, Ross wrote: > On 30 July 2013 07:14, Saul Wold wrote: > > Saul Wold (2): > > bluez5: Add obex as a PACKAGECONFIG and package seperately > > I'm still unsure why this patch was needed. I've nothing against > splitting out the OBEX functionality and con

Re: [OE-core] [CONSOLIDATED PULL (M3 rc1) 00/26] Needs early review and ACK

2013-07-30 Thread Burton, Ross
On 30 July 2013 07:14, Saul Wold wrote: > Saul Wold (2): > bluez5: Add obex as a PACKAGECONFIG and package seperately I'm still unsure why this patch was needed. I've nothing against splitting out the OBEX functionality and controlling it with a packageconfig, but this does disable it by defau

[OE-core] [PATCH] makedevs: Change numeric user/group ids to user/group names in device table

2013-07-30 Thread Mihai Prica
Full usernames and groupnames should be used instead of numeric ids in meta/files/device_table-minimal.txt. [YOCTO #1159] Signed-off-by: Mihai Prica --- meta/files/device_table-minimal.txt| 47 ++-- .../makedevs/makedevs-1.0.0/makedevs.c | 23 +++

[OE-core] [PATCH v2 2/4] oeqa/utils/qemurunner: add comment and header

2013-07-30 Thread Stefan Stanacar
One of the files was missing comment/header, unlike the others. Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/utils/qemurunner.py | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 1051b2b..02e0a4a 100644 ---

[OE-core] [PATCH v2 0/4] Small tweaks for testimage

2013-07-30 Thread Stefan Stanacar
Changed in v2: - 4/4 had an extra change that wasn't meant to be. The following changes since commit bd1c441a210cae03fb6006c996227211cc29056b: bitbake: bitbake: runqueue: add warning if invalidating invalid task (2013-07-29 15:25:09 +0100) are available in the git repository at: git://gi

[OE-core] [PATCH v2 3/4] oeqa/utils/qemurunner: tweak console bootparam and ip command

2013-07-30 Thread Stefan Stanacar
Sync serial baud rate with default inittab which should help with apparent boot fails. Also keep a console on tty1. Also we shouldn't assume eth0 it the right interface. (systemd images can rename interfaces to something else). Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/utils/qemurunner.p

[OE-core] [PATCH v2 4/4] oeqa/runtime/xorg: use the right ps command for xorg test

2013-07-30 Thread Stefan Stanacar
Use our determined ps command, otherwise test fails for images with procps. Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/runtime/xorg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/lib/oeqa/runtime/xorg.py b/meta/lib/oeqa/runtime/xorg.py index 96cc20a..12dccd

[OE-core] [PATCH v2 1/4] oeqa/utils/sshcontrol: increase and log timeout in output

2013-07-30 Thread Stefan Stanacar
Increase a bit the timeout for ssh commands and also write in the output that the command timed out (it's easier to see that in a test fail than checking the ssh log) Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/utils/sshcontrol.py | 10 ++ 1 file changed, 6 insertions(+), 4 deletion

Re: [OE-core] [PATCH 4/4] oeqa/runtime/xorg: use the right ps command for xorg test

2013-07-30 Thread Stanacar, StefanX
On Tue, 2013-07-30 at 11:35 +0300, Stefan Stanacar wrote: > Use our determined ps command, otherwise test fails for images with procps. > > Signed-off-by: Stefan Stanacar > self.streampath = '/tmp/qemuconnection.%s' % os.getpid() > -self.qemuparams = 'bootparams="console=tty1

Re: [OE-core] [RFC][PATCH 1/6]qemuarm.conf: provide a common qemuarm machine configuration

2013-07-30 Thread Bian Naimeng
said the following on 2013-7-30 16:15:, Martin Jansa wrote: > On Tue, Jul 30, 2013 at 09:51:54AM +0800, Bian Naimeng wrote: >> >> said the following on 2013-7-29 23:36:, Phil Blundell wrote: >>> On Mon, 2013-07-29 at 12:02 +0800, Bian Naimeng wrote: qemux86.conf: provide a common qemux86 machi

Re: [OE-core] [PATCH] util-linux: fix PACKAGECONFIG options

2013-07-30 Thread Khem Raj
On Jul 26, 2013, at 12:01 AM, Koen Kooi wrote: > > Op 25 jul. 2013, om 16:51 heeft Koen Kooi het > volgende geschreven: > >> The ??= operator is too weak and it's setting a non-existent PACKAGECONFIG >> option ('libpam' instead of 'pam'). >> >> Signed-off-by: Koen Kooi >> --- >> meta/reci

[OE-core] [PATCH 3/4] oeqa/utils/qemurunner: tweak console bootparam and ip command

2013-07-30 Thread Stefan Stanacar
Sync serial baud rate with default inittab which should help with apparent boot fails. Also keep a console on tty1. Also we shouldn't assume eth0 it the right interface. (systemd images can rename interfaces to something else). Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/utils/qemurunner.p

Re: [OE-core] [PATCH] classes/sanity: check for suid root command evility

2013-07-30 Thread Paul Eggleton
On Monday 29 July 2013 18:43:32 Mark Hatle wrote: > On 7/26/13 5:48 AM, Paul Eggleton wrote: > > Some users have been found to have an unnamed third-party piece of > > software installed which sets chmod, chown and mknod as suid root as > > part of its installation process. This interferes with the

[OE-core] [PATCH 2/4] oeqa/utils/qemurunner: add comment and header

2013-07-30 Thread Stefan Stanacar
One of the files was missing comment/header, unlike the others. Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/utils/qemurunner.py | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 1051b2b..02e0a4a 100644 ---

[OE-core] [PATCH 4/4] oeqa/runtime/xorg: use the right ps command for xorg test

2013-07-30 Thread Stefan Stanacar
Use our determined ps command, otherwise test fails for images with procps. Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/runtime/xorg.py | 4 ++-- meta/lib/oeqa/utils/qemurunner.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/lib/oeqa/runtime/xorg.py b/meta

[OE-core] [PATCH 1/4] oeqa/utils/sshcontrol: increase and log timeout in output

2013-07-30 Thread Stefan Stanacar
Increase a bit the timeout for ssh commands and also write in the output that the command timed out (it's easier to see that in a test fail than checking the ssh log) Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/utils/sshcontrol.py | 10 ++ 1 file changed, 6 insertions(+), 4 deletion

[OE-core] [PATCH 0/4] Small tweaks for testimage

2013-07-30 Thread Stefan Stanacar
The following changes since commit bd1c441a210cae03fb6006c996227211cc29056b: bitbake: bitbake: runqueue: add warning if invalidating invalid task (2013-07-29 15:25:09 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib stefans/testimage-fix1 for you to fe

Re: [OE-core] [PATCH 00/24] Add python3 recipes

2013-07-30 Thread Khem Raj
On Jun 29, 2013, at 8:31 AM, Martin Jansa wrote: > On Sat, Jun 29, 2013 at 07:11:35AM -0700, Khem Raj wrote: >> >> On Jun 28, 2013, at 10:38 PM, Martin Jansa wrote: >> >>> On Fri, Jun 28, 2013 at 03:03:39PM -0700, Khem Raj wrote: generate-manifest-3.3.py: Add script to generate pyt

Re: [OE-core] [RFC][PATCH 1/6]qemuarm.conf: provide a common qemuarm machine configuration

2013-07-30 Thread Martin Jansa
On Tue, Jul 30, 2013 at 09:51:54AM +0800, Bian Naimeng wrote: > > said the following on 2013-7-29 23:36:, Phil Blundell wrote: > > On Mon, 2013-07-29 at 12:02 +0800, Bian Naimeng wrote: > >> qemux86.conf: provide a common qemux86 machine configuration, > >> so developer/distributor can customize

Re: [OE-core] [PATCH] avahi: Remove unnecessary runtime dependency on sysvinit-pidof

2013-07-30 Thread Muhammad Shakeel
On 07/25/2013 09:43 PM, Saul Wold wrote: On 07/25/2013 03:02 AM, Shakeel, Muhammad wrote: -RDEPENDS_avahi-daemon = "sysvinit-pidof" - I am sure there was a reason that the sysvinit version of pidof was required over the busybox, did you test that the busybox version works correctly in both sys