Re: [OE-core] [PATCH v3] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Radu Moisan
it does not build, it complains about nothing providing dbus-x11 Radu On 07/26/2012 09:17 AM, Radu Moisan wrote: Followed suggestions from Bugz 2261: 1) remove the --with-x/--without-x configure arguments. If you want to force no-discovery for native builds the correct argument is --disable-x1

[OE-core] [PATCH v3] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Radu Moisan
Followed suggestions from Bugz 2261: 1) remove the --with-x/--without-x configure arguments. If you want to force no-discovery for native builds the correct argument is --disable-x11-autolaunch. This ensures that DBus looks at the build environment to determine whether to enable X11 bus discovery

[OE-core] [PATCH v2] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Radu Moisan
Followed suggestions from Bugz 2261: 1) remove the --with-x/--without-x configure arguments. If you want to force no-discovery for native builds the correct argument is --disable-x11-autolaunch. This ensures that DBus looks at the build environment to determine whether to enable X11 bus discovery

Re: [OE-core] [PATCH] slang 2.2.4: fix the pcre existence checking

2012-07-25 Thread Rongqing Li
On 2012年07月26日 06:02, Saul Wold wrote: On 07/25/2012 02:58 PM, Saul Wold wrote: On 07/25/2012 01:07 AM, rongqing...@windriver.com wrote: From: Roy.Li [YOCTO #2820] when check if there is pcre, the configure file always check the host dir. now we make it work by adding correct prefix for cr

[OE-core] [PATCH V2] sysstat:use a new way to remove -s option of LFLAGS

2012-07-25 Thread Song.Li
From: "Song.Li" sysstat Makefile shouldn't use -s option to strip binary because we need debug info for dbg package. The old way to remove -s option is passing LFLAGS='' in make command line to clean all the LFLAGS variable in Makefile. That will cause build failure when sensors lib is needed. In

[OE-core] removing /etc/init.d/busybox-udhcpc

2012-07-25 Thread Jesse Zhang
Hi, I recently found that if "ip=dhcp" is specified in the kernel cmdline, there would be some strange behaviour of udhcpc. 1. udhcpc is started two times during bootup. Starting Bootlog daemon: bootlogd. Configuring network interfaces... udhcpc (v1.19.4) started Sending discover...

Re: [OE-core] how to properly use "EXTRA_ASSUME_PROVIDED"?

2012-07-25 Thread Robert P. J. Day
On Wed, 25 Jul 2012, Richard Purdie wrote: > On Wed, 2012-07-25 at 16:06 -0400, Robert P. J. Day wrote: > > what is the proper way to use EXTRA_ASSUME_PROVIDED, and is the > > effect of that visible in the bitbake environment? > > > > as in, based on the current version of bitbake.conf, i can se

[OE-core] [PATCH 6/6] buildhistory: improve performance of image info collection

2012-07-25 Thread Paul Eggleton
Reduce the number of calls to the packaging tool, especially in the case of rpm, using helper utilities to gather the required information more efficiently where possible. Signed-off-by: Paul Eggleton --- meta/classes/buildhistory.bbclass | 51 - meta/classes/rootfs_deb

[OE-core] [PATCH 4/6] Rework installation of dev, dbg, doc, and locale packages

2012-07-25 Thread Paul Eggleton
Use a similar mechanism that was previously used to install locales at rootfs generation time to install other "complementary" packages (e.g. *-dev packages) - i.e. install all of the explicitly requested packages and their dependencies, then get a list of the packages that were installed, and use

[OE-core] [PATCH 5/6] classes/image: add staticdev-pkgs IMAGE_FEATURES feature

2012-07-25 Thread Paul Eggleton
Add a staticdev-pkgs feature that can be added to IMAGE_FEATURES in order to install all staticdev packages. Fixes [YOCTO #2531]. Signed-off-by: Paul Eggleton --- meta/classes/image.bbclass |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/classes/image.bbclass b/me

[OE-core] [PATCH 3/6] classes/package_deb: add PackageArch field

2012-07-25 Thread Paul Eggleton
If we want to query the PACKAGE_ARCH from the installed package (as we do in order to be able to do a pkgdata lookup for example) then we need to have this stored in its own field as this is not always the same as the Architecture field for deb packages. Signed-off-by: Paul Eggleton --- meta/cla

[OE-core] [PATCH 2/6] classes/rootfs_rpm: improve speed of RPM rootfs construction

2012-07-25 Thread Paul Eggleton
Improve the performance of the RPM backend during do_rootfs by performing most of the package name to file resolution in a separate utility written in C, processing the entire list of packages at once rather than running rpm on the command line which loads the RPM database for every package. Signe

[OE-core] [PATCH 1/6] package.bbclass: Create symlinks for packages with different packaged name

2012-07-25 Thread Paul Eggleton
From: Andrei Gherzan While generating license.manifest package information is searched in: filename=`ls ${TMPDIR}/pkgdata/*/runtime/${pkg}| head -1` This is ok as long as package name is the same as the package name after packaging. For example dbus is packaged as dbus-1. So, searching ls ${TMPDI

[OE-core] [PATCH 0/6] rootfs generation improvements v4

2012-07-25 Thread Paul Eggleton
Fix up handling of "complementary" package installation (dev, dbg, doc, etc.) and introduce a staticdev-pkgs IMAGE_FEATURES feature. Changes since the brown paper bag patchset that was v3: * Remove bogus clearing of IMAGE_FEATURES in core-image-minimal * Fix broken fix for errors with the ipk and

Re: [OE-core] [PATCH 0/7] rootfs generation improvements v3

2012-07-25 Thread Paul Eggleton
On Wednesday 25 July 2012 19:42:50 Paul Eggleton wrote: > * Fix errors with the ipk and deb backends if no complementary packages > need to be installed This change is totally broken as well. Shows what happens when you rush to get something out before you leave for the evening. I might as well

Re: [OE-core] [PATCH] slang 2.2.4: fix the pcre existence checking

2012-07-25 Thread Saul Wold
On 07/25/2012 02:58 PM, Saul Wold wrote: On 07/25/2012 01:07 AM, rongqing...@windriver.com wrote: From: Roy.Li [YOCTO #2820] when check if there is pcre, the configure file always check the host dir. now we make it work by adding correct prefix for cross-compile environment. Signed-off-by: R

Re: [OE-core] [PATCH] slang 2.2.4: fix the pcre existence checking

2012-07-25 Thread Saul Wold
On 07/25/2012 01:07 AM, rongqing...@windriver.com wrote: From: Roy.Li [YOCTO #2820] when check if there is pcre, the configure file always check the host dir. now we make it work by adding correct prefix for cross-compile environment. Signed-off-by: Roy.Li --- .../slang/slang/fix-check-pcr

Re: [OE-core] how to properly use "EXTRA_ASSUME_PROVIDED"?

2012-07-25 Thread Richard Purdie
On Wed, 2012-07-25 at 16:06 -0400, Robert P. J. Day wrote: > what is the proper way to use EXTRA_ASSUME_PROVIDED, and is the > effect of that visible in the bitbake environment? > > as in, based on the current version of bitbake.conf, i can see this > with "bitbake -e": > > ASSUME_PROVIDED="bzi

[OE-core] [PATCH] base/perlnative/pythonnative/gzipnative: Add a new variable to enable easier handling of native path issues

2012-07-25 Thread Richard Purdie
If something is listed in ASSUME_PROVIDED but also manually built (like bzip2-native and bzip2-replacement-native), we need to ensure that the installed binaries are only accessed for things which list the provider in DEPENDS. This patch adds a generic mechanism to handle this instead of everyth

[OE-core] [PATCH 1/1] linux-yocto/rt: update BSP preempt-rt.scc files to enable live boot

2012-07-25 Thread Bruce Ashfield
Updating the meta branch SCREV to pickup the preempt-rt commits to fix live boot on the x86 boards: 7ff48aa sys940x: Append default preempt-rt policy 052ecea sugarbay: Append default preempt-rt policy b8230e3 jasperforest: Append default preempt-rt policy 7fb788a chiefriver: Append default

[OE-core] [PATCH 0/1] linux-yocto/rt: update BSP preempt-rt.scc files to enable live boot

2012-07-25 Thread Bruce Ashfield
Richard/Saul, Here are some -rt updates from Darren for the x86 boards, nothing much to see here, just configuration changes. Note: these are stacked on my 3.4.6 and 3.4.x-rt14 which haven't been merged yet. Cheers, Bruce cc: Darren Hart The following changes since commit 246570852170f316aeb

Re: [OE-core] [PATCH 0/7] rootfs generation improvements v3

2012-07-25 Thread Paul Eggleton
On Wednesday 25 July 2012 21:08:53 Koen Kooi wrote: > Op 25 jul. 2012, om 20:42 heeft Paul Eggleton het volgende geschreven: > > Fix up handling of "complementary" package installation (dev, dbg, doc, > > etc.) and introduce a staticdev-pkgs IMAGE_FEATURES feature. > > > > Changes since v2: > > >

Re: [OE-core] [PATCH] bzip2-native: fix problems when bzip2-native is installed in parallel

2012-07-25 Thread Yao Zhao
On 12-07-24 03:32 PM, Richard Purdie wrote: On Tue, 2012-07-24 at 15:25 -0400, Yao Zhao wrote: On 12-07-24 03:07 PM, Richard Purdie wrote: On Tue, 2012-07-24 at 13:39 -0500, Mark Hatle wrote: On 7/24/12 8:57 AM, Burton, Ross wrote: On 24 July 2012 14:49, Yao Zhao wrote: when bzip2-native is

[OE-core] how to properly use "EXTRA_ASSUME_PROVIDED"?

2012-07-25 Thread Robert P. J. Day
what is the proper way to use EXTRA_ASSUME_PROVIDED, and is the effect of that visible in the bitbake environment? as in, based on the current version of bitbake.conf, i can see this with "bitbake -e": ASSUME_PROVIDED="bzip2-native git-native grep-native diffstat-native patch-native perl-nat

Re: [OE-core] [PATCH 0/7] rootfs generation improvements v3

2012-07-25 Thread Koen Kooi
Op 25 jul. 2012, om 20:42 heeft Paul Eggleton het volgende geschreven: > Fix up handling of "complementary" package installation (dev, dbg, doc, > etc.) and introduce a staticdev-pkgs IMAGE_FEATURES feature. > > Changes since v2: > > * Clear IMAGE_FEATURES in core-image-minimal so that it doesn

[OE-core] [PATCH 7/7] buildhistory: improve performance of image info collection

2012-07-25 Thread Paul Eggleton
Reduce the number of calls to the packaging tool, especially in the case of rpm, using helper utilities to gather the required information more efficiently where possible. Signed-off-by: Paul Eggleton --- meta/classes/buildhistory.bbclass | 51 - meta/classes/rootfs_deb

[OE-core] [PATCH 5/7] core-image-minimal: clear IMAGE_FEATURES

2012-07-25 Thread Paul Eggleton
Since dbg/dev packages are no longer added via PACKAGE_GROUP_*, having dev-pkgs/dbg-pkgs in IMAGE_FEATURES will now affect core-image-minimal. Set IMAGE_FEATURES to "" in order to avoid this. Signed-off-by: Paul Eggleton --- meta/recipes-core/images/core-image-minimal.bb |1 + 1 file changed

[OE-core] [PATCH 4/7] Rework installation of dev, dbg, doc, and locale packages

2012-07-25 Thread Paul Eggleton
Use a similar mechanism that was previously used to install locales at rootfs generation time to install other "complementary" packages (e.g. *-dev packages) - i.e. install all of the explicitly requested packages and their dependencies, then get a list of the packages that were installed, and use

[OE-core] [PATCH 3/7] classes/package_deb: add PackageArch field

2012-07-25 Thread Paul Eggleton
If we want to query the PACKAGE_ARCH from the installed package (as we do in order to be able to do a pkgdata lookup for example) then we need to have this stored in its own field as this is not always the same as the Architecture field for deb packages. Signed-off-by: Paul Eggleton --- meta/cla

[OE-core] [PATCH 6/7] classes/image: add staticdev-pkgs IMAGE_FEATURES feature

2012-07-25 Thread Paul Eggleton
Add a staticdev-pkgs feature that can be added to IMAGE_FEATURES in order to install all staticdev packages. Fixes [YOCTO #2531]. Signed-off-by: Paul Eggleton --- meta/classes/image.bbclass |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/classes/image.bbclass b/me

[OE-core] [PATCH 2/7] classes/rootfs_rpm: improve speed of RPM rootfs construction

2012-07-25 Thread Paul Eggleton
Improve the performance of the RPM backend during do_rootfs by performing most of the package name to file resolution in a separate utility written in C, processing the entire list of packages at once rather than running rpm on the command line which loads the RPM database for every package. Signe

[OE-core] [PATCH 0/7] rootfs generation improvements v3

2012-07-25 Thread Paul Eggleton
Fix up handling of "complementary" package installation (dev, dbg, doc, etc.) and introduce a staticdev-pkgs IMAGE_FEATURES feature. Changes since v2: * Clear IMAGE_FEATURES in core-image-minimal so that it doesn't have dev/dbg packages added (since the default value of IMAGE_FEATURES contain

[OE-core] [PATCH 1/7] package.bbclass: Create symlinks for packages with different packaged name

2012-07-25 Thread Paul Eggleton
From: Andrei Gherzan While generating license.manifest package information is searched in: filename=`ls ${TMPDIR}/pkgdata/*/runtime/${pkg}| head -1` This is ok as long as package name is the same as the package name after packaging. For example dbus is packaged as dbus-1. So, searching ls ${TMPDI

Re: [OE-core] [PATCH] package.bbclass: Create symlinks for packages with different packaged name

2012-07-25 Thread Andrei Gherzan
On Thu, Jul 19, 2012 at 5:43 PM, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Thu, 2012-06-28 at 11:13 +0300, Andrei Gherzan wrote: > > While generating license.manifest package information is searched in: > > filename=`ls ${TMPDIR}/pkgdata/*/runtime/${pkg}| head -1` > > This i

Re: [OE-core] [PATCH 5/5] busybox.inc: Install hwclock init script only if rtc is present in MACHINE_FEATURES

2012-07-25 Thread Andrei Gherzan
On Wed, Jul 11, 2012 at 12:11 PM, Martin Jansa wrote: > On Tue, Jul 10, 2012 at 11:43:58PM +0100, Phil Blundell wrote: > > On Wed, 2012-07-11 at 01:15 +0300, Andrei Gherzan wrote: > > > And to move a little further, busybox should be configured with > > > CONFIG_HWCLOCK=y only if it makes sense fo

[OE-core] AttributeError: 'CoreRecipeInfo' object has no attribute 'task_deps'

2012-07-25 Thread Martin Jansa
This error is shown when someone tries to bitbake -b foo.bb with MACHINE set to something incompatible with foo.bb:COMPATIBLE_MACHINE OE om-gta04@shr ~/shr-core $ grep COMPATIBLE /OE/shr-core/meta-smartphone/meta-openmoko/recipes-kernel/linux/linux-gta04_git.bb COMPATIBLE_MACHINE = "om-gta04" OE

Re: [OE-core] [PATCH] package.bbclass: don't error when the root doesn't exist in do_split_packages

2012-07-25 Thread Martin Jansa
On Wed, Jul 25, 2012 at 05:41:16PM +0100, Ross Burton wrote: > If nothing has been installed in the root automake 1.12 won't install the > directory, which means os.walk will throw a file not found exception. > > Signed-off-by: Ross Burton > --- > meta/classes/package.bbclass |8 ++-- >

[OE-core] [PATCH] package.bbclass: don't error when the root doesn't exist in do_split_packages

2012-07-25 Thread Ross Burton
If nothing has been installed in the root automake 1.12 won't install the directory, which means os.walk will throw a file not found exception. Signed-off-by: Ross Burton --- meta/classes/package.bbclass |8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meta/classes/

Re: [OE-core] [PATCH] package.bbclass: don't error when the root doesn't exist in do_split_packages

2012-07-25 Thread Burton, Ross
Ignore this, typo in the python. On 25 July 2012 17:36, Ross Burton wrote: > If nothing has been installed in the root automake 1.12 won't install the > directory, which means os.walk will throw a file not found exception. > > Signed-off-by: Ross Burton > --- > meta/classes/package.bbclass |

[OE-core] [PATCH] package.bbclass: don't error when the root doesn't exist in do_split_packages

2012-07-25 Thread Ross Burton
If nothing has been installed in the root automake 1.12 won't install the directory, which means os.walk will throw a file not found exception. Signed-off-by: Ross Burton --- meta/classes/package.bbclass |4 1 file changed, 4 insertions(+) diff --git a/meta/classes/package.bbclass b/me

Re: [OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Koen Kooi
Op 25 jul. 2012, om 16:23 heeft Paul Eggleton het volgende geschreven: > On Wednesday 25 July 2012 15:19:10 Burton, Ross wrote: >> On 25 July 2012 15:17, Koen Kooi wrote: >>> This breaks the upgrade path >> >> So how would the upgrade path be unbroken? A dummy dbus-x11 package >> that pulls in

Re: [OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Burton, Ross
On 25 July 2012 15:23, Paul Eggleton wrote: > On Wednesday 25 July 2012 15:19:10 Burton, Ross wrote: >> On 25 July 2012 15:17, Koen Kooi wrote: >> > This breaks the upgrade path >> >> So how would the upgrade path be unbroken? A dummy dbus-x11 package >> that pulls in dbus, I suspect. > > RREPLA

Re: [OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Paul Eggleton
On Wednesday 25 July 2012 15:19:10 Burton, Ross wrote: > On 25 July 2012 15:17, Koen Kooi wrote: > > This breaks the upgrade path > > So how would the upgrade path be unbroken? A dummy dbus-x11 package > that pulls in dbus, I suspect. RREPLACES_${PN} += "dbus-x11" ought to be enough... Cheers,

Re: [OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Burton, Ross
On 25 July 2012 15:17, Koen Kooi wrote: > This breaks the upgrade path So how would the upgrade path be unbroken? A dummy dbus-x11 package that pulls in dbus, I suspect. Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

Re: [OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Koen Kooi
Op 25 jul. 2012, om 16:03 heeft Radu Moisan het volgende geschreven: > Followed suggestions from Bugz 2261: > > 1) remove the --with-x/--without-x configure arguments. If you want to force > no-discovery for native builds the correct argument is > --disable-x11-autolaunch. > This ensures that D

Re: [OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Koen Kooi
Op 25 jul. 2012, om 15:58 heeft Phil Blundell het volgende geschreven: > On Wed, 2012-07-25 at 17:03 +0300, Radu Moisan wrote: >> +# for compatibility >> +RPROVIDES = "${PN}-x11" > > ITYM RPROVIDES_${PN}. Isn't that a QA error? Sadly not, you need to run kergoths recipe_sanity manually to catc

Re: [OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Phil Blundell
On Wed, 2012-07-25 at 17:03 +0300, Radu Moisan wrote: > +# for compatibility > +RPROVIDES = "${PN}-x11" ITYM RPROVIDES_${PN}. Isn't that a QA error? p. ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtog

[OE-core] [PATCH] dbus: include dbus-launch in the main dbus package

2012-07-25 Thread Radu Moisan
Followed suggestions from Bugz 2261: 1) remove the --with-x/--without-x configure arguments. If you want to force no-discovery for native builds the correct argument is --disable-x11-autolaunch. This ensures that DBus looks at the build environment to determine whether to enable X11 bus discovery

Re: [OE-core] Package recipes change proposal (system-wide) - name wise

2012-07-25 Thread Chris Larson
On Wed, Jul 25, 2012 at 3:09 AM, Paul Eggleton wrote: > On Wednesday 25 July 2012 07:23:31 Iorga, Cristian wrote: >> For me, having the version number contained in the name of package recipe is >> a little bit puzzling. For example: libpcre/libpcre_8.31.bb >> >> Is there a solid technical reason t

[OE-core] [PATCH] meta/lib: remove test.py

2012-07-25 Thread Paul Eggleton
This looks like it was added by accident in OE-Core revision 7903433898b4683a1c09cc9a6a379421bc9bbd58. Signed-off-by: Paul Eggleton --- meta/lib/test.py |3 --- 1 file changed, 3 deletions(-) delete mode 100644 meta/lib/test.py diff --git a/meta/lib/test.py b/meta/lib/test.py deleted file

[OE-core] [PATCH] telepathy-glib: fix a build race

2012-07-25 Thread Ross Burton
[YOCTO #2462] Signed-off-by: Ross Burton --- ...Fix-a-race-in-_gen-reentrant-methods.list.patch | 42 .../telepathy/telepathy-glib_0.19.2.bb |5 ++- 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 meta/recipes-connectivity/telepathy/t

Re: [OE-core] [oe-commits] Bogdan Marinescu : autoconf: updated to 2.69

2012-07-25 Thread Martin Jansa
On Sun, Jul 22, 2012 at 10:44:06AM +, g...@git.openembedded.org wrote: > Module: openembedded-core.git > Branch: master > Commit: effb75d42098b3e367d393215fd5d52a0191e954 > URL: > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=effb75d42098b3e367d393215fd5d52a0191e954 > > A

Re: [OE-core] [PATCH 1/2] bash: enable parallel build

2012-07-25 Thread Otavio Salvador
On Wed, Jul 25, 2012 at 5:51 AM, Richard Purdie wrote: > On Fri, 2012-07-20 at 14:12 -0300, Otavio Salvador wrote: >> I've build it several times in a 8 core machine without problem so it >> seems safe to use parallel build now. > > Sadly its not: > > http://autobuilder.yoctoproject.org:8010/build

Re: [OE-core] [oe-commits] Ross Burton : webkit-gtk: remove no-parallel bodge

2012-07-25 Thread Andreas Müller
On Sat, Jul 21, 2012 at 1:15 AM, Martin Jansa wrote: >> This workaround was originally for GNU Make 3.82 which upstream was blaming >> for a parallel build failure. Since then I've changed numerous variables >> and now parallel builds are working with 3.82 (and succeed in 20 minutes >> instead of

Re: [OE-core] Package recipes change proposal (system-wide) - name wise

2012-07-25 Thread Paul Eggleton
On Wednesday 25 July 2012 07:23:31 Iorga, Cristian wrote: > For me, having the version number contained in the name of package recipe is > a little bit puzzling. For example: libpcre/libpcre_8.31.bb > > Is there a solid technical reason to not have it like this? > > libpcre/libpcre.bb > and insid

Re: [OE-core] Package recipes change proposal (system-wide) - name wise

2012-07-25 Thread Koen Kooi
Op 25 jul. 2012, om 09:23 heeft Iorga, Cristian het volgende geschreven: > > Hello all, > > For me, having the version number contained in the name of package recipe is > a little bit puzzling. > For example: libpcre/libpcre_8.31.bb > > Is there a solid technical reason to not have it like th

[OE-core] [PATCH 3/3] liburi-perl: update to 1.60

2012-07-25 Thread Kang Kai
Update to 1.60 Signed-off-by: Kang Kai --- .../{liburi-perl_1.59.bb => liburi-perl_1.60.bb} |7 +++ 1 files changed, 3 insertions(+), 4 deletions(-) rename meta/recipes-devtools/perl/{liburi-perl_1.59.bb => liburi-perl_1.60.bb} (81%) diff --git a/meta/recipes-devtools/perl/liburi-pe

[OE-core] [PATCH 1/3] ltp: update to version 20120614

2012-07-25 Thread Kang Kai
Update ltp to version 20120614 and update license files at same time. Remove the patch because it has been merged. Signed-off-by: Kang Kai --- .../ltp/ltp/fix_building_fom_archive.patch | 13 - .../ltp/{ltp_20120401.bb => ltp_20120614.bb} | 12 +--- 2 files

[OE-core] [PATCH 0/3] Update packages

2012-07-25 Thread Kang Kai
Hi Saul, These patches update liburi-perl, qmmp and ltp. Regards, Kai The following changes since commit 0ffb02eec2beaea27ff0ec9d3d31b0a09e675a4c: documentation: Updated the h6 style to use a larger font (2012-07-24 10:35:34 +0100) are available in the git repository at: git://git.pokylin

[OE-core] [PATCH 2/3] qmmp: update 0.6.1

2012-07-25 Thread Kang Kai
Update qmmp to 0.6.1 Remove spaces at end of lines. Signed-off-by: Kang Kai --- .../qt-apps/{qmmp_0.5.2.bb => qmmp_0.6.1.bb} |8 1 files changed, 4 insertions(+), 4 deletions(-) rename meta/recipes-qt/qt-apps/{qmmp_0.5.2.bb => qmmp_0.6.1.bb} (90%) diff --git a/meta/recipes-q

Re: [OE-core] [PATCH 1/2] bash: enable parallel build

2012-07-25 Thread Richard Purdie
On Fri, 2012-07-20 at 14:12 -0300, Otavio Salvador wrote: > I've build it several times in a 8 core machine without problem so it > seems safe to use parallel build now. Sadly its not: http://autobuilder.yoctoproject.org:8010/builders/nightly-multilib/builds/174/steps/shell_23/logs/stdio Cheers,

Re: [OE-core] [PATCH 0/6] rootfs generation improvements v2

2012-07-25 Thread Paul Eggleton
On Monday 23 July 2012 22:42:23 Paul Eggleton wrote: > Paul Eggleton (5): > classes/rootfs_rpm: improve speed of RPM rootfs construction Seems rpmresolve was missing a DEPENDS on rpm - oops! I've fixed this, and rebased and pushed a new paule/rootfs2 branch to openembedded-core-contrib. Cheers

[OE-core] [PATCH] findutils: fix sort dir on updatedb

2012-07-25 Thread rongqing.li
From: Roy.Li [YOCTO #2826] m4/nullsort.m4 tries to find sort dir, and write it to updatedb, but nullsort.m4 is checking the host dir. Once the sort dirs on target and host are different, updatedb will fail due to wrong sort dir. Since we always have sort under ${bindir}, so we can assign it dir

[OE-core] [PATCH] slang 2.2.4: fix the pcre existence checking

2012-07-25 Thread rongqing.li
From: Roy.Li [YOCTO #2820] when check if there is pcre, the configure file always check the host dir. now we make it work by adding correct prefix for cross-compile environment. Signed-off-by: Roy.Li --- .../slang/slang/fix-check-pcre.patch | 108 meta/reci

[OE-core] [CONSOLIDATED PULL 26/28] busybox:udhcpc: fix the root_is_nfs() function

2012-07-25 Thread Saul Wold
From: "Roy.Li" [YOCTO #2788] The system will be hung when udhcpc starts, if nfs is mounted at "/" directory and default route is different after starting udhcpc. The cause is that root_is_nfs() does not work after kernel-2.6.37, since the device name has been changed from /dev/root to ${IPADDR}

[OE-core] Package recipes change proposal (system-wide) - name wise

2012-07-25 Thread Iorga, Cristian
Hello all, For me, having the version number contained in the name of package recipe is a little bit puzzling. For example: libpcre/libpcre_8.31.bb Is there a solid technical reason to not have it like this? libpcre/libpcre.bb and inside the recipe to have a PV variable defined: PV="8.31" In

[OE-core] [CONSOLIDATED PULL 28/28] Add missing Upstream-Status to various patches.

2012-07-25 Thread Saul Wold
From: Mark Hatle Signed-off-by: Mark Hatle --- .../binutils/binutils/binutils-armv5e.patch|4 .../ossp-uuid/0001-Change-library-name.patch |7 +++ ...erve-m-option-status-in-v-option-handling.patch |7 +++ .../ossp-uuid/0003-Fix-whatis-entries.patch

[OE-core] [CONSOLIDATED PULL 25/28] xinit_1.3.2: Remove broken, superfluous 'FILES_${PN} += "${libdir}X11/xinit"'

2012-07-25 Thread Saul Wold
From: "Robert P. J. Day" Besides being clearly broken, that line is unnecessary as that file is already being picked up from this line in xorg-app-common.inc: FILES_${PN} += " ${libdir}/X11/${BPN} ${datadir}/X11/app-defaults/" Signed-off-by: Robert P. J. Day Signed-off-by: Saul Wold --- meta

[OE-core] [CONSOLIDATED PULL 27/28] package-index: inherit pythonnative

2012-07-25 Thread Saul Wold
From: Robert Yang The native python binary has been moved from usr/bin/python to usr/bin/python-native/python, the recipe which needs python-native should "inherit pythonnative", otherwise there would be errors when the python script runs. [YOCTO #2822] Signed-off-by: Robert Yang Signed-off-by

[OE-core] [CONSOLIDATED PULL 24/28] busybox: fix the problem that mkfs.minix.tests fails on big endian platform

2012-07-25 Thread Saul Wold
From: Yao Zhao patch mkfs.minix.tests to have correct md5sum on big endian platform. Signed-off-by: Yao Zhao Signed-off-by: Saul Wold --- .../busybox-mkfs-minix-tests_bigendian.patch | 34 meta/recipes-core/busybox/busybox_1.19.4.bb|3 +- 2 files chang

[OE-core] [CONSOLIDATED PULL 22/28] eglibc: Fix build when OPTION_POSIX_WIDE_CHAR_DEVICE_IO is not set

2012-07-25 Thread Saul Wold
From: Khem Raj poky-tiny disables certain eglibc options which gives good excercise for eglibc's componentized builds. This patch essentially updates the GLRO patch to account for additions of GLRO(dl_debug_mask) and converts them to GLRO_dl_debug_mask Secondly adds a new patch where it was crea

[OE-core] [CONSOLIDATED PULL 23/28] core-image: remove x11-netbook package group, it's unused

2012-07-25 Thread Saul Wold
From: Ross Burton Signed-off-by: Ross Burton Signed-off-by: Saul Wold --- meta/classes/core-image.bbclass |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/meta/classes/core-image.bbclass b/meta/classes/core-image.bbclass index 6b207d7..13e45aa 100644 --- a/meta/classes

[OE-core] [CONSOLIDATED PULL 20/28] eglibc-initial: Fix build failure due to missing limits.h

2012-07-25 Thread Saul Wold
From: Khem Raj We have had these things in place to overcome a limitation from our gcc-initial-cross not staging a self sufficient limits.h. Now thats fixed we do reset TOOLCHAIN_OPTIONS to point to sysroot where linux kernel headers are staged and not the bootstrap sysroot which will infact be p

[OE-core] [CONSOLIDATED PULL 19/28] classes/package_deb: add PackageArch field

2012-07-25 Thread Saul Wold
From: Paul Eggleton If we want to query the PACKAGE_ARCH from the installed package (as we do in order to be able to do a pkgdata lookup for example) then we need to have this stored in its own field as this is not always the same as the Architecture field for deb packages. Signed-off-by: Paul E

[OE-core] [CONSOLIDATED PULL 21/28] gcc-cross-initial: Stage self sufficient fixed limits.h

2012-07-25 Thread Saul Wold
From: Khem Raj currently gcc installs a limits.h which references to another limits.h which it expects from target sysroot and that header in target sysroot will come from eglibc. So we need to break this catch-22 and hence we install a self sufficient limits.h which is then happy when referenced

[OE-core] [CONSOLIDATED PULL 18/28] package.bbclass: Create symlinks for packages with different packaged name

2012-07-25 Thread Saul Wold
From: Andrei Gherzan While generating license.manifest package information is searched in: filename=`ls ${TMPDIR}/pkgdata/*/runtime/${pkg}| head -1` This is ok as long as package name is the same as the package name after packaging. For example dbus is packaged as dbus-1. So, searching ls ${TMPDI

[OE-core] [CONSOLIDATED PULL 17/28] kernel bbclass: Recreate uImage only when KEEPUIMAGE != "yes"

2012-07-25 Thread Saul Wold
From: Koen Kooi The intent of the uImage code in this class includes the following 1) be able to specify custom load addresses without needing to patch the kernel 2) add better information to the uImage description field The current state is a NOP anyway, the kernel will always build a uImage w

[OE-core] [CONSOLIDATED PULL 15/28] remake: Add remake-native and remake

2012-07-25 Thread Saul Wold
From: Wenzong Fan remake is a patched version of GNU Make that adds improved error reporting, the ability to trace execution in a comprehensible way, and a debugger. [YOCTO #2402] Signed-off-by: Wenzong Fan Signed-off-by: Saul Wold --- meta/recipes-devtools/remake/remake.inc| 1

[OE-core] [CONSOLIDATED PULL 14/28] cups_1.4.6.bb: Fix build on ppc64

2012-07-25 Thread Saul Wold
From: Khem Raj ppc64 uses lib64 and usr/lib64 for library paths so we need to train cups build system Signed-off-by: Khem Raj Signed-off-by: Saul Wold --- .../cups/cups-1.4.6/cups_serverbin.patch | 32 meta/recipes-extended/cups/cups14.inc | 26

[OE-core] [CONSOLIDATED PULL 16/28] libcgroup_0.37.1.bb: Add recipe

2012-07-25 Thread Saul Wold
From: Khem Raj This recipe is imported from meta-oe its a requirement for systemd to work. Now that systemd is living in a layer of its own. Lets have this recipe into core metadata Signed-off-by: Khem Raj Signed-off-by: Saul Wold --- meta/recipes-core/libcgroup/libcgroup_0.37.1.bb | 27 +++

[OE-core] [CONSOLIDATED PULL 12/28] webkit-gtk: Replace superfluous "+=" with "=", and add leading space

2012-07-25 Thread Saul Wold
From: "Robert P. J. Day" Signed-off-by: Robert P. J. Day Signed-off-by: Saul Wold --- meta/recipes-sato/webkit/webkit-gtk_1.8.1.bb |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-sato/webkit/webkit-gtk_1.8.1.bb b/meta/recipes-sato/webkit/webkit-gtk_1.8

[OE-core] [CONSOLIDATED PULL 10/28] dhcp: remove dependency of dev/staticdev packages on main package

2012-07-25 Thread Saul Wold
From: Paul Eggleton The main package is empty and is not produced, which leaves the dev and staticdev packages broken. Remove the dependencies (added in bitbake.conf by default) to fix this. Signed-off-by: Paul Eggleton Signed-off-by: Saul Wold --- meta/recipes-connectivity/dhcp/dhcp.inc

[OE-core] [CONSOLIDATED PULL 09/28] linux-yocto/3.4: 3.4.6 and 3.4.x-rt14

2012-07-25 Thread Saul Wold
From: Bruce Ashfield Updating the 3.4 kernel to the latest -stable release and updating preempt-rt to 3.4.4-rt14. Tested on qemu* Signed-off-by: Bruce Ashfield Signed-off-by: Saul Wold --- meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb |8 meta/recipes-kernel/linux/linux-yocto_

[OE-core] [CONSOLIDATED PULL 11/28] libxp: Change superfluous "+=" to simple "=" when using _append

2012-07-25 Thread Saul Wold
From: "Robert P. J. Day" Signed-off-by: Robert P. J. Day Signed-off-by: Saul Wold --- meta/recipes-graphics/xorg-lib/libxp_1.0.1.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-graphics/xorg-lib/libxp_1.0.1.bb b/meta/recipes-graphics/xorg-lib/libxp_1.

[OE-core] [CONSOLIDATED PULL 13/28] qemu.bbclass: Map the qemu binary name for powerpc64

2012-07-25 Thread Saul Wold
From: Khem Raj Signed-off-by: Khem Raj Signed-off-by: Saul Wold --- meta/classes/qemu.bbclass |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass index 68896ce..aead8e2 100644 --- a/meta/classes/qemu.bbclass +++ b/meta

[OE-core] [CONSOLIDATED PULL 08/28] shadow: use 'users' group by default

2012-07-25 Thread Saul Wold
From: Otavio Salvador The rootfs has 'users' group at number 100 and without this fix it would assign to a non-existent group and if a group with gid as 1000 is created later it would own all files for users created. Signed-off-by: Otavio Salvador Signed-off-by: Saul Wold --- meta/recipes-ext

[OE-core] [CONSOLIDATED PULL 07/28] shadow-native: use 'users' group by default

2012-07-25 Thread Saul Wold
From: Otavio Salvador The rootfs has 'users' group at number 100 and without this fix it would assign to a non-existent group and if a group with gid as 1000 is created later it would own all files for users created. Signed-off-by: Otavio Salvador Signed-off-by: Saul Wold --- .../shadow/shado

[OE-core] [CONSOLIDATED PULL 06/28] kernel.bbclass: fix external module building

2012-07-25 Thread Saul Wold
From: Denis Carikli Without that fix we have the following while compiling compat-wireless. include/linux/mmzone.h:18:30: fatal error: generated/bounds.h: No such file or directory Note that the compat-wireless recipe will be added in another commit. make -C $kerneldir _mrproper_scripts dele

[OE-core] [CONSOLIDATED PULL 05/28] bash: fix warning about bashbug reference /usr/bin when installed in /bin

2012-07-25 Thread Saul Wold
From: Otavio Salvador Change the installation process so we have bashbug in ${bindir} and bash at ${base_bindir}. Signed-off-by: Otavio Salvador Signed-off-by: Saul Wold --- meta/recipes-extended/bash/bash.inc| 11 --- meta/recipes-extended/bash/bash_4.2.bb |2 +- 2 files ch

[OE-core] [CONSOLIDATED PULL 00/28] Fixes & eglibc 2.16

2012-07-25 Thread Saul Wold
Richard, This is a batch of changes that have seen various level of build testing. It is currently building on the AB, so you can monitor and decide. We have had a new of parallel build related issues in telepathy and tonght in bash (this may be related to Otavio's re-enablement) I think that

[OE-core] [CONSOLIDATED PULL 04/28] bash: enable parallel build

2012-07-25 Thread Saul Wold
From: Otavio Salvador I've build it several times in a 8 core machine without problem so it seems safe to use parallel build now. Signed-off-by: Otavio Salvador Signed-off-by: Saul Wold --- meta/recipes-extended/bash/bash.inc|2 -- meta/recipes-extended/bash/bash_4.2.bb |2 +- 2 f

[OE-core] [CONSOLIDATED PULL 03/28] tcmode-default: Bump EGLIBC Version to 2.16

2012-07-25 Thread Saul Wold
Signed-off-by: Saul Wold --- meta/conf/distro/include/tcmode-default.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/conf/distro/include/tcmode-default.inc b/meta/conf/distro/include/tcmode-default.inc index 0a068be..2bfa225 100644 --- a/meta/conf/distro/includ

[OE-core] [CONSOLIDATED PULL 02/28] libpcap: fix pcap-config to not return -Wl, -rpath

2012-07-25 Thread Saul Wold
From: Christopher Larson Signed-off-by: Christopher Larson Signed-off-by: Saul Wold --- meta/recipes-connectivity/libpcap/libpcap.inc |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/recipes-connectivity/libpcap/libpcap.inc b/meta/recipes-connectivity/libpcap/li

[OE-core] [CONSOLIDATED PULL 01/28] initscripts: don't bg mk_dirs in populate-volatile

2012-07-25 Thread Saul Wold
From: Christopher Larson If a directory needs to be created to create something else in volatiles, there's no guarantees on ordering due to the backgrounding. We can't guarantee with certainty that the create directory commands are complete before the later ones run. This ensures that we wait for

[OE-core] [PATCH 0/1] mtools: add glibc-gconv-* to RDEPENDS/RRECOMMENDS

2012-07-25 Thread xin.ouyang
From: Xin Ouyang [YOCTO #2829] mtools commands use cp850 as the "mtools_default_codepage", they would use this to do some coverting tasks. So, add glibc-gconv-ibm850 to RDEPENDS for mtools commands to run correctly. The following changes since commit 0ffb02eec2beaea27ff0ec9d3d31b0a09e675

[OE-core] [PATCH 1/1] mtools: add glibc-gconv-* to RDEPENDS/RRECOMMENDS

2012-07-25 Thread xin.ouyang
From: Xin Ouyang [YOCTO #2829] mtools commands use cp850 as the "mtools_default_codepage", they would use this to do some coverting tasks. So, add glibc-gconv-ibm850 to RDEPENDS for mtools commands to run correctly. Also add other MSDOS/FAT codepages related packages to RRECOMMENDS. Code Page