[OE-core] contrib branches cleanup call

2012-08-16 Thread Khem Raj
Hi All, There are many branches in openembedded-core-contrib tree which have been merged upstream. So please go through your list and delete the one's which are already merged or otherwise not needed. Thank you -Khem ___ Openembedded-core mailing list

[OE-core] Toolchain rework, call for testing

2012-08-16 Thread Khem Raj
Hi All Recently glibc build has been simplified upstream. It has dropped the dependency on libgcc_s and libgcc_eh for building glibc itself. This means that we can simplify our toolchain bootstrap a bit by dropping 1 of the 3 cross gcc build stages. We do not need gcc-cross-intermediate anymore. T

[OE-core] [PATCH 3/3] adt-installer: add support for relocatable SDK

2012-08-16 Thread Laurentiu Palcu
Since we made the SDK relocatable, we have to add this functionality to adt-installer too. Other: - Changed tabs to spaces in the recipe file too. Signed-off-by: Laurentiu Palcu --- .../installer/adt-installer/adt_installer | 11 ++ .../adt-installer/scripts/adt_installer_internal

[OE-core] [PATCH 2/3] package.bbclass: change RPATHs for cross-canadian binaries

2012-08-16 Thread Laurentiu Palcu
When building the meta-toolchain, the binaries didn't get relocatable RPATHs. They were hardcoded to the default path. Hence, if one had already installed one SDK in the default path and one in another location, the later toolchain's binaries would search and load libraries from the first location,

[OE-core] [PATCH 0/3] Add support for relocatable SDK to ADT installer and some fixes

2012-08-16 Thread Laurentiu Palcu
Hi, This patchset adds support for relocating SDK to ADT installer and a couple of fixes. Thanks, Laurentiu The following changes since commit af847d36375aa53f0c1ee2a00c97ba9f38837d1b: bitbake: bitbake: build.py: Add stampdir argument to cached_mtime_noerror (2012-08-16 12:27:41 +0100) are

[OE-core] [PATCH 1/3] populate_sdk_base.bbclass: fix SDK relocation issues

2012-08-16 Thread Laurentiu Palcu
The problem appears if multiple setup environment scripts are found. In order to find only the script we're interested in, I removed globbing in matching pattern with ${REAL_MULTIMACH_TARGET_SYS} that will be expanded to the correct string. Also, fix a problem when changing the scripts/configs. Th

Re: [OE-core] [discussion] perf: specify SLANG_INC dir for perf

2012-08-16 Thread Liang Li
On 2012-08-16 23:58, Richard Purdie wrote: > On Thu, 2012-08-16 at 11:33 -0400, Bruce Ashfield wrote: > > On 12-08-13 10:17 PM, Liang Li wrote: > > > Hi Richard, > > > > > > Ping ... > > > > > > Hopefully you could recall sufficient context from this thread about > > > the 'include path for slang.

[OE-core] [PATCH 1/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr

2012-08-16 Thread jackie.huang
From: Jackie Huang The copying for rules.mk was happened in do_configure_prepend, but it will be replaced by the one generated by configure, in which APR_MKEXPORT points to the workdir of apr and cause compile filure when the workdir of apr is removed. So change the copying in _prepend to _append

[OE-core] [PATCH 0/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr

2012-08-16 Thread jackie.huang
From: Jackie Huang The copying for rules.mk was happened in do_configure_prepend, but it will be replaced by the one generated by configure, in which APR_MKEXPORT points to the workdir of apr and cause compile filure when the workdir of apr is removed. So change the copying in _prepend to _append

[OE-core] [PATCH] perf_3.4.bb: update to build against older kernels

2012-08-16 Thread Matthew McClintock
Removes a make install-python_ext when not present since older versions of perf lack this install rule This also fixes a library issue on older kernels building with a newer toolchain where libaries that would previously be pulled in are no longer. So we add them manually. Signed-off-by: Matthew

Re: [OE-core] [oe-commits] Jackie Huang : gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread jhuang0
On 8/17/2012 6:02 AM, Martin Jansa wrote: On Thu, Aug 16, 2012 at 03:06:35PM +, Huang, Jie (Jackie) wrote: On Thu, Aug 16, 2012 at 02:30:51PM +, Huang, Jie (Jackie) wrote: On Thu, Aug 16, 2012 at 12:33:08PM +0200, Martin Jansa wrote: On Wed, Aug 15, 2012 at 01:32:02PM +, g...@g

[OE-core] [PATCH] cross-localedef-native_2.16.bb: fix for CentOS 5.X

2012-08-16 Thread Matthew McClintock
| gcc -isystem/home/mattsm/git/poky/build-master/tmp/sysroots/x86_64-linux/usr/include -isystem/home/mattsm/git/poky/build-master/tmp/sysroots/x86_64-linux/usr/include -O2 -pipe -DNOT_IN_libc=1 -DNO_SYSCONF -DNO_UNCOMPRESS -DLOCALE_PATH='"/usr/local/lib/locale:/usr/local/share/i18n"' -DLOCALE

[OE-core] [PATCH] avahi: fix packaging of avahi-autoipd

2012-08-16 Thread Marc Reilly
- Avahi's "avahi-autoipd" file is in the dhcp/ folder, not dhcp3/ - udhcpc files were being installed but not being shipped in avahi-autoipd - do_install override for avahi-autoipd was not being called and is not required, so join it into regular do_install. - While at it, fixup string quoting in

[OE-core] [V2 PATCH 6/6] busybox: Package hwclock.sh initscript separately

2012-08-16 Thread Andrei Gherzan
We package this separately to be able to pull this in only if this makes sense for the MACHINE. Signed-off-by: Andrei Gherzan --- meta/recipes-core/busybox/busybox.inc |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipe

[OE-core] [V2 PATCH 5/6] task-core-boot: Add busybox-hwclock if MACHINE_FEATURES contains rtc

2012-08-16 Thread Andrei Gherzan
For machines with no hardware clock it makes no sense to have this init stript. Moreover, we avoid a boot error in this way. Signed-off-by: Andrei Gherzan --- meta/recipes-core/tasks/task-core-boot.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/tasks/task-core-boot.b

[OE-core] [V2 PATCH 4/6] bitbake.conf: Add rtc to MACHINE_FEATURES_BACKFILL

2012-08-16 Thread Andrei Gherzan
This was done this way so that the current machine configuration would remain unaffected. The rtc MACHINE_FEATURE will specify if a real time clock is avalaible. Signed-off-by: Andrei Gherzan --- meta/conf/bitbake.conf |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/c

[OE-core] [V2 PATCH 3/6] bitbake.conf: Add MACHINE_FEATURES_BACKFILL and append to MACHINE_FEATURES

2012-08-16 Thread Andrei Gherzan
This is works the way DISTRO_FEATURES_BACKFILL does. Signed-off-by: Andrei Gherzan --- meta/conf/bitbake.conf |3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 296ebc1..4773d50 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitba

[OE-core] [V2 PATCH 2/6] bitbake.conf: Use the new form of features_backfill function

2012-08-16 Thread Andrei Gherzan
This function was modified in order to be used with other variables then DISTRO_FEATURES. Use this new function name and add the parameter needed. Signed-off-by: Andrei Gherzan --- meta/conf/bitbake.conf |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/bitbake.con

[OE-core] [V2 PATCH 1/6] utils.py: Modify and rename distro_features_backfill python function

2012-08-16 Thread Andrei Gherzan
This function was written to be used with DISTRO_FEATURES. This behavior is usefull with MACHINE_FEATURES as well. Signed-off-by: Andrei Gherzan --- meta/lib/oe/utils.py |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py in

[OE-core] [V2 PATCH 0/6] Don't have hwclock init scripts for machines without rtc

2012-08-16 Thread Andrei Gherzan
V2: Remove: 3f88694 subversion: Add gettext to DEPENDS as msgfmt is needed at compile time Sent as (it should be) a different pull request. I dropped the idea of maching Busybox HW dependent. A bad idea indeed. Now, hwclock init script is packaged separately and pulled into image only if MACHINE_

[OE-core] [V2 PATCH 1/1] subversion: Inherit gettext as msgfmt is needed at compile time

2012-08-16 Thread Andrei Gherzan
Avoid error: | /bin/bash: /tmp/sysroots/i686-linux/usr/bin/msgfmt: No such file or directory | make: *** [subversion/po/de.mo] Error 127 | make: *** Waiting for unfinished jobs | ERROR: oe_runmake failed Signed-off-by: Andrei Gherzan --- .../subversion/subversion_1.7.2.bb |

[OE-core] [V2 PATCH 0/1] Inherit gettext in subversion

2012-08-16 Thread Andrei Gherzan
V2: Send the version of din patch where gettext is inherited The following changes since commit af847d36375aa53f0c1ee2a00c97ba9f38837d1b: bitbake: bitbake: build.py: Add stampdir argument to cached_mtime_noerror (2012-08-16 12:27:41 +0100) are available in the git repository at: git://git.

Re: [OE-core] [oe-commits] Jackie Huang : gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread Martin Jansa
On Thu, Aug 16, 2012 at 03:06:35PM +, Huang, Jie (Jackie) wrote: > > > >On Thu, Aug 16, 2012 at 02:30:51PM +, Huang, Jie (Jackie) wrote: > >> > > >> >On Thu, Aug 16, 2012 at 12:33:08PM +0200, Martin Jansa wrote: > >> >> On Wed, Aug 15, 2012 at 01:32:02PM +, g...@git.openembedded.org >

Re: [OE-core] [PATCH 5/7] subversion: Add gettext to DEPENDS as msgfmt is needed at compile time

2012-08-16 Thread Andrei Gherzan
On Fri, Aug 17, 2012 at 12:57 AM, Martin Jansa wrote: > On Fri, Aug 17, 2012 at 12:32:48AM +0300, Andrei Gherzan wrote: > > Avoid error: > > | /bin/bash: /tmp/sysroots/i686-linux/usr/bin/msgfmt: No such file > or > > directory > > shouldn't this be gettext-native or inherit gettext then? > > Bad p

Re: [OE-core] [PATCH 5/7] subversion: Add gettext to DEPENDS as msgfmt is needed at compile time

2012-08-16 Thread Martin Jansa
On Fri, Aug 17, 2012 at 12:32:48AM +0300, Andrei Gherzan wrote: > Avoid error: > | /bin/bash: /tmp/sysroots/i686-linux/usr/bin/msgfmt: No such file or > directory shouldn't this be gettext-native or inherit gettext then? > | make: *** [subversion/po/de.mo] Error 127 > | make: *** Waiting for unfi

Re: [OE-core] [PATCH 1/2] make: add make-replacement-native 3.81

2012-08-16 Thread Martin Jansa
On Thu, Aug 16, 2012 at 10:30:37PM +0200, Andreas Müller wrote: > On Wed, Aug 15, 2012 at 11:40 PM, Phil Blundell wrote: > > On Wed, 2012-08-15 at 22:17 +0100, Burton, Ross wrote: > >> On 15 August 2012 22:12, Martin Jansa wrote: > >> > eglibc was failing to build with make-3.81 > >> > https://bu

[OE-core] [PATCH 6/7] task-core-boot: Add busybox-hwclock if MACHINE_FEATURES contains rtc

2012-08-16 Thread Andrei Gherzan
For machines with no hardware clock it makes no sense to have this init stript. Moreover, we avoid a boot error in this way. Signed-off-by: Andrei Gherzan --- meta/recipes-core/tasks/task-core-boot.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/tasks/task-core-boot.b

[OE-core] [PATCH 7/7] busybox: Package hwclock.sh initscript separately

2012-08-16 Thread Andrei Gherzan
We package this separately to be able to pull this in only if this makes sense for the MACHINE. Signed-off-by: Andrei Gherzan --- meta/recipes-core/busybox/busybox.inc |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipe

[OE-core] [PATCH 4/7] bitbake.conf: Add rtc to MACHINE_FEATURES_BACKFILL

2012-08-16 Thread Andrei Gherzan
This was done this way so that the current machine configuration would remain unaffected. The rtc MACHINE_FEATURE will specify if a real time clock is avalaible. Signed-off-by: Andrei Gherzan --- meta/conf/bitbake.conf |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/c

[OE-core] [PATCH 3/7] bitbake.conf: Add MACHINE_FEATURES_BACKFILL and append to MACHINE_FEATURES

2012-08-16 Thread Andrei Gherzan
This is works the way DISTRO_FEATURES_BACKFILL does. Signed-off-by: Andrei Gherzan --- meta/conf/bitbake.conf |3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 296ebc1..4773d50 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitba

[OE-core] [PATCH 5/7] subversion: Add gettext to DEPENDS as msgfmt is needed at compile time

2012-08-16 Thread Andrei Gherzan
Avoid error: | /bin/bash: /tmp/sysroots/i686-linux/usr/bin/msgfmt: No such file or directory | make: *** [subversion/po/de.mo] Error 127 | make: *** Waiting for unfinished jobs | ERROR: oe_runmake failed Signed-off-by: Andrei Gherzan --- .../subversion/subversion_1.7.2.bb |

[OE-core] [PATCH 2/7] bitbake.conf: Use the new form of features_backfill function

2012-08-16 Thread Andrei Gherzan
This function was modified in order to be used with other variables then DISTRO_FEATURES. Use this new function name and add the parameter needed. Signed-off-by: Andrei Gherzan --- meta/conf/bitbake.conf |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/bitbake.con

[OE-core] [PATCH 1/7] utils.py: Modify and rename distro_features_backfill python function

2012-08-16 Thread Andrei Gherzan
This function was written to be used with DISTRO_FEATURES. This behavior is usefull with MACHINE_FEATURES as well. Signed-off-by: Andrei Gherzan --- meta/lib/oe/utils.py |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py in

[OE-core] [PATCH 0/7] hwclock and a fix

2012-08-16 Thread Andrei Gherzan
I dropped the idea of maching Busybox HW dependent. A bad idea indeed. Now, hwclock init script is packaged separately and pulled into image only if MACHINE_FEATURES contains rtc value. The inclusion of rtc is done in a BACKFILL way. This pull req. adds a fix which i got into it while working on

Re: [OE-core] [PATCH 1/2] make: add make-replacement-native 3.81

2012-08-16 Thread Andreas Müller
On Wed, Aug 15, 2012 at 11:40 PM, Phil Blundell wrote: > On Wed, 2012-08-15 at 22:17 +0100, Burton, Ross wrote: >> On 15 August 2012 22:12, Martin Jansa wrote: >> > eglibc was failing to build with make-3.81 >> > https://bugzilla.yoctoproject.org/show_bug.cgi?id=2314 >> > >> > so I guess once thi

Re: [OE-core] [PATCH] base.bbclass: fix PACKAGECONFIG handling code

2012-08-16 Thread Saul Wold
On 08/16/2012 10:48 AM, Saul Wold wrote: On 08/02/2012 09:06 AM, Yao Zhao wrote: PACKAGECONFIG flag code only handles that when it has 3 or 4 items in flag, it may have a stale data if some flags doesn't need DEPENDS and RDEPENDS. Signed-off-by: Yao Zhao --- meta/classes/base.bbclass | 25

Re: [OE-core] [PATCH 0/1] sstate-cache-management.sh: update it for the new layout

2012-08-16 Thread Saul Wold
On 08/14/2012 07:01 AM, Robert Yang wrote: The following changes since commit efcb0a81d8ab5d8e250c677cd6919b19172683d1: documentation/poky-ref-manual/ref-structure.xml: deleting images (2012-08-14 09:34:58 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contr

Re: [OE-core] [PATCH 0/1] sysfsutils: install libs to base_libdir

2012-08-16 Thread Saul Wold
On 08/07/2012 05:14 AM, wenzong@windriver.com wrote: From: Wenzong Fan Fix the warning form pcmciautils building: "WARNING: QA Issue: pcmciautils: /sbin/pccardctl, installed in the base_prefix, requires a shared library under exec_prefix (/usr): libsysfs.so.2 => /usr/lib/libsysfs.so.2" Ju

Re: [OE-core] [PATCH 1/2] man: fix RDEPENDS and reformat recipe

2012-08-16 Thread Saul Wold
On 08/13/2012 12:48 AM, Koen Kooi wrote: Signed-off-by: Koen Kooi --- meta/recipes-extended/man/man_1.6f.bb |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meta/recipes-extended/man/man_1.6f.bb b/meta/recipes-extended/man/man_1.6f.bb index 9f75307..3dce1ae 10064

Re: [OE-core] [PATCH] libdrm: package update 2.4.35 -> 2.4.37

2012-08-16 Thread Saul Wold
On 08/12/2012 11:14 PM, Constantin Musca wrote: Signed-off-by: Constantin Musca --- .../drm/{libdrm_2.4.35.bb => libdrm_2.4.37.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/drm/{libdrm_2.4.35.bb => libdrm_2.4.37.bb} (50%) diff --git a/met

Re: [OE-core] [PATCH 0/1] at 3.1.13: get 'at' depends on 'flex-native' explicitly

2012-08-16 Thread Saul Wold
On 08/08/2012 07:59 PM, wenzong@windriver.com wrote: From: Wenzong Fan 'at' needs flex to generate source file lex.yy.c, but it doesn't depend on flex-native directly; This maybe cause a do_compile failure if flex-native is not built or included in project. Error message is: error: le

Re: [OE-core] [PATCH V2] cracklib, zlib, perl: install libz, libcrack to /lib instead of /usr/libxx

2012-08-16 Thread Saul Wold
On 08/16/2012 11:22 AM, Saul Wold wrote: On 08/08/2012 11:00 AM, Yao Zhao wrote: In order to fix the QA Issue for libpam which installed to /lib but reference /usr/libxx/libz and libcrack, install libz and libcrack to /lib. Modify perl recipe to add STAGING_BASELIBDIR to library search path, or

Re: [OE-core] [PATCH] kernel.bbclass: Preserve generated headers

2012-08-16 Thread Saul Wold
On 08/16/2012 11:22 AM, Saul Wold wrote: On 07/31/2012 08:10 AM, Khem Raj wrote: asm/unistd.h includes asm/unistd_64.h on x86_64 and asm/unistd_32.h on i386 but these files are generated files in 3.4 and when we do 'make clean' they get deleted and it shows up as an error when building external

Re: [OE-core] [PATCH 0/2] Make PNBLACKLIST work with multilibs, code cleanup

2012-08-16 Thread Saul Wold
On 08/10/2012 03:57 PM, Peter Seebach wrote: First, make PNBLACKLIST work with multilib builds. Second, just some quick cleanup of the multilib logic that handles PREFERRED_PROVIDER, PREFERRED_VERSION, and now also PNBLACKLIST. The following changes since commit 5290e82ecef08b5e573d7442627276d7

Re: [OE-core] [PATCH] dbus: Fix pid file in dbus init script

2012-08-16 Thread Saul Wold
On 08/10/2012 12:00 PM, Andy Ross wrote: The PIDFILE (/var/run/dbus/pid) referenced by /etc/init.d/dbus-1 did not match the path (/var/run/messagebus.pid) configured in /etc/dbus-1/system.conf, so the initscript could start the daemon, but not stop it. Also remove needless directory ownership lo

Re: [OE-core] [PATCH] gettext-0.18: explicitly disable acl.

2012-08-16 Thread Saul Wold
On 08/10/2012 04:29 AM, xin.ouy...@windriver.com wrote: From: Xin Ouyang gettext-0.18 gets a new option for acl, but we do not place acl into DEPENDS. So, explicitly disable acl for deterministic builds. Signed-off-by: Xin Ouyang --- meta/recipes-core/gettext/gettext_0.18.1.1.bb |3 ++-

Re: [OE-core] [PATCH] pigz: Update to upstream version 2.2.5

2012-08-16 Thread Saul Wold
On 08/10/2012 02:58 AM, Björn Stenberg wrote: Also added beginline/endline to LIC_FILES_CHKSUM to not track whole pigz.c. Signed-off-by: Björn Stenberg --- .../pigz/{pigz_2.2.4.bb => pigz_2.2.5.bb} |8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) rename meta/recip

Re: [OE-core] [PATCH 0/1] sysklogd: removed tabs from syslog.conf

2012-08-16 Thread Saul Wold
On 08/10/2012 02:07 AM, Mihai Lindner wrote: Yocto #2926: syslog.conf should not have tabs within the selector field. Removed tabs from the selector field of syslog rules. Tabs or spaces should be used, in syslog.conf, only when separating selectors from actions. Signed-off-by: Mihai Lindner --

Re: [OE-core] [PATCH 0/1] gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread Saul Wold
On 08/08/2012 07:30 PM, jackie.hu...@windriver.com wrote: From: Jackie Huang If gtk+ is added to core-image-minimal, postinstall script failed on boot: Running postinst /etc/rpm-postinsts/104... gtk-update-icon-cache: No theme index file. ERROR: postinst /etc/rpm-postinsts/104 failed. This pa

Re: [OE-core] [PATCH V2] cracklib, zlib, perl: install libz, libcrack to /lib instead of /usr/libxx

2012-08-16 Thread Saul Wold
On 08/08/2012 11:00 AM, Yao Zhao wrote: In order to fix the QA Issue for libpam which installed to /lib but reference /usr/libxx/libz and libcrack, install libz and libcrack to /lib. Modify perl recipe to add STAGING_BASELIBDIR to library search path, original recipe only has STAGING_LIBDIR, /li

Re: [OE-core] [PATCH] grub: Update to upstream stable 2.00

2012-08-16 Thread Saul Wold
On 08/09/2012 12:50 AM, Radu Moisan wrote: Signed-off-by: Radu Moisan --- ...rub-1.99-gcc-4.7.0-strict-aliasing-errors.patch | 147 ...b-1.99-gcc-4.7.0-uninitialized-var-errors.patch | 41 - .../grub/files/grub-1.99-gcc-4.7.0.patch | 34 .../files/gr

Re: [OE-core] [PATCH] kernel.bbclass: Preserve generated headers

2012-08-16 Thread Saul Wold
On 07/31/2012 08:10 AM, Khem Raj wrote: asm/unistd.h includes asm/unistd_64.h on x86_64 and asm/unistd_32.h on i386 but these files are generated files in 3.4 and when we do 'make clean' they get deleted and it shows up as an error when building external modules. May be its a 3.4 kernel bug may b

Re: [OE-core] [PATCH V2] gstreamer: gst-ffmpeg: fix build issues for libav

2012-08-16 Thread Saul Wold
On 08/08/2012 11:49 AM, Yao Zhao wrote: 1.The included libav configure is not generated by autotools modify recipe to use correct toolchain wrapper with configure 2.add bzip2 dependency explicitly. or configure will detect whether libbz2 is installed, if bzip2 is triggered earlier then it

Re: [OE-core] [PATCH] pango: upgrade to upstream stable 1.30.0

2012-08-16 Thread Saul Wold
On 08/06/2012 06:07 AM, Radu Moisan wrote: Signed-off-by: Radu Moisan --- .../pango/pango-1.28.4/noconst.patch | 408 .../multilib-fix-clean.patch |0 .../{pango-1.28.4 => pango-1.30.0}/no-tests.patch | 14 +- .../pango/{pango

Re: [OE-core] [PATCH] qemu: backport patch to fix pl031 RTC

2012-08-16 Thread Saul Wold
On 08/07/2012 10:35 PM, rongqing...@windriver.com wrote: From: Roy.Li Intergrate the patch from: http://repo.or.cz/w/qemu.git/commit/13a16f1d91fc7a46b65b22a33f6ffea1b826a097 Signed-off-by: Roy.Li --- ...-Actually-raise-interrupt-on-timer-expiry.patch | 41 meta/recip

Re: [OE-core] [PATCH 0/1] tcl: uncomment a line that causing TCL_SRC_DIR point to the workdir

2012-08-16 Thread Saul Wold
On 08/07/2012 10:11 PM, jackie.hu...@windriver.com wrote: From: Jackie Huang The line 'sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh' is commented somehow in previous commit, so that TCL_SRC_DIR point to the tcl workdir which will cause package that use it fail to configure or compile

Re: [OE-core] [PATCH] libxpm-native: add dependency on gettext-native

2012-08-16 Thread Saul Wold
On 08/02/2012 06:57 PM, Jesse Zhang wrote: libxpm needs xgettext. There can be failures if gettext doesn't get built first and it's not available from the host. The target version doesn't have issues since it will get the dependency indirectly. Jesse Zhang (1): libxpm-native: add dependency

Re: [OE-core] [PATCH] base.bbclass: allow specifying an lsb distro hook via the metadata

2012-08-16 Thread Saul Wold
On 08/02/2012 03:10 PM, Christopher Larson wrote: From: Christopher Larson This is useful when you have a rather large set of compatible distros. For example: Centos 5.4, 5.5, 5.6, etc, RHEL server 5.x, RHEL workstation 5.x. Signed-off-by: Christopher Larson --- meta/classes/base.bbclass |

Re: [OE-core] [oe-core][RFCv3] bitbake.conf: store cooker logs in subdirectory of LOG_DIR

2012-08-16 Thread Saul Wold
On 08/02/2012 09:45 AM, Martin Jansa wrote: * we should probably wait until http://git.openembedded.org/bitbake/commit/?id=1e06d8012868ba5a31503dc99cbf18570be629d9 is in next required bitbake version, but error message if the directory doesn't exist is quite clear * people with new enough

Re: [OE-core] [PATCH] base.bbclass: fix PACKAGECONFIG handling code

2012-08-16 Thread Saul Wold
On 08/02/2012 09:06 AM, Yao Zhao wrote: PACKAGECONFIG flag code only handles that when it has 3 or 4 items in flag, it may have a stale data if some flags doesn't need DEPENDS and RDEPENDS. Signed-off-by: Yao Zhao --- meta/classes/base.bbclass | 25 - 1 file changed

Re: [OE-core] [RFC PATCH 0/1] kernel.bbclass: remove default module_autoload and module_conf values

2012-08-16 Thread Saul Wold
On 07/26/2012 11:04 AM, Bruce Ashfield wrote: Richard, This is just what the subject implies, a RFC patch. While working on some updates and docs, I (once gain) ran across the module_autoload and module_conf default values in kernel.bbclass. I've always wondered if that was the best place for t

Re: [OE-core] [PATCH] dbus: provide/replace dbus-x11 only for target

2012-08-16 Thread Saul Wold
On 08/01/2012 06:25 AM, Marcin Juszkiewicz wrote: Signed-off-by: Marcin Juszkiewicz --- meta/recipes-core/dbus/dbus.inc |4 1 file changed, 4 insertions(+) diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc index 164c4d3..53171e9 100644 --- a/meta/recipes

Re: [OE-core] [PATCH] insane.bbclass: Fix RPATH warning in the face of funny path strings

2012-08-16 Thread Andy Ross
On 08/16/2012 01:39 AM, Phil Blundell wrote: If these RPATHs are causing host pollution then that sounds like there is another bug elsewhere. They ought to be resolved relative to the sysroot during link edit. Indeed, this is turning out to be a deeper issue than I wanted it to be. What seems

Re: [OE-core] [yocto] [PATCH 1/1] run-postinsts does not run any scripts

2012-08-16 Thread Saul Wold
On 07/09/2012 05:19 AM, Kenneth Solbjerg wrote: Hi Sorry for any mistakes, but this is my first patch... On my system (core-image-base, .deb package files), run-postinsts does not run any scripts due to a failed test in run-postinsts.awk. As dpkg is not actually installed on target, opkg is ide

Re: [OE-core] [PATCH] bitbake: build.py: Add stampdir argument to cached_mtime_noerror

2012-08-16 Thread Saul Wold
On 08/16/2012 04:17 AM, Andrei Gherzan wrote: After commit 2718537b4b04eb3d80ab4d74171b58e7b8dd68b8 (bitbake: build.py: Only execute mkdirhier if stampdir doesn't exist) build failes as cached_mtime_noerror needs an argument - stamp dir. This argument was forgotten. Signed-off-by: Andrei Gherzan

Re: [OE-core] [PATCH] classes/chrpath: trigger an error if chrpath fails

2012-08-16 Thread Paul Eggleton
On Wednesday 15 August 2012 17:44:33 Paul Eggleton wrote: > If chrpath failed here we were just silently ignoring it. > > Signed-off-by: Paul Eggleton > --- > meta/classes/chrpath.bbclass |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/meta/classes/chrpath.bbclass

Re: [OE-core] [PATCH] classes/chrpath: trigger an error if chrpath fails

2012-08-16 Thread Saul Wold
On 08/15/2012 09:44 AM, Paul Eggleton wrote: If chrpath failed here we were just silently ignoring it. Signed-off-by: Paul Eggleton --- meta/classes/chrpath.bbclass |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/classes/chrpath.bbclass b/meta/classes/chrpath.b

Re: [OE-core] [PATCH] gst-plugins-base: remove avahi from DEPENDS

2012-08-16 Thread Saul Wold
On 08/14/2012 12:26 PM, Radek Dostal wrote: avahi is no longer required as gnome_vfs is disabled Signed-off-by: Radek Dostal --- .../gstreamer/gst-plugins-base_0.10.36.bb |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-multimedia/gstreamer/gs

[OE-core] [PATCH 1/1] base.bbclass: Work even when there's no PNBLACKLIST entries

2012-08-16 Thread Peter Seebach
It turns out that the result of getVarFlags is not a list, it's a dict. So "getVarFlags(...) or []" does not reliably produce something with a .items. This escaped detection because our local build environment never ends up running builds without PNBLACKLIST entries. Signed-off-by: Peter Seebach

[OE-core] [PATCH 0/1] Correct blacklist-related build errors

2012-08-16 Thread Peter Seebach
The fallback "or []" for the case where there are no PNBLACKLIST entries was of the wrong type; it should be {}. The following changes since commit 24babf9316da50c8a4d2f328c4336cb8cd6cf667: Paul Eggleton (1): classes/chrpath: trigger an error if chrpath fails are available in the git re

Re: [OE-core] [discussion] perf: specify SLANG_INC dir for perf

2012-08-16 Thread McClintock Matthew-B29882
On Thu, Aug 16, 2012 at 10:58 AM, Richard Purdie wrote: > On Thu, 2012-08-16 at 11:33 -0400, Bruce Ashfield wrote: >> On 12-08-13 10:17 PM, Liang Li wrote: >> > Hi Richard, >> > >> > Ping ... >> > >> > Hopefully you could recall sufficient context from this thread about >> > the 'include path for

[OE-core] [PATCH] insane.bbclass: Fix RPATH warning in the face of funny path strings

2012-08-16 Thread Andy Ross
In toolchain edge cases it's possible for the RPATH of a library to be set to something like "/usr/lib/../lib". This should be detected as "/usr/lib" and generate a warning. Also clarify the warning text to indicate potential link-time pollution from the host libraries. Signed-off-by: Andy Ross

Re: [OE-core] [PATCH] insane.bbclass: Fix RPATH warning in the face of funny path strings

2012-08-16 Thread Andy Ross
Chris Larson wrote: > Please just use os.path.normpath() rather than reinventing the wheel here. Learn something new every day. Fixed. Andy ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin

Re: [OE-core] Dropping GTK+ 2.12

2012-08-16 Thread Richard Purdie
On Thu, 2012-08-16 at 16:36 +0100, Burton, Ross wrote: > Hi, > > GTK+ 2.12 is very, very old (2007). Does anyone still use it, or can > we drop it from oe-core? > > Actually, if anyone still wants it, can we move it to meta-oe? Do we > really need three versions of GTK+ in oe-core? It was kept

Re: [OE-core] [discussion] perf: specify SLANG_INC dir for perf

2012-08-16 Thread Bruce Ashfield
On 12-08-16 11:58 AM, Richard Purdie wrote: On Thu, 2012-08-16 at 11:33 -0400, Bruce Ashfield wrote: On 12-08-13 10:17 PM, Liang Li wrote: Hi Richard, Ping ... Hopefully you could recall sufficient context from this thread about the 'include path for slang.h' cause compile error issue that we

Re: [OE-core] [discussion] perf: specify SLANG_INC dir for perf

2012-08-16 Thread Richard Purdie
On Thu, 2012-08-16 at 11:33 -0400, Bruce Ashfield wrote: > On 12-08-13 10:17 PM, Liang Li wrote: > > Hi Richard, > > > > Ping ... > > > > Hopefully you could recall sufficient context from this thread about > > the 'include path for slang.h' cause compile error issue that we are > > trying to fix h

Re: [OE-core] [oe] [meta-ti] OE Changelog since 2012-08-05 until 2012-08-12

2012-08-16 Thread Chris Larson
On Thu, Aug 16, 2012 at 8:18 AM, Cliff Brake wrote: > The OE Changelog is back. Some time ago, I got several reports that the > changelog was missing entries. I have since revamped the way dates are > handled and may have made things better (or worse). The tool simply runs > git shortlog --sinc

[OE-core] OE Changelog since 2012-08-05 until 2012-08-12

2012-08-16 Thread cliff . brake
Changelog since 2012-08-05 until 2012-08-12. 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-yocto: git://git.yoctoproject.org/poky me

[OE-core] Dropping GTK+ 2.12

2012-08-16 Thread Burton, Ross
Hi, GTK+ 2.12 is very, very old (2007). Does anyone still use it, or can we drop it from oe-core? Actually, if anyone still wants it, can we move it to meta-oe? Do we really need three versions of GTK+ in oe-core? Ross ___ Openembedded-core mailing

Re: [OE-core] [discussion] perf: specify SLANG_INC dir for perf

2012-08-16 Thread Bruce Ashfield
On 12-08-13 10:17 PM, Liang Li wrote: Hi Richard, Ping ... Hopefully you could recall sufficient context from this thread about the 'include path for slang.h' cause compile error issue that we are trying to fix here. Bump. I'm holding off on merging a kernel patch for this while this is stil

Re: [OE-core] [oe-commits] Jackie Huang : gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread Huang, Jie (Jackie)
> >On Thu, Aug 16, 2012 at 02:30:51PM +, Huang, Jie (Jackie) wrote: >> > >> >On Thu, Aug 16, 2012 at 12:33:08PM +0200, Martin Jansa wrote: >> >> On Wed, Aug 15, 2012 at 01:32:02PM +, g...@git.openembedded.org wrote: >> >> > Module: openembedded-core.git >> >> > Branch: master >> >> > Commit

[OE-core] [PATCH] bitbake: build.py: Add stampdir argument to cached_mtime_noerror

2012-08-16 Thread Andrei Gherzan
After commit 2718537b4b04eb3d80ab4d74171b58e7b8dd68b8 (bitbake: build.py: Only execute mkdirhier if stampdir doesn't exist) build failes as cached_mtime_noerror needs an argument - stamp dir. This argument was forgotten. Signed-off-by: Andrei Gherzan --- bitbake/lib/bb/build.py |2 +- 1 file

Re: [OE-core] [oe-commits] Jackie Huang : gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread Martin Jansa
On Thu, Aug 16, 2012 at 02:30:51PM +, Huang, Jie (Jackie) wrote: > > > >On Thu, Aug 16, 2012 at 12:33:08PM +0200, Martin Jansa wrote: > >> On Wed, Aug 15, 2012 at 01:32:02PM +, g...@git.openembedded.org wrote: > >> > Module: openembedded-core.git > >> > Branch: master > >> > Commit: 1d4fbe4

Re: [OE-core] [oe-commits] Jackie Huang : gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread Huang, Jie (Jackie)
> >On Thu, Aug 16, 2012 at 12:33:08PM +0200, Martin Jansa wrote: >> On Wed, Aug 15, 2012 at 01:32:02PM +, g...@git.openembedded.org wrote: >> > Module: openembedded-core.git >> > Branch: master >> > Commit: 1d4fbe4761d3d97e3c4b6e894719ee41b21559b2 >> > URL: >> > http://git.openembedded.org/

[OE-core] [PATCH 6/6] connman: upgrade to 1.4

2012-08-16 Thread Constantin Musca
Signed-off-by: Constantin Musca --- ...ck-that-the-string-isn-t-empty-before-spl.patch | 37 .../connman/{connman_1.3.bb => connman_1.4.bb} |9 +++-- 2 files changed, 4 insertions(+), 42 deletions(-) delete mode 100644 meta/recipes-connectivity/connman/connman/000

[OE-core] [PATCH 2/6] ofono: upgrade to 1.10

2012-08-16 Thread Constantin Musca
Signed-off-by: Constantin Musca --- .../ofono/{ofono_1.8.bb => ofono_1.10.bb} |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-connectivity/ofono/{ofono_1.8.bb => ofono_1.10.bb} (63%) diff --git a/meta/recipes-connectivity/ofono/ofono_1.8.bb b/meta/re

[OE-core] [PATCH 3/6] iproute2: upgrade to 3.5.0

2012-08-16 Thread Constantin Musca
Signed-off-by: Constantin Musca --- .../configure-cross.patch |0 .../{iproute2_3.4.0.bb => iproute2_3.5.0.bb} |4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-connectivity/iproute2/{iproute2-3.4.0 => iproute2-3.5.0}/configure-

[OE-core] [PATCH 1/6] dbus: upgrade to 1.6.4

2012-08-16 Thread Constantin Musca
Signed-off-by: Constantin Musca --- .../dbus/{dbus-1.4.20 => dbus-1.6.4}/dbus-1.init |0 .../dbus/{dbus-1.4.20 => dbus-1.6.4}/tmpdir.patch |0 .../dbus/{dbus_1.4.20.bb => dbus_1.6.4.bb} |4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-core/dbus

[OE-core] [PATCH 0/6] Package upgrades

2012-08-16 Thread Constantin Musca
This is another set of package upgrades compiled on all architectures and tested using core-image-sato-sdk. The connman 1.4 recipe doesn't need the 0001-storage-check-that-the-string-isn-t-empty-before-spl.patch anymore. Constantin Musca (6): dbus: upgrade to 1.6.4 ofono: upgrade to 1.10 ipr

[OE-core] [PATCH 5/6] pulseaudio: upgrade to 2.1

2012-08-16 Thread Constantin Musca
Signed-off-by: Constantin Musca --- .../{pulseaudio_2.0.bb => pulseaudio_2.1.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/pulseaudio/{pulseaudio_2.0.bb => pulseaudio_2.1.bb} (71%) diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudi

[OE-core] [PATCH 4/6] iptables: upgrade to 1.4.15

2012-08-16 Thread Constantin Musca
Signed-off-by: Constantin Musca --- .../{iptables_1.4.14.bb => iptables_1.4.15.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/iptables/{iptables_1.4.14.bb => iptables_1.4.15.bb} (91%) diff --git a/meta/recipes-extended/iptables/iptables_1.4.14

Re: [OE-core] [PATCH 0/3 V2] Install external binary packages

2012-08-16 Thread Robert Yang
On 08/16/2012 04:27 PM, Robert Yang wrote: Changes of V2: * Add commit message to each commit. Changes of V1: * Initial version // Robert The following changes since commit 0c6ac62a9fb81146ace64ae7493dcc56b4bed197: documentation: remove references to Pimlico (2012-08-15 15:26:27 +0100) a

Re: [OE-core] How to override bitbake.conf defaults in layers properly?

2012-08-16 Thread Paul Eggleton
On Thursday 16 August 2012 13:57:44 Koen Kooi wrote: > I spent the morning backporting kernel.bbclass changes to the meta-oe denzil > branch and I've run into a problem: STAGING_KERNEL_DIR needs to change to > match the updated class. In this specific case I can work with Scott and > Eric to see if

Re: [OE-core] [oe-commits] Jackie Huang : gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread Martin Jansa
On Thu, Aug 16, 2012 at 12:33:08PM +0200, Martin Jansa wrote: > On Wed, Aug 15, 2012 at 01:32:02PM +, g...@git.openembedded.org wrote: > > Module: openembedded-core.git > > Branch: master > > Commit: 1d4fbe4761d3d97e3c4b6e894719ee41b21559b2 > > URL: > > http://git.openembedded.org/?p=openem

[OE-core] How to override bitbake.conf defaults in layers properly?

2012-08-16 Thread Koen Kooi
Hi, I spent the morning backporting kernel.bbclass changes to the meta-oe denzil branch and I've run into a problem: STAGING_KERNEL_DIR needs to change to match the updated class. In this specific case I can work with Scott and Eric to see if those kernel.bbclass changes can go into oe-core and

Re: [OE-core] [PATCH] bitbake: build.py: Add stampdir argument to cached_mtime_noerror

2012-08-16 Thread Richard Purdie
On Thu, 2012-08-16 at 14:21 +0300, Andrei Gherzan wrote: > After commit 2718537b4b04eb3d80ab4d74171b58e7b8dd68b8 (bitbake: > build.py: Only execute mkdirhier if stampdir doesn't exist) build > failes as cached_mtime_noerror needs an argument - stamp dir. This > argument was forgotten. > > Signed-o

[OE-core] [PATCH] bitbake: build.py: Add stampdir argument to cached_mtime_noerror

2012-08-16 Thread Andrei Gherzan
After commit 2718537b4b04eb3d80ab4d74171b58e7b8dd68b8 (bitbake: build.py: Only execute mkdirhier if stampdir doesn't exist) build failes as cached_mtime_noerror needs an argument - stamp dir. This argument was forgotten. Signed-off-by: Andrei Gherzan --- bitbake/lib/bb/build.py |2 +- 1 file

Re: [OE-core] [PATCH 2/3] ipk: install external binary packages

2012-08-16 Thread Robert Yang
On 08/16/2012 05:40 PM, Koen Kooi wrote: Op 16 aug. 2012, om 10:27 heeft Robert Yang het volgende geschreven: It's been suggested that it would be a useful feature to be able to easily take a binary from a 3rd party software vendor and integrate it into an image created by the build system

Re: [OE-core] binutils 2.23 call for testing the recipes

2012-08-16 Thread Martin Jansa
On Sun, Aug 12, 2012 at 08:14:25AM +0200, Martin Jansa wrote: > On Sat, Aug 11, 2012 at 10:30:25PM -0700, Khem Raj wrote: > > On Sat, Aug 11, 2012 at 1:04 AM, Martin Jansa > > wrote: > > > > > > | === If you get failures below, please file a bug describing the error > > > | === and your environme

Re: [OE-core] [oe-commits] Jackie Huang : gdk-pixbuf: fix the postinstall script failure when no icon is installed

2012-08-16 Thread Martin Jansa
On Wed, Aug 15, 2012 at 01:32:02PM +, g...@git.openembedded.org wrote: > Module: openembedded-core.git > Branch: master > Commit: 1d4fbe4761d3d97e3c4b6e894719ee41b21559b2 > URL: > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=1d4fbe4761d3d97e3c4b6e894719ee41b21559b2 > > A

  1   2   >