Re: [OE-core] [PATCH] archiver.bbclass: Archive the native builds as well

2013-01-19 Thread Holger Hans Peter Freyther
On Fri, Jan 18, 2013 at 10:25:43AM -0800, Saul Wold wrote: I understand what the issue is here, but I am not sure this is the right solution. This will likely bring in way more than is wanted or needed for source archiving. What's needed from the opkg-utils-native? IANAL so let me say it

[OE-core] git address in SRC_URI, doesn't works for me

2013-01-19 Thread lei yang
Hi experts. One git address's prefix is http --- http://git.opensvc.com/multipath-tools/.git, it means git clone http://git.opensvc.com/multipath-tools/.git - works git clone git://git.opensvc.com/multipath-tools/.git - doesn't work I tried SRC_URI with below, both failed

[OE-core] [PATCH] pulseaudio: Pulseaudio DEPENDS on libjson

2013-01-19 Thread mike . looijmans
From: MiLo milo-softw...@users.sourceforge.net The configure script tests for libjson's presence. The missing dependency becomes apparent when building without x11 or gnome. Signed-off-by: MiLo milo-softw...@users.sourceforge.net --- meta/recipes-multimedia/pulseaudio/pulseaudio.inc |2 +-

[OE-core] [PATCH] gcc: Enable OpenMP compiling and library

2013-01-19 Thread mike . looijmans
From: Mike Looijmans mike.looijm...@topic.nl Multicore embedded systems are getting more and more common. Remove --disable-openmp from the GCC configuration options and always build libgomp. This only creates a bigger compiler but has no effect on the compiled binaries that don't use openmp.

Re: [OE-core] [PATCH] pulseaudio: Pulseaudio DEPENDS on libjson

2013-01-19 Thread Marcin Juszkiewicz
W dniu 19.01.2013 10:20, mike.looijm...@topic.nl pisze: From: MiLo milo-softw...@users.sourceforge.net The configure script tests for libjson's presence. The missing dependency becomes apparent when building without x11 or gnome. Signed-off-by: MiLo milo-softw...@users.sourceforge.net ---

Re: [OE-core] [PATCH] pulseaudio: Pulseaudio DEPENDS on libjson

2013-01-19 Thread Mike Looijmans
(sorry for top-posting but I'm forced to use outlook's web client when not in the office) Indeed, that patch is pointless. Which makes me wonder how I got the 2.1 build to fail on missing libjson, but thats a mystery for myself to solve... Regards, Mike Met vriendelijke groet / kind

[OE-core] [PATCH] populate_sdk_base.bbclass: Work around bugs with gnu tar 1.24

2013-01-19 Thread Jason Wessel
The gnu tar versions less than 1.24 pose a problem with the SDK extraction. A typical SDK will have hard links. The SDK is created with a newer version of tar but extracted with the host version of tar which may be much older. The specific defect is that older version of gnu tar do not properly

[OE-core] [PATCH] package.bbclass: replace AUTOINC directly in PKGV

2013-01-19 Thread Enrico Scholz
From: Enrico Scholz enrico.sch...@informatik.tu-chemnitz.de b27b438221e16ac3df6ac66d761b77e3bd43db67 introduced a regression when PKGV is modified by the recipe. E.g. when having something like | PV = 1.7.33+gitr${SRCPV} | PKGV = 1.7.33+gitr${GITPKGV} | RDEPENDS_${PN}-subpkg += ${PN} (=

[OE-core] [PATCH 0/4] boost, nfs-utils upgrade, drop KERNEL_CC

2013-01-19 Thread Khem Raj
This patchset is about upgrading boost and nfs-utils to latest KERNEL_CC is now formed using CC, this patch has been tested fair bit now The following changes since commit 18bc7b44ef58cbcbe32d45504d71eed54ef695a4: guilt: add git 1.8.x support (2013-01-18 13:20:56 +) are available in the

[OE-core] [PATCH 1/4] kernel.bbclass, module-base.bbclass: Use CC to form KERNEL_CC

2013-01-19 Thread Khem Raj
kernel compiler is not special and we currently have it so we want to pass -march and -mtune options as CFLAGS to kernel build so that compiler picks the right subarch flags when compiling assembly files in particular. Otherwise defaults are chosen which may not be right in many case e.g. when

[OE-core] [PATCH 2/4] nfs-utils: Upgrade 1.2.3 - 1.2.8-rc2

2013-01-19 Thread Khem Raj
From: Khem Raj k...@juniper.net Disable nfsv4l since it needs LVM2 which is not available in OE-Core Disable nfsdcltrack since its configure time check for sqlite3 is not cross compiling safe It can support ipv6 but thats disabled since we disable libtirpc which is needed for ipv6 support in

[OE-core] [PATCH 3/4] consolekit_0.4.5.bb: Package unpackaged systemd files

2013-01-19 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- .../recipes-support/consolekit/consolekit_0.4.5.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/consolekit/consolekit_0.4.5.bb b/meta/recipes-support/consolekit/consolekit_0.4.5.bb index

[OE-core] [PATCH 4/4] boost: Upgrade 1.51 - 1.52

2013-01-19 Thread Khem Raj
Drop hash_enums.patch which is already applied upstream Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-support/boost/boost.inc |2 - .../boost/{boost_1.51.0.bb = boost_1.52.0.bb} |8 ++-- meta/recipes-support/boost/files/hash_enums.patch | 45

[OE-core] [PATCH 03/10] dbus: respect systemd distro feature

2013-01-19 Thread Ross Burton
Only configure for systemd if we are using systemd, and remove the dbus-systemd package by putting the service files into PN itself. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-core/dbus/dbus.inc | 27 ++- 1 file changed, 14 insertions(+), 13

[OE-core] [PATCH 00/10] Initial systemd integration

2013-01-19 Thread Ross Burton
Hi, This series has the goal of enabling core-image-minimal to boot using systemd. As such it touches no real services, just the infrastructural tweaks to make the init manager a distribution choice, systemd itself, and a few low-level changes. 95% of the credit obviously must go to the

[OE-core] [PATCH 06/10] packagegroup-core-boot: install systemd-compat-units on systemd images

2013-01-19 Thread Ross Burton
systemd-compat-units is needed to run postinsts for example. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-core/packagegroups/packagegroup-core-boot.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb

[OE-core] [PATCH 02/10] default-providers: Automatically set PREFERRED_PROVIDER_udev

2013-01-19 Thread Ross Burton
From: Radu Moisan radu.moi...@intel.com This is a more generic way to set preferred provider for udev. We expect to have multiple choices once we integrate other init managers, and this way we can automatically set it considering distro settings. Signed-off-by: Radu Moisan radu.moi...@intel.com

[OE-core] [PATCH 05/10] default-providers: Add systemd option to PREFERRED_PROVIDER_udev

2013-01-19 Thread Ross Burton
From: Radu Moisan radu.moi...@intel.com Signed-off-by: Radu Moisan radu.moi...@intel.com Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/conf/distro/include/default-providers.inc |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 07/10] update-rc.d: disable update-rc.d.bbclass when systemd enabled

2013-01-19 Thread Ross Burton
From: Radu Moisan radu.moi...@intel.com update-rc.d is not necessary when systemd is enabled, systemctl is the replacement Signed-off-by: Radu Moisan radu.moi...@intel.com Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/classes/update-rc.d.bbclass | 90

[OE-core] [PATCH 01/10] default-distrovars: Add DISTRO_FEATURES_INITMAN to DISTRO_FEATURES

2013-01-19 Thread Ross Burton
From: Radu Moisan radu.moi...@intel.com This is a more generic way to set the init manager since we plan to support other init managers as well. I will use this variable as a switch to turn on/off any init scheme that we might support in the future. By default we use sysvinit. Signed-off-by:

[OE-core] [PATCH 08/10] base-files: add fstab for systemd based systems

2013-01-19 Thread Ross Burton
From: Martin Donnelly martin.donne...@ge.com The default fstab has entries which are not necessary in systemd based systems so add a simpler default in this case. Signed-off-by: Martin Donnelly martin.donne...@ge.com Signed-off-by: Radu Moisan radu.moi...@intel.com Signed-off-by: Ross Burton

[OE-core] [PATCH 10/10] libpam: register PAM session with logind

2013-01-19 Thread Ross Burton
From: Koen Kooi k...@dominion.thruhere.net This make screen/tmux/etc work as intended. Signed-off-by: Martin Donnelly martin.donne...@ge.com Signed-off-by: Koen Kooi k...@dominion.thruhere.net Signed-off-by: Ross Burton ross.bur...@intel.com ---

Re: [OE-core] [PATCH 0/4] boost, nfs-utils upgrade, drop KERNEL_CC

2013-01-19 Thread Otavio Salvador
On Sat, Jan 19, 2013 at 8:39 PM, Khem Raj raj.k...@gmail.com wrote: This patchset is about upgrading boost and nfs-utils to latest KERNEL_CC is now formed using CC, this patch has been tested fair bit now The following changes since commit 18bc7b44ef58cbcbe32d45504d71eed54ef695a4: guilt:

[OE-core] package.bbclass: Fix shlibs cross package-arch contamination

2013-01-19 Thread Richard Purdie
I found that if I had two packages architectures built (say core2 and i586), that the shlibs data from i586 was being used in the core2 build. This lead to odd dependency issues if the i586 build was out of date and core2 was being targetted. When loading shlibs files, the last loaded wins so we

[OE-core] [PATCH] cpan_build: Fix bashism

2013-01-19 Thread Richard Purdie
Fix a build failure caused by a bashism and improve quoting whilst in the area. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/classes/cpan_build.bbclass b/meta/classes/cpan_build.bbclass index 0809602..78592be 100644 --- a/meta/classes/cpan_build.bbclass

[OE-core] [PATCH] cpan_build: Fix cmaker Build.PL module builds

2013-01-19 Thread Richard Purdie
Certain cpan Build.PL based modules were failing to build due to the host's config information being used instead of the targets. This patch sets the appropriate variables to ensure the modules get the correct configuration from the target config_heavy.pl script. It also ensures the linker is

[OE-core] [PATCH] perl-native: Add errno_ver.diff patch to native perl

2013-01-19 Thread Richard Purdie
Apply the errno_ver.diff patch to the native perl version. This ensures that when we're building target modules, running the native perl binary but in a target configuration we don't see error messages. libencode-detect-perl is a module which tests this. Signed-off-by: Richard Purdie

[OE-core] [PATCH] perl: Add dyanloader build hack

2013-01-19 Thread Richard Purdie
Patch perl to allow builds to work where a native perl running against target modules attempts to load a dynamic binary module. We assume that a native version of the module exists as it would for the target and perform an appropriate path substitution. Signed-off-by: Richard Purdie

[OE-core] [PATCH] perl-rprovides: Fix perl-module-config anf perl-module-build providers

2013-01-19 Thread Richard Purdie
The rearrangement of various file contents left these empty modules which don't get packaged and hence lead to image creation errors on anything using them. This patch ensures the dependencies are attached to the packages which contain the config files or the build module infrastructure as

Re: [OE-core] [PATCH 6/6] base.bbclass: improve the incompatible license logic a bit

2013-01-19 Thread Chris Larson
On Fri, Jan 18, 2013 at 10:02 PM, Saul Wold s...@linux.intel.com wrote: Can you please review this as we are closing m3 on Sunday Midnight. Heh, looks like nobody ever really exercised the package exclusion code. I'll take a look sunday morning if need be. -- Christopher Larson

Re: [OE-core] [bitbake-devel] git address in SRC_URI, doesn't works for me

2013-01-19 Thread Chris Larson
On Sat, Jan 19, 2013 at 2:13 AM, lei yang yanglei.f...@gmail.com wrote: SRC_URI = git://git.opensvc.com/multipath-tools/.git;protocol=http it doe noting,and trying to find COPING,but it doesn't clone it This is the correct syntax. The URL scheme (git://) determines what bitbake fetcher, and

Re: [OE-core] [PATCH 0/4] boost, nfs-utils upgrade, drop KERNEL_CC

2013-01-19 Thread Khem Raj
On Saturday, January 19, 2013, Otavio Salvador wrote: On Sat, Jan 19, 2013 at 8:39 PM, Khem Raj raj.k...@gmail.comjavascript:; wrote: This patchset is about upgrading boost and nfs-utils to latest KERNEL_CC is now formed using CC, this patch has been tested fair bit now The following

Re: [OE-core] [bitbake-devel] git address in SRC_URI, doesn't works for me

2013-01-19 Thread lei yang
On Sun, Jan 20, 2013 at 10:15 AM, Chris Larson clar...@kergoth.com wrote: On Sat, Jan 19, 2013 at 2:13 AM, lei yang yanglei.f...@gmail.com wrote: SRC_URI = git://git.opensvc.com/multipath-tools/.git;protocol=http it doe noting,and trying to find COPING,but it doesn't clone it This is the

[OE-core] [PATCH 0/2] linux-yocto: -stable, -rt and meta changes

2013-01-19 Thread Bruce Ashfield
Richard/Saul, Two more -stable updates for the 3.4 kernel, and a -rt refresh. We also have some config changes to Intel graphics from Nitin. Tested here on my normal set of builds, no issues were seen. This puts 3.4 in an up to date state, and I'll now focus on introducing 3.8 and removing the

[OE-core] [PATCH 2/2] linux-yocto/3.4: update intel graphics features/configs

2013-01-19 Thread Bruce Ashfield
Updating the meta branch to import the following commits that cleanup and reorganize the features that make up the graphics features of the Intel BSPs c0b3904 meta: add config fragment for gma600 graphics driver f41638f meta: add config fragment for gma500 graphics driver ff8ad3e meta:

[OE-core] [PATCH 1/2] linux-yocto/3.4: update to 3.4.26 and 3.4.25-rt37

2013-01-19 Thread Bruce Ashfield
Updating the yocto 3.4 kernel tree to the 3.4.25 and 3.4.26 -stable updates as well as refreshing the preempt-rt branches to 3.4.25-rt37. Signed-off-by: Bruce Ashfield bruce.ashfi...@windriver.com --- meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb |8

Re: [OE-core] [bitbake-devel] git address in SRC_URI, doesn't works for me

2013-01-19 Thread lei yang
On Sun, Jan 20, 2013 at 10:15 AM, Chris Larson clar...@kergoth.com wrote: On Sat, Jan 19, 2013 at 2:13 AM, lei yang yanglei.f...@gmail.com wrote: SRC_URI = git://git.opensvc.com/multipath-tools/.git;protocol=http it doe noting,and trying to find COPING,but it doesn't clone it This is the