[OE-core] [PATCH 2/2] insane: don't abort if workdir is not TMPDIR/work

2013-09-19 Thread Ross Burton
The BASE_WORKDIR variable can be used instead of enforcing WORKDIR being TMPDIR/work (and aborting the build if it isn't). Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/classes/insane.bbclass |5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git

[OE-core] [PATCH 1/2] bitbake.conf: define WORKDIR in terms of BASE_WORKDIR

2013-09-19 Thread Ross Burton
To make it easier to move WORKDIR, define it using the new variable BASE_WORKDIR, which is the root of the work directory. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/conf/bitbake.conf |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/conf/bitbake.conf

[OE-core] [PATCH] x11vnc: respect zeroconf DISTRO_FEATURE to enable Avahi support

2013-09-19 Thread Ross Burton
There's a standard way of announcing VNC services over mDNS that x11vnc supports, so respect the feature and enable/disable it. Also re-order the statements and drop the redundant PR. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-graphics/x11vnc/x11vnc_0.9.13.bb |8

[OE-core] [PATCH] wipe-sysroot: delete pkgdata stamps

2013-09-19 Thread Ross Burton
The pkgdata stamps now need to be wiped away if the sysroot is destroyed. Signed-off-by: Ross Burton ross.bur...@intel.com --- scripts/wipe-sysroot |2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/wipe-sysroot b/scripts/wipe-sysroot index 1c01166..7ca26fe 100755 ---

Re: [OE-core] [PATCH 1/1] ptest-runner: trivial fixes and refine

2013-09-19 Thread Björn Stenberg
Chris Larson wrote: On Wed, Sep 11, 2013 at 2:17 AM, rongqing...@windriver.com wrote: +for x in `find -L ./ -name run-ptest -type f -perm /u+x,g+x` +do As far as I can tell, busybox find doesn't support -L, so this adds an implicit, undeclared dependency upon findutils.

[OE-core] [PATCH] qt-mobility: fix build without X11

2013-09-19 Thread Eric Bénard
else we get : arm-oe-linux-gnueabi-g++ -march=armv7-a -mthumb-interwork -mfloat-abi=softfp -mfpu=neon .../... ibQtSystemInfoE.so.1 -o libQtSystemInfoE.so.1.2.0 .../... -lblkid -ludev -lX11 -lXrandr -lQtDBusE -lQtXmlE -lQtGuiE -lEGL -lQtNetworkE -lQtCoreE -lpthread

Re: [OE-core] patchwork updated

2013-09-19 Thread Martin Jansa
On Sun, Sep 15, 2013 at 12:32:44AM -0700, Khem Raj wrote: Hi All, The patchwork has been updated to latest. Please keep an eye if you see something non working let me know immediately. Hi, something is wrong, http://patchwork.openembedded.org/user/bundles/ returns 502 Bad Gateway for me

[OE-core] [PATCH] lib/oeqa/runtime: cleanup and improve output readability for some tests

2013-09-19 Thread Stefan Stanacar
date: - move everything in the same test. setUp/tearDown aren't quite the right thing here, everything it's part of the same test. (and it get's confusing when ssh fails) ldd: - change test name and add output to error message vnc: - remove unnecessary check as there is no point in

[OE-core] [PATCH] lib/oeqa/utils: sshcontrol: log how long the last command take

2013-09-19 Thread Stefan Stanacar
It might be useful for debugging to have in the ssh log the number of seconds a command has run. --- meta/lib/oeqa/utils/sshcontrol.py | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/meta/lib/oeqa/utils/sshcontrol.py b/meta/lib/oeqa/utils/sshcontrol.py index

[OE-core] [PATCH] connman: Upgrade to v1.18

2013-09-19 Thread Shakeel, Muhammad
From: Muhammad Shakeel muhammad_shak...@mentor.com -This release contains a few important bugfixes in addition to a few new features. -Also remove some obsolete configurations from EXTRA_OECONF Signed-off-by: Muhammad Shakeel muhammad_shak...@mentor.com ---

[OE-core] [PATCH] openssl: Add ca-certificates in RRECOMMENDS

2013-09-19 Thread Shakeel, Muhammad
From: Muhammad Shakeel muhammad_shak...@mentor.com In some situations ca-certificates are required along with openssl to communicate securely, i.e. curl trying to fetch contents through https. Signed-off-by: Muhammad Shakeel muhammad_shak...@mentor.com ---

Re: [OE-core] [PATCH] connman: Upgrade to v1.18

2013-09-19 Thread Richard Purdie
On Thu, 2013-09-19 at 17:52 +0500, Shakeel, Muhammad wrote: From: Muhammad Shakeel muhammad_shak...@mentor.com -This release contains a few important bugfixes in addition to a few new features. So it fixes some old bugs and potentially adds new ones? I can't make a good risk assessment on

Re: [OE-core] [PATCH] connman: Upgrade to v1.18

2013-09-19 Thread Muhammad Shakeel
On 09/19/2013 06:09 PM, Richard Purdie wrote: On Thu, 2013-09-19 at 17:52 +0500, Shakeel, Muhammad wrote: From: Muhammad Shakeel muhammad_shak...@mentor.com -This release contains a few important bugfixes in addition to a few new features. So it fixes some old bugs and potentially adds new

[OE-core] [PATCH 2/3] uboot-config.bbclass: Handle UBOOT_MACHINE setting

2013-09-19 Thread Otavio Salvador
The class now consolidate the handle of UBOOT_MACHINE and UBOOT_CONFIG variables and handle possible mistakes done by user when using these variables. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/uboot-config.bbclass | 18 +- 1 file changed, 17

[OE-core] [PATCH 0/3] U-Boot configuration rework

2013-09-19 Thread Otavio Salvador
This serie consolidate the UBOOT_MACHINE and UBOOT_CONFIG handle; the code for verification of UBOOT_MACHINE has been duplicated and it must be shared with UBOOT_CONFIG to allow better handle of it and error reporting. The patch simplify the U-Boot code and it has been tested with OE-Core and

[OE-core] [PATCH 1/3] uboot-config.bbclass: Use an annonymous python function

2013-09-19 Thread Otavio Salvador
The processing needs to happen per recipe and thus it ought to use annonymous python function instead to be triggered at event. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/uboot-config.bbclass | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff

[OE-core] [PATCH 3/3] u-boot, u-boot-fw-utils, u-boot-fw-utils-cross: Use uboot-config class

2013-09-19 Thread Otavio Salvador
The U-Boot configuration has been consolidates into a single class to avoid code duplication. This is now done by uboot-config class, so we now use it. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-bsp/u-boot/u-boot-fw-utils-cross_2013.07.bb | 2 +-

[OE-core] [PATCH_V5] image types: split live into iso and hddimg

2013-09-19 Thread Valentin Popa
Changes to split live into iso and hddimg without adding a new image type class. This patch has only a visible effect on HOB and solves part 2 of #3197 [YOCTO #3197] Signed-off-by: Valentin Popa valentin.p...@intel.com --- meta/classes/image.bbclass | 13 -

[OE-core] RFC: Janitorial tasks

2013-09-19 Thread Paul Barker
Hi all, After discussions at the last TSC meeting I've merged the OpenEmbedded wiki page for janitorial tasks (http://www.openembedded.org/wiki/OpenEmbeddedJanitors) in to the equivalent page on the Yocto Project wiki (https://wiki.yoctoproject.org/wiki/Janitors). In addition to keeping

Re: [OE-core] [PATCH] connman: Upgrade to v1.18

2013-09-19 Thread Jukka Rissanen
On 19.09.2013 16:19, Muhammad Shakeel wrote: On 09/19/2013 06:09 PM, Richard Purdie wrote: On Thu, 2013-09-19 at 17:52 +0500, Shakeel, Muhammad wrote: From: Muhammad Shakeel muhammad_shak...@mentor.com -This release contains a few important bugfixes in addition to a few new features. So it

[OE-core] [PATCH] Add makedevs to nativesdk, which can later allow creation of a small script which allows users of the toolchain tarball to create a custom rootfs from a package feed, using pseudo

2013-09-19 Thread David Nyström
Signed-off-by: David Nyström david.nyst...@enea.com --- meta/recipes-devtools/makedevs/makedevs_1.0.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/makedevs/makedevs_1.0.0.bb b/meta/recipes-devtools/makedevs/makedevs_1.0.0.bb index 2b9fd37..e6860f0

Re: [OE-core] [PATCH] connman: Upgrade to v1.18

2013-09-19 Thread Burton, Ross
On 19 September 2013 14:41, Jukka Rissanen jukka.rissa...@linux.intel.com wrote: ConnMan 1.18 release notes can be found here https://connman.net/blogs/patrik/2013/connman-118 standard moan that connman doesn't do stable point releases here Ross ___

Re: [OE-core] [PATCH] x11vnc: respect zeroconf DISTRO_FEATURE to enable Avahi support

2013-09-19 Thread Saul Wold
On 09/19/2013 03:06 AM, Ross Burton wrote: There's a standard way of announcing VNC services over mDNS that x11vnc supports, so respect the feature and enable/disable it. Also re-order the statements and drop the redundant PR. Signed-off-by: Ross Burton ross.bur...@intel.com ---

[OE-core] [PATCH] oprofileui-server: use two digit initscript sequene

2013-09-19 Thread Ross Burton
initscript sequence numbers are 00-99, so using 999 resulted in systemd warning that it couldn't find 9oprofileui-server. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-kernel/oprofile/oprofileui-server_git.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[OE-core] [PATCH][V2] x11vnc: respect zeroconf DISTRO_FEATURE to enable Avahi support

2013-09-19 Thread Ross Burton
There's a standard way of announcing VNC services over mDNS that x11vnc supports, so respect the feature and enable/disable it. Also re-order the statements and drop the redundant PR. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-graphics/x11vnc/x11vnc_0.9.13.bb |8

Re: [OE-core] [PATCH] x11vnc: respect zeroconf DISTRO_FEATURE to enable Avahi support

2013-09-19 Thread Burton, Ross
On 19 September 2013 15:09, Saul Wold s...@linux.intel.com wrote: Did you intend to move the DEPENDS line here and keep avahi as you have avahi in the PACKAGECONFIG below. Not my month is it. V2 incoming. Ross ___ Openembedded-core mailing list

[OE-core] Building a Poky distribution based on Wayland/Weston 1.2

2013-09-19 Thread Ewan LE BIDEAU-CANEVET
Hello, I'm currently trying to have a poky distribution with Wayland/Weston 1.2 and no X server at all. I think I have successfully ported Wayland/Weston to 1.2 version and disabled the X server, so here is my questions : 1) Does this project interest you ? 2) How can I test if Wayland has

Re: [OE-core] [PATCH 2/3] uboot-config.bbclass: Handle UBOOT_MACHINE setting

2013-09-19 Thread Hans Beckérus
On Thu, Sep 19, 2013 at 3:28 PM, Otavio Salvador ota...@ossystems.com.br wrote: The class now consolidate the handle of UBOOT_MACHINE and UBOOT_CONFIG variables and handle possible mistakes done by user when using these variables. Signed-off-by: Otavio Salvador ota...@ossystems.com.br ---

Re: [OE-core] [PATCH 2/3] uboot-config.bbclass: Handle UBOOT_MACHINE setting

2013-09-19 Thread Otavio Salvador
On Thu, Sep 19, 2013 at 12:25 PM, Hans Beckérus hans.becke...@gmail.com wrote: On Thu, Sep 19, 2013 at 3:28 PM, Otavio Salvador ota...@ossystems.com.br wrote: The class now consolidate the handle of UBOOT_MACHINE and UBOOT_CONFIG variables and handle possible mistakes done by user when using

[OE-core] [PATCH] libpam: only use pam_systemd.so if systemd is enabled

2013-09-19 Thread Ross Burton
So that sysvinit images don't warn on every login only add it to common-session if systemd is a DISTRO_FEATURE. [ YOCTO #3805 ] Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-extended/pam/libpam/pam.d/common-session |2 -- meta/recipes-extended/pam/libpam_1.1.6.bb

Re: [OE-core] [PATCH 1/1] ptest-runner: trivial fixes and refine

2013-09-19 Thread Randy MacLeod
On 13-09-19 07:47 AM, Björn Stenberg wrote: Chris Larson wrote: On Wed, Sep 11, 2013 at 2:17 AM, rongqing...@windriver.com wrote: +for x in `find -L ./ -name run-ptest -type f -perm /u+x,g+x` +do As far as I can tell, busybox find doesn't support -L, so this adds an implicit,

Re: [OE-core] Building a Poky distribution based on Wayland/Weston 1.2

2013-09-19 Thread Otavio Salvador
On Thu, Sep 19, 2013 at 3:06 PM, Ahsan, Noor noor_ah...@mentor.com wrote: Hello, We will also be interested in this. Mentor Graphics is also working on this. So let's avoid work duplication. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br

[OE-core] [PATCH] uclibc-git: add two patches to fix build breakage with thumb2

2013-09-19 Thread Carlo Caione
uclibc doesn't compile for Thumb2-aware CPUs. Added two patches (from uclibc) to make it compiling. Signed-off-by: Carlo Caione carlo.cai...@gmail.com --- yocto/meta/recipes-core/uclibc/uclibc-git.inc | 2 + .../add-missing-IT-instruction-for-Thumb2.patch| 22 ++

Re: [OE-core] Building a Poky distribution based on Wayland/Weston 1.2

2013-09-19 Thread Ahsan, Noor
Hello, We will also be interested in this. Mentor Graphics is also working on this. Noor -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Otavio Salvador Sent: Thursday, September 19, 2013

[OE-core] [PATCH v2 1/3] uboot-config.bbclass: Use an annonymous python function

2013-09-19 Thread Otavio Salvador
The processing needs to happen per recipe and thus it ought to use annonymous python function instead to be triggered at event. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: None meta/classes/uboot-config.bbclass | 12 +--- 1 file changed, 5 insertions(+), 7

[OE-core] [PATCH v2 3/3] u-boot, u-boot-fw-utils, u-boot-fw-utils-cross: Use uboot-config class

2013-09-19 Thread Otavio Salvador
The U-Boot configuration has been consolidates into a single class to avoid code duplication. This is now done by uboot-config class, so we now use it. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: None meta/recipes-bsp/u-boot/u-boot-fw-utils-cross_2013.07.bb | 2 +-

[OE-core] [PATCH v2 2/3] uboot-config.bbclass: Handle UBOOT_MACHINE setting

2013-09-19 Thread Otavio Salvador
The class now consolidate the handle of UBOOT_MACHINE and UBOOT_CONFIG variables and handle possible mistakes done by user when using these variables. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: - Fix grammar in messages (added 'the' and dropped 'are') - Hans

[OE-core] [PATCH v2 0/3] U-Boot configuration rework

2013-09-19 Thread Otavio Salvador
This serie consolidate the UBOOT_MACHINE and UBOOT_CONFIG handle; the code for verification of UBOOT_MACHINE has been duplicated and it must be shared with UBOOT_CONFIG to allow better handle of it and error reporting. The patch simplify the U-Boot code and it has been tested with OE-Core and

Re: [OE-core] patchwork updated

2013-09-19 Thread Khem Raj
On Sep 19, 2013, at 5:02 AM, Martin Jansa martin.ja...@gmail.com wrote: On Sun, Sep 15, 2013 at 12:32:44AM -0700, Khem Raj wrote: Hi All, The patchwork has been updated to latest. Please keep an eye if you see something non working let me know immediately. Hi, something is wrong,

[OE-core] [PATCH] pseudo: force NO32LIB to true for nativesdk

2013-09-19 Thread Randy MacLeod
The exported SDK only needs simulated root privileges for specific tasks, such as the user-mode NFS server or rootfs extraction, and oe-core does not support multilib builds in the generated SDK, so it is neither necessary nor possible to build a 32-bit libpseudo.so for a 64-bit SDK. [YOCTO

Re: [OE-core] patchwork updated

2013-09-19 Thread Khem Raj
On Sep 19, 2013, at 5:02 AM, Martin Jansa martin.ja...@gmail.com wrote: On Sun, Sep 15, 2013 at 12:32:44AM -0700, Khem Raj wrote: Hi All, The patchwork has been updated to latest. Please keep an eye if you see something non working let me know immediately. Hi, something is wrong,

[OE-core] [PATCH][RFC] kernel.bbclass: unset LDFLAGS when run devshell in kernel recipe

2013-09-19 Thread Nobuhiro Iwamatsu
When user runs devshell in kernel recipe and compiles kernel, this will fail by unrecognized option of LD. $ make ... arm-poky-linux-gnueabi-ld: unrecognized option '-Wl,-O1' arm-poky-linux-gnueabi-ld: use the --help option for usage information This set to empty LDFLAGS when user runs