Re: [OE-core] [PATCHv2 00/14] Deterministic dependencies II

2013-10-07 Thread Burton, Ross
On 5 October 2013 13:22, Martin Jansa martin.ja...@gmail.com wrote: Martin Jansa (14): gstreamer1.0-libav: Add PACKAGECONFIG for orc libunique: Add PACKAGECONFIG for dbus aspell: Add PACKAGECONFIG for curses xf86-input-synaptics: Add dependency on libxtst xdpyinfo: Add dependency

Re: [OE-core] [PATCH 1/1] kernel: restore scripts in the sysroot

2013-10-07 Thread Richard Purdie
On Mon, 2013-10-07 at 01:02 -0400, Bruce Ashfield wrote: On 13-10-04 3:46 AM, Richard Purdie wrote: On Thu, 2013-10-03 at 20:02 -0400, Bruce Ashfield wrote: When building against the sysroot, out of tree modules can require modpost and other utilities normally found in the kernel's scripts

Re: [OE-core] [PATCH] qemu: fix nativesdk build without x11

2013-10-07 Thread Burton, Ross
On 5 October 2013 11:11, Eric Bénard e...@eukrea.com wrote: when x11 is not defined in DISTRO_FEATURES, there are no x11 headers so True is not defined leading to : | ui/sdl.c:62:8: warning: type defaults to 'int' in declaration of 'doing_grabs' [-Wimplicit-int] | static doing_grabs = True;

[OE-core] [PATCH 4/4] xf86-video-vesa: upgrade to 2.3.3

2013-10-07 Thread Ross Burton
Drop Remove-mibstore.h.patch as that was a backport from git and is integrated into 2.3.3. Signed-off-by: Ross Burton ross.bur...@intel.com --- .../xf86-video-vesa/Remove-mibstore.h.patch| 37 .../xorg-driver/xf86-video-vesa_2.3.2.bb | 23

[OE-core] [PATCH 1/4] libsm: upgrade to 1.2.2

2013-10-07 Thread Ross Burton
Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-graphics/xorg-lib/libsm_1.2.1.bb | 24 meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb | 23 +++ 2 files changed, 23 insertions(+), 24 deletions(-) delete mode 100644

[OE-core] [PATCH 3/4] libxpm: upgrade to 3.5.11

2013-10-07 Thread Ross Burton
License checksum changed as a typo was fixed upstream. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-graphics/xorg-lib/libxpm_3.5.10.bb | 28 --- meta/recipes-graphics/xorg-lib/libxpm_3.5.11.bb | 27 ++ 2 files changed, 27

[OE-core] [PATCH 2/4] libxmu: upgrade to 1.1.2

2013-10-07 Thread Ross Burton
License checksum changed as some missing copyright notices and dates were added. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-graphics/xorg-lib/libxmu_1.1.1.bb | 34 meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb | 33 +++ 2

Re: [OE-core] [PATCH] qemu: fix nativesdk build without x11

2013-10-07 Thread Eric Bénard
Le Mon, 7 Oct 2013 12:34:02 +0100, Burton, Ross ross.bur...@intel.com a écrit : On 5 October 2013 11:11, Eric Bénard e...@eukrea.com wrote: when x11 is not defined in DISTRO_FEATURES, there are no x11 headers so True is not defined leading to : | ui/sdl.c:62:8: warning: type defaults to

Re: [OE-core] [PATCHv2 00/14] Deterministic dependencies II

2013-10-07 Thread Martin Jansa
On Mon, Oct 07, 2013 at 10:32:13AM +0100, Burton, Ross wrote: On 5 October 2013 13:22, Martin Jansa martin.ja...@gmail.com wrote: Martin Jansa (14): gstreamer1.0-libav: Add PACKAGECONFIG for orc libunique: Add PACKAGECONFIG for dbus aspell: Add PACKAGECONFIG for curses

[OE-core] opkg-devel group (was: Re: [PATCH 08/11] opkg: Add --no-install-recommends option.)

2013-10-07 Thread Andreas Oberritter
Hello Paul, On 18.09.2013 17:14, Paul Barker wrote: I'm the new maintainer for opkg, I'd be happy to look at this patch and any others if you could send them to opkg-de...@googlegroups.com via git send-email. I like the idea of both '--no-install-recommends' and '--add-exclude'. I just tried

[OE-core] [PATCH] sysvinit-inittab: Fix getting tty device name from SERIAL_CONSOLES entries

2013-10-07 Thread Shakeel, Muhammad
From: Muhammad Shakeel muhammad_shak...@mentor.com Currently the part after tty in the device name go into label along with everything after that part. For example if SERIAL_CONSOLES=115200;vt100;ttyS0 than label=S0 but if SERIAL_CONSOLES=115200;ttyS0;vt100 than label=S0;vt100. If

[OE-core] [PATCH] uboot-config.bbclass: Fix use without IMAGE_FSTYPES appending

2013-10-07 Thread Otavio Salvador
Before checking if the image is a valid value, we need to check if the list of items is big enough or we will raise an exception. Reported-by: Lauren Post lauren.p...@freescale.com Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/uboot-config.bbclass | 3 ++- 1 file

Re: [OE-core] [PATCH 1/1] kernel: restore scripts in the sysroot

2013-10-07 Thread Bruce Ashfield
On 13-10-07 05:58 AM, Richard Purdie wrote: On Mon, 2013-10-07 at 01:02 -0400, Bruce Ashfield wrote: On 13-10-04 3:46 AM, Richard Purdie wrote: On Thu, 2013-10-03 at 20:02 -0400, Bruce Ashfield wrote: When building against the sysroot, out of tree modules can require modpost and other

Re: [OE-core] [PATCH] uboot-config.bbclass: Fix use without IMAGE_FSTYPES appending

2013-10-07 Thread Otavio Salvador
On Mon, Oct 7, 2013 at 12:30 PM, Post Lauren-RAA013 raa...@freescale.com wrote: This works and is needed otherwise we can't set the UBOOT_CONFIG for uboot configs that do not require an FSTYPE. Please accept this change otherwise some of our uboot builds are broken. Thanks for confirming it

Re: [OE-core] opkg-devel group (was: Re: [PATCH 08/11] opkg: Add --no-install-recommends option.)

2013-10-07 Thread Paul Barker
On 7 October 2013 16:00, Andreas Oberritter o...@opendreambox.org wrote: Hello Paul, I just tried to submit some unrelated patches, but received a DSN due to not being subscribed to the opkg-devel group. If I understand correctly, this would require setting up a google account first. Would

Re: [OE-core] [PATCH 1/1] kernel: restore scripts in the sysroot

2013-10-07 Thread Richard Purdie
On Mon, 2013-10-07 at 11:20 -0400, Bruce Ashfield wrote: I had it slightly wrong. Try: kernelheaders_sstate_postinst () { if [ ${BB_CURRENTTASK} = populate_sysroot -o ${BB_CURRENTTASK} = populate_sysroot_setscene ] then ( cd ${KERNEL_SRC_PATH};

Re: [OE-core] [PATCH 1/1] kernel: restore scripts in the sysroot

2013-10-07 Thread Bruce Ashfield
On 13-10-07 12:18 PM, Richard Purdie wrote: On Mon, 2013-10-07 at 11:20 -0400, Bruce Ashfield wrote: I had it slightly wrong. Try: kernelheaders_sstate_postinst () { if [ ${BB_CURRENTTASK} = populate_sysroot -o ${BB_CURRENTTASK} = populate_sysroot_setscene ] then

[OE-core] [PATCH 3/5] atk: upgrade to 2.10.0.

2013-10-07 Thread Ross Burton
Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-support/atk/atk_2.10.0.bb | 23 +++ meta/recipes-support/atk/atk_2.8.0.bb | 23 --- 2 files changed, 23 insertions(+), 23 deletions(-) create mode 100644

[OE-core] [PATCH 1/5] gnome-desktop-testing: add

2013-10-07 Thread Ross Burton
gnome-desktop-testing is a test runner for GNOME-style Installed Tests, and will be used by run-ptest to execute these unit test suites. Signed-off-by: Ross Burton ross.bur...@intel.com --- .../files/no-introspection.patch| 19 +++

[OE-core] [PATCH 2/5] glib-2.0: upgrade to 2.28.0

2013-10-07 Thread Ross Burton
Drop the ptest patches and instead use --enable-installed-tests, updating run-ptest to invoke gnome-desktop-testing-runner. Drop the x32 build patch, upstream has integrated a similar fix. Signed-off-by: Ross Burton ross.bur...@intel.com --- .../glib-2.0/glib-2.0/Makefile-ptest.patch |

[OE-core] [PATCH 4/5] at-spi2-core: upgrade to 2.10.0.

2013-10-07 Thread Ross Burton
Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-support/atk/at-spi2-core_2.10.0.bb | 17 + meta/recipes-support/atk/at-spi2-core_2.8.0.bb | 17 - 2 files changed, 17 insertions(+), 17 deletions(-) create mode 100644

[OE-core] [PATCH 5/5] at-spi2-gtk: upgrade to 2.10.0

2013-10-07 Thread Ross Burton
Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-support/atk/at-spi2-atk_2.10.0.bb | 19 +++ meta/recipes-support/atk/at-spi2-atk_2.8.1.bb | 19 --- 2 files changed, 19 insertions(+), 19 deletions(-) create mode 100644

[OE-core] OE Changelog since 2013-09-29 until 2013-10-06

2013-10-07 Thread cliff . brake
Changelog since 2013-09-29 until 2013-10-06. 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:

Re: [OE-core] [PATCHv2 00/14] Deterministic dependencies II

2013-10-07 Thread Richard Purdie
On Mon, 2013-10-07 at 15:16 +0200, Martin Jansa wrote: On Mon, Oct 07, 2013 at 10:32:13AM +0100, Burton, Ross wrote: On 5 October 2013 13:22, Martin Jansa martin.ja...@gmail.com wrote: Martin Jansa (14): gstreamer1.0-libav: Add PACKAGECONFIG for orc libunique: Add PACKAGECONFIG for

Re: [OE-core] [PATCH V2 1/1] sysvinit: fix missing of boot log

2013-10-07 Thread ChenQi
ping On 09/26/2013 06:02 PM, qi.c...@windriver.com wrote: From: Chen Qi qi.c...@windriver.com Previously, our system had no boot log even if the bootlogd daemon was started correctly. The root cause is that the log file doesn't exist when starting the bootlogd. Add '-c' option to bootlogd so

Re: [OE-core] [dylan, master][PATCH] autotools.bbclass: Fix race with sed-native

2013-10-07 Thread Richard Tollerton
richard.pur...@linuxfoundation.org writes: On Fri, 2013-10-04 at 20:22 -0700, Saul Wold wrote: On 10/04/2013 04:35 PM, Richard Tollerton wrote: This also starts to create more front end bottle next on autotools related items before we can really start to parallelize the build. More

Re: [OE-core] [dylan, master][PATCH] autotools.bbclass: Fix race with sed-native

2013-10-07 Thread Richard Tollerton
s...@linux.intel.com writes: diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 66c0f5d..2bb2aa3 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -7,17 +7,25 @@ def autotools_dep_prepend(d): if pn in