Re: [OE-core] Clashing man pages

2013-05-20 Thread Paul Barker
On 19 May 2013 13:54, Martin Jansa martin.ja...@gmail.com wrote: On Sun, May 19, 2013 at 01:00:24PM +0100, Paul Barker wrote: I'm generating a rootfs image which I intend to be usable interactively so I've added IMAGE_FEATURES += doc-pkgs to my image recipe. do_rootfs fails with the following

Re: [OE-core] [PATCH] populate-volatile.sh: normalize repeated leading slashes in TNAME

2013-05-20 Thread Phil Blundell
On Mon, 2013-05-20 at 11:29 +1000, Jonathan Liu wrote: - TNAME=${ROOT_DIR}/${TNAME} + TNAME=`echo ${ROOT_DIR}/${TNAME} | sed -e 's@^//*@/@'` Why is this a good thing? Your commit message is rather terse. p. ___

Re: [OE-core] [PATCH] populate-volatile.sh: normalize repeated leading slashes in TNAME

2013-05-20 Thread Jonathan Liu
On 20/05/2013 7:19 PM, Phil Blundell wrote: On Mon, 2013-05-20 at 11:29 +1000, Jonathan Liu wrote: - TNAME=${ROOT_DIR}/${TNAME} + TNAME=`echo ${ROOT_DIR}/${TNAME} | sed -e 's@^//*@/@'` Why is this a good thing? Your commit message is rather terse. p. It reduces

Re: [OE-core] [PATCH] populate-volatile.sh: normalize repeated leading slashes in TNAME

2013-05-20 Thread Phil Blundell
On Mon, 2013-05-20 at 19:23 +1000, Jonathan Liu wrote: On 20/05/2013 7:19 PM, Phil Blundell wrote: On Mon, 2013-05-20 at 11:29 +1000, Jonathan Liu wrote: - TNAME=${ROOT_DIR}/${TNAME} + TNAME=`echo ${ROOT_DIR}/${TNAME} | sed -e 's@^//*@/@'` Why is this a good thing? Your

Re: [OE-core] [PATCH] populate-volatile.sh: normalize repeated leading slashes in TNAME

2013-05-20 Thread Jonathan Liu
On 20/05/2013 7:38 PM, Phil Blundell wrote: On Mon, 2013-05-20 at 19:23 +1000, Jonathan Liu wrote: On 20/05/2013 7:19 PM, Phil Blundell wrote: On Mon, 2013-05-20 at 11:29 +1000, Jonathan Liu wrote: - TNAME=${ROOT_DIR}/${TNAME} + TNAME=`echo ${ROOT_DIR}/${TNAME} |

[OE-core] [PATCH] runqemu: fix networking issues

2013-05-20 Thread Laurentiu Palcu
After switching from ifconfig to ip, networking stopped working. This commit contains the following fixes: * set a decent broadcast address for the tap device; * bring up the device; Signed-off-by: Laurentiu Palcu laurentiu.pa...@intel.com --- Apparently, the autobuilder has some magic into it

[OE-core] [PATCH v2] populate-volatile.sh: remove repeated leading slashes in TNAME

2013-05-20 Thread Jonathan Liu
This avoids triple slashes in the generated /etc/volatile.cache to reduce disk usage and in the output when verbose mode is enabled. As all the paths for volatiles start with a slash, we can change TNAME=${ROOT_DIR}/${TNAME} to TNAME=${ROOT_DIR}${TNAME}. To avoid a double slash when ROOT_DIR is

[OE-core] [PATCH v3] populate-volatile.sh: remove repeated leading slashes in TNAME

2013-05-20 Thread Jonathan Liu
This avoids triple slashes in the generated /etc/volatile.cache to reduce disk usage and in the output when verbose mode is enabled. As all the paths for volatiles start with a slash, we can change TNAME=${ROOT_DIR}/${TNAME} to TNAME=${ROOT_DIR}${TNAME}. To avoid a double slash when ROOT_DIR is

[OE-core] [PATCH] kernel.bbclass: Add dependency on binutils

2013-05-20 Thread Mike Crowe
Compiling the Linux kernel requires binutils; kernel.bbclass uses INHIBIT_DEFAULT_DEPS so it had better depend on binutils explicitly. (The lack of this dependency isn't always a problem because binutils is required to build gcc-cross but if gcc-cross is reconstructed from the sstate cache then

[OE-core] gst-plugins-base tremor build time dependence?

2013-05-20 Thread Javier Viguera
Hi all, In gst-plugins-base package there is a patch that explicitly removes the '-DTREMOR' symbol so the package compiles without that support: http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-multimedia/gstreamer/gst-plugins-base-0.10.36/gst-plugins-base-tremor.patch But

Re: [OE-core] State of bitbake world

2013-05-20 Thread Martin Jansa
On Thu, May 16, 2013 at 09:52:15AM +0200, Martin Jansa wrote: On Thu, May 02, 2013 at 05:18:33PM +0200, Martin Jansa wrote: On Sat, Apr 27, 2013 at 12:54:00PM +0200, Martin Jansa wrote: Updated status, but only change IIRC is fixed php, tbb, android-audiosystem and partially fixed llvm2.9

[OE-core] [PATCH] xserver-xorg: enable xvfb

2013-05-20 Thread Riku Voipio
Currently Xvfb has been enabled in openembedded-core. Xvfb is needed for example in Mauve testsuite. Signed-off-by: Riku Voipio riku.voi...@linaro.org --- meta/recipes-graphics/xorg-xserver/xserver-xorg.inc |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH v5] SLiRP support in runqemu

2013-05-20 Thread Andrei Dinu
runqemu script now takes argument slirp in order to run networking on the qemu machine, without root privileges. changed the runqemu-internal script in order not to activate the tap devices if the option is set. [YOCTO #1474] Signed-off-by: Andrei Dinu andrei.adrianx.d...@intel.com ---

Re: [OE-core] [PATCH] xserver-xorg: enable xvfb

2013-05-20 Thread Burton, Ross
On 20 May 2013 14:02, Riku Voipio riku.voi...@linaro.org wrote: Currently Xvfb has been enabled in openembedded-core. Xvfb is needed for example in Mauve testsuite. Signed-off-by: Riku Voipio riku.voi...@linaro.org Signed-off-by: Ross Burton ross.bur...@intel.com Ross

[OE-core] updates for cogl, clutter and mx

2013-05-20 Thread Tomas Frydrych
There are some issues with this patch set, some of the included patches either do not have Upstream-Status or Signed-off-by tags, please review that. Updated the various patch headers in v.2. Also, I want to confirm that these are all new recipes and will not cause backward PRs (ie do

[OE-core] [PATCH v2 2/8] clutter.bbclass: helper class for clutter and friends

2013-05-20 Thread Tomas Frydrych
From: Tomas Frydrych to...@sleepfive.com Signed-off-by: Tomas Frydrych to...@sleepfive.com --- meta/classes/clutter.bbclass | 28 1 file changed, 28 insertions(+) create mode 100644 meta/classes/clutter.bbclass diff --git a/meta/classes/clutter.bbclass

[OE-core] [PATCH v2 1/8] Remove old clutter recipes

2013-05-20 Thread Tomas Frydrych
From: Tomas Frydrych to...@sleepfive.com Signed-off-by: Tomas Frydrych to...@sleepfive.com --- meta/recipes-graphics/clutter/clutter-1.8_1.8.4.bb | 23 --- meta/recipes-graphics/clutter/clutter-1.8_git.bb | 20 -- meta/recipes-graphics/clutter/clutter-fpu.inc |6 --

[OE-core] [PATCH v2 3/8] New cogl recipe (1.14.0)

2013-05-20 Thread Tomas Frydrych
From: Tomas Frydrych to...@sleepfive.com The package has been renamed to cogl-1.0 instead of cogl-vmajor.vminor, keeping up with the upstream versioning policy (e.g., all 1.x packages install cogl-1.0 pc file and headers and are backward compatible), and to simplify dependency management (worth

[OE-core] [PATCH v2 4/8] New clutter recipe (1.14.4)

2013-05-20 Thread Tomas Frydrych
From: Tomas Frydrych to...@sleepfive.com The package has been renamed to clutter-1.0 instead of clutter-vmajor.vminor, keeping up with the upstream versioning policy (all 1.x packages install clutter-1.0 pc file and headers and are backward compatible), and to simplify dependency management

[OE-core] [PATCH v2 6/8] New clutter-gtk recipe (1.4.2)

2013-05-20 Thread Tomas Frydrych
From: Tomas Frydrych to...@sleepfive.com Signed-off-by: Tomas Frydrych to...@sleepfive.com --- meta/recipes-graphics/clutter/clutter-gtk-1.0.inc | 12 meta/recipes-graphics/clutter/clutter-gtk-1.0_1.4.2.bb |6 ++ 2 files changed, 18 insertions(+) create mode 100644

[OE-core] [PATCH v2 8/8] packagegroup-core-clutter: use clutter-1.0 packages

2013-05-20 Thread Tomas Frydrych
From: Tomas Frydrych to...@sleepfive.com Signed-off-by: Tomas Frydrych to...@sleepfive.com --- .../packagegroups/packagegroup-core-clutter.bb |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[OE-core] [PATCH v2 5/8] New clutter-gst recipe (1.6.0)

2013-05-20 Thread Tomas Frydrych
From: Tomas Frydrych to...@sleepfive.com Signed-off-by: Tomas Frydrych to...@sleepfive.com --- meta/recipes-graphics/clutter/clutter-gst-1.0.inc | 23 ++ .../clutter/clutter-gst-1.0_1.6.0.bb |9 .../clutter/clutter-gst-1.6/cogl-1.14.patch| 48

Re: [OE-core] [PATCH 0/1] systemd: update to 204

2013-05-20 Thread Khem Raj
On Sun, May 19, 2013 at 8:00 PM, Jonathan Liu net...@gmail.com wrote: Tested startup/shutdown and serial getty under QEMU x86. Thats not enough. It should be tested on all qemus before it gets pulled. ___ Openembedded-core mailing list

Re: [OE-core] [PATCH 0/1] systemd: update to 204

2013-05-20 Thread Burton, Ross
On 20 May 2013 16:32, Khem Raj raj.k...@gmail.com wrote: On Sun, May 19, 2013 at 8:00 PM, Jonathan Liu net...@gmail.com wrote: Tested startup/shutdown and serial getty under QEMU x86. Thats not enough. It should be tested on all qemus before it gets pulled. Agreed. And please use -M so

Re: [OE-core] [PATCH V2 4/4] rpm-postinsts.bb: enable postinst logging

2013-05-20 Thread Saul Wold
On 05/19/2013 07:50 PM, qi.c...@windriver.com wrote: From: Chen Qi qi.c...@windriver.com Enable postinst logging by checking the configuration in /etc/ default/postinst. In this way, the postinst logging is enabled if 'debug-tweaks' is in IMAGE_FEATURES, and at the same time, we avoid

Re: [OE-core] [PATCH] runqemu: fix networking issues

2013-05-20 Thread Khem Raj
On Mon, May 20, 2013 at 8:35 AM, Stanacar, StefanX stefanx.stana...@intel.com wrote: Also I think ROUTE too should be changed to use ip instead of the old route command. yes it should be. ___ Openembedded-core mailing list

[OE-core] [dylan][PATCH 00/41] Stable branch cherry-picks (cover letter only)

2013-05-20 Thread Paul Eggleton
These are cherry-picks from master to be applied to the dylan branch for inclusion in the next 1.4 stable release (1.4.1). They have been tested on the Yocto Project autobuilder on top of the existing danny branch. Please review this series for suitability for inclusion into the stable branch.

Re: [OE-core] [PATCH V2 2/4] dpkg: modify the run-postinst script to enable postinst logging

2013-05-20 Thread Paul Eggleton
On Monday 20 May 2013 10:50:29 qi.c...@windriver.com wrote: From: Chen Qi qi.c...@windriver.com Enable postinst logging by checking the configuration in /etc/ default/postinst. In this way, the postinst logging is enabled if 'debug-tweaks' is in IMAGE_FEATURES, and at the same time, we

Re: [OE-core] Clashing man pages

2013-05-20 Thread Mark Hatle
On 5/19/13 7:00 AM, Paul Barker wrote: I'm generating a rootfs image which I intend to be usable interactively so I've added IMAGE_FEATURES += doc-pkgs to my image recipe. do_rootfs fails with the following clashes: | * check_data_file_clashes: Package ncurses-doc wants to install file

Re: [OE-core] [PATCH] qt: fix warning -Wunused-local-typedefs introduced by gcc 4.8

2013-05-20 Thread Paul Eggleton
On Friday 17 May 2013 01:28:42 Andreas Müller wrote: in meta-oe maliit-framework failed with | In file included from | /home/andreas/tmp/oe-core-eglibc/sysroots/overo/usr/include/qt4/QtCore/Qt | Core:53:0,| | from ../utils/core-utils.cpp:18: |

Re: [OE-core] [dylan][PATCH 00/41] Stable branch cherry-picks (cover letter only)

2013-05-20 Thread Otavio Salvador
On Mon, May 20, 2013 at 12:58 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: ... Bruce Ashfield (4): linux-yocto/3.4: iwlwifi, ext4, brtfs warning and -rt fixes kern-tools: anchor and delimit regexs linux-yocto/3.4: update to v3.4.43, ltsi-65311d8 and v3.4.42-rt56

Re: [OE-core] [dylan][PATCH 00/41] Stable branch cherry-picks (cover letter only)

2013-05-20 Thread Paul Eggleton
On Monday 20 May 2013 13:21:29 Otavio Salvador wrote: On Mon, May 20, 2013 at 12:58 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: ... Bruce Ashfield (4): linux-yocto/3.4: iwlwifi, ext4, brtfs warning and -rt fixes kern-tools: anchor and delimit regexs

Re: [OE-core] [dylan][PATCH 00/41] Stable branch cherry-picks (cover letter only)

2013-05-20 Thread Paul Eggleton
On Monday 20 May 2013 17:54:21 Paul Eggleton wrote: On Monday 20 May 2013 13:21:29 Otavio Salvador wrote: On Mon, May 20, 2013 at 12:58 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: ... Bruce Ashfield (4): linux-yocto/3.4: iwlwifi, ext4, brtfs warning and -rt fixes

Re: [OE-core] [PATCH] kernel.bbclass: Add dependency on binutils

2013-05-20 Thread Khem Raj
On May 20, 2013, at 5:22 AM, Mike Crowe m...@mcrowe.com wrote: Compiling the Linux kernel requires binutils; kernel.bbclass uses INHIBIT_DEFAULT_DEPS so it had better depend on binutils explicitly. (The lack of this dependency isn't always a problem because binutils is required to build

Re: [OE-core] Clashing man pages

2013-05-20 Thread Khem Raj
On May 20, 2013, at 9:13 AM, Mark Hatle mark.ha...@windriver.com wrote: Also, with the RPM package manager, if the contents of the two files are the same no conflict is generated. I don't know in this case if that is true or not. But that could be an alternative approach for some of these

[OE-core] OE Changelog since 2013-05-12 until 2013-05-19

2013-05-20 Thread cliff . brake
Changelog since 2013-05-12 until 2013-05-19. Projects included in this report: bitbake: git://git.openembedded.org/bitbake openembedded-core: git://git.openembedded.org/openembedded-core meta-openembedded: git://git.openembedded.org/meta-openembedded meta-angstrom:

[OE-core] openembedded-core@lists.openembedded.org moved to new hardware

2013-05-20 Thread Michael Halstead
openembedded-core@lists.openembedded.org and the other OE lists are now on new hardware at the OSL in Corvallis Oregon USA. The move has just completed and I am monitoring for trouble. I expect there will be a few early issues to work out. Please e-mail me directly or find halstead in IRC on

Re: [OE-core] [PATCH] kernel.bbclass: Add dependency on binutils

2013-05-20 Thread Mike Crowe
On Mon, May 20, 2013 at 10:37:08AM -0700, Khem Raj wrote: On May 20, 2013, at 5:22 AM, Mike Crowe m...@mcrowe.com wrote: Compiling the Linux kernel requires binutils; kernel.bbclass uses INHIBIT_DEFAULT_DEPS so it had better depend on binutils explicitly. (The lack of this dependency

Re: [OE-core] [dylan][PATCH 00/41] Stable branch cherry-picks (cover letter only)

2013-05-20 Thread Bruce Ashfield
On Mon, May 20, 2013 at 1:02 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Monday 20 May 2013 17:54:21 Paul Eggleton wrote: On Monday 20 May 2013 13:21:29 Otavio Salvador wrote: On Mon, May 20, 2013 at 12:58 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: ...

[OE-core] OpenEmbedded lists moved to new hardware

2013-05-20 Thread Michael Halstead
This mailing list has been moved from linuxtogo.org to new hardware at the OSL in Corvallis Oregon USA. The move has just completed and I am monitoring for trouble. I expect there will be a few early issues to work out. Please e-mail me directly or find halstead in IRC on Freenode.net if you

[OE-core] GCC-4.8 and Arm Kernel

2013-05-20 Thread Saul Wold
Folks, We want to move forward to the GCC-4.8 Compiler, what's holding us back right now is a kernel update for ARM. My understanding is there is a patch out there, but it needs to be backported and tested. I have checked with Bruce A. about this and he has limited availability, but will

Re: [OE-core] [PATCH] kernel.bbclass: Add dependency on binutils

2013-05-20 Thread Richard Purdie
On Mon, 2013-05-20 at 10:37 -0700, Khem Raj wrote: On May 20, 2013, at 5:22 AM, Mike Crowe m...@mcrowe.com wrote: Compiling the Linux kernel requires binutils; kernel.bbclass uses INHIBIT_DEFAULT_DEPS so it had better depend on binutils explicitly. (The lack of this dependency isn't

[OE-core] [PATCH v2] systemd: update to 204

2013-05-20 Thread Jonathan Liu
Removed patches integrated upstream. Added backport of fix for utmp not running at shutdown. Updated serial-getty service. Signed-off-by: Jonathan Liu net...@gmail.com --- .../systemd-serialgetty/serial-getty@.service | 16 +- ...se-AC_CHECK_TOOL-for-objcopy-strings-and-.patch | 41 ---

[OE-core] [PATCH 1/1] util-linux: adjust hwclock ALTERNATIVE_PRIORITY

2013-05-20 Thread Joe Slater
Make ALTERNATIVE_PRIORITY[hwclock] dependent on an OVERRIDE so that the hwclock from busybox, if available, will be used for the nslu2 bsp. Independently, add util-linux-agetty to RRECOMMENDS. Signed-off-by: Joe Slater jsla...@windriver.com --- meta/recipes-core/util-linux/util-linux.inc |9

[OE-core] [PATCH 0/1] util-linux: adjust hwclock ALTERNATIVE_PRIORITY

2013-05-20 Thread Joe Slater
I don't know if nslu2 even exists, but I think we should not defeat using util-linux hwclock everywhere because of it. I don't know python, so maybe there is a not so ugly way to compute the priority. As to agetty -- it's an ALTERNATIVE_TARGET, so we might as well include it in what we put on

[OE-core] [PATCH v2] base-files: add /run directory from FHS 3 draft specification

2013-05-20 Thread Jonathan Liu
This adds the /run directory from the Filesystem Hierarchy Standard 3.0 Draft [1] and refactors the filesystem as follows: - Remove creation of /var/volatile/run - Remove creation of /var/volatile/lock - Remove symbolic link from /var/run to /var/volatile/run - Remove symbolic link from /var/lock

Re: [OE-core] [PATCH v2] systemd: update to 204

2013-05-20 Thread Jonathan Liu
On 21/05/2013 9:06 AM, Jonathan Liu wrote: Removed patches integrated upstream. Added backport of fix for utmp not running at shutdown. Updated serial-getty service. Signed-off-by: Jonathan Liu net...@gmail.com --- .../systemd-serialgetty/serial-getty@.service | 16 +-

Re: [OE-core] [PATCH] util-linux: replace package files

2013-05-20 Thread zhangxiao
On 2013年05月17日 15:04, Saul Wold wrote: On 05/16/2013 12:59 PM, zhangxiao wrote: And, another method lies on meta/recipes-core/util-linux/util-linux.inc: --- a/meta/recipes-core/util-linux/util-linux.inc +++ b/meta/recipes-core/util-linux/util-linux.inc @@ -69,11 +69,11 @@ FILES_util-linux-uuidd

Re: [OE-core] GCC-4.8 and Arm Kernel

2013-05-20 Thread Bruce Ashfield
On Mon, May 20, 2013 at 5:52 PM, Saul Wold s...@linux.intel.com wrote: Folks, We want to move forward to the GCC-4.8 Compiler, what's holding us back right now is a kernel update for ARM. My understanding is there is a patch out there, but it needs to be backported and tested. I have

Re: [OE-core] [PATCH V2 2/4] dpkg: modify the run-postinst script to enable postinst logging

2013-05-20 Thread ChenQi
On 05/21/2013 12:09 AM, Paul Eggleton wrote: On Monday 20 May 2013 10:50:29 qi.c...@windriver.com wrote: From: Chen Qi qi.c...@windriver.com Enable postinst logging by checking the configuration in /etc/ default/postinst. In this way, the postinst logging is enabled if 'debug-tweaks' is in

Re: [OE-core] [PATCH V2 4/4] rpm-postinsts.bb: enable postinst logging

2013-05-20 Thread ChenQi
On 05/20/2013 11:38 PM, Saul Wold wrote: On 05/19/2013 07:50 PM, qi.c...@windriver.com wrote: From: Chen Qi qi.c...@windriver.com Enable postinst logging by checking the configuration in /etc/ default/postinst. In this way, the postinst logging is enabled if 'debug-tweaks' is in

[OE-core] How about separate client only mode from nfs-utils?

2013-05-20 Thread zhangxiao
Hi Experts, I find current nfs-utils just support client+server mode. No client only mode support. Yes, we can say the client can be used normally in this full function mode. But... I wonder if we have any plan to make it? I think only script modification is OK. To start necessary daemon for

[OE-core] [PATCH v3] base-files: add /run directory from FHS 3 draft specification

2013-05-20 Thread Jonathan Liu
This adds the /run directory from the Filesystem Hierarchy Standard 3.0 Draft [1] and refactors the filesystem as follows: - Remove creation of /var/volatile/run - Remove creation of /var/volatile/lock - Remove symbolic link from /var/run to /var/volatile/run - Remove symbolic link from /var/lock

Re: [OE-core] How about separate client only mode from nfs-utils?

2013-05-20 Thread zhangxiao
On 2013年05月21日 11:02, zhangxiao wrote: Hi Experts, I find current nfs-utils just support client+server mode. No client only mode support. Yes, we can say the client can be used normally in this full function mode. But... I wonder if we have any plan to make it? I think only script modification