[OE-core] [PATCH] site/common: deactivate a runtime check for ipv6-support in, python =2.7.1 that fails when cross-compiling

2013-01-09 Thread Lukas Bulwahn
In configure there is a runtime check to determine buggy getaddrinfo and as we are cross-compiling this check goes wrong. If ipv6 is enabled in python, the failed test is reported as fatal error with the message Fatal: You must get working getaddrinfo() function. Setting

Re: [OE-core] [PATCH 1/2] easyinstall: class to create and extend the easyinstall.pth file

2013-01-09 Thread Lukas Bulwahn
On 12/20/2012 12:34 PM, Burton, Ross wrote: Not sure how I failed to notice this, but there's a setuptools.bbclass in oe-core: inherit distutils DEPENDS += python-setuptools-native DISTUTILS_INSTALL_ARGS = --root=${D} \ --single-version-externally-managed \ --prefix=${prefix} \

Re: [OE-core] [PATCH 1/1] glib-2.0-native:add option march to BUILD_CFLAGS

2013-01-09 Thread Hongxu Jia
On 01/07/2013 02:28 AM, Colin Walters wrote: On Sun, 2013-01-06 at 16:34 +0800, Hongxu Jia wrote: +# Add option -march to BUILD_CFLAGS in order to let the atomic operations +# (lock free) be available while using old version GCC on x86 host to +# compile glib-2.0-native +BUILD_CFLAGS +=

Re: [OE-core] meta-toolchain build for uclibc, possible issue?

2013-01-09 Thread Giuseppe Condorelli
Hi Richard, thanks for your reply. Indeed my doubt remain valid, because I'm not understanding why I can build an image (i.e. bitbake core-image-minimal) simply building the cross-compiler uclibc based plus the other packages and instead I cannot create the sdk containing an uclibc based

[OE-core] Problems with sending patch

2013-01-09 Thread Lukas Bulwahn
Hi, I have been repeated trying to send a patch to this mailing list, but it seems that it never appears here. I have checked the commit extensively for some problem, I tried different ways of sending with format-patch and thunderbird, and git-send-email. And I have checked our mail server.

[OE-core] [PATCH 0/2]native recipes:add option march to BUILD_CFLAGS

2013-01-09 Thread Hongxu Jia
Add option -march to BUILD_CFLAGS in order to let the atomic operations (lock free) be available while using old version GCC on x86 host to compile glib-2.0-native. It's a bad idea to modify bitbake.conf to add option -march to BUILD_CFLAGS, because it's global and its side effect is unknown,

[OE-core] [PATCH 2/2] qemu-native:add option march to BUILD_CFLAGS

2013-01-09 Thread Hongxu Jia
Add option -march to BUILD_CFLAGS in order to let the atomic operations (lock free) be available while using old version GCC (4.3.4 for example) on x86 host to compile glib-2.0-native. [YOCTO #3563] Signed-off-by: Hongxu Jia hongxu@windriver.com --- meta/recipes-devtools/qemu/qemu.inc |

[OE-core] [PATCH 1/2] glib-2.0-native:add option march to BUILD_CFLAGS

2013-01-09 Thread Hongxu Jia
Add option -march to BUILD_CFLAGS in order to let the atomic operations (lock free) be available while using old version GCC (4.3.4 for example) on x86 host to compile glib-2.0-native. [YOCTO #3563] Signed-off-by: Hongxu Jia hongxu@windriver.com ---

Re: [OE-core] Problems with sending patch

2013-01-09 Thread Marko Lindqvist
On 9 January 2013 10:34, Lukas Bulwahn lukas.bulw...@oss.bmw-carit.de wrote: Hi, I have been repeated trying to send a patch to this mailing list, but it seems that it never appears here. I have checked the commit extensively for some problem, I tried different ways of sending with

Re: [OE-core] [PATCH 2/2] qemu-native:add option march to BUILD_CFLAGS

2013-01-09 Thread Burton, Ross
On 9 January 2013 08:46, Hongxu Jia hongxu@windriver.com wrote: Add option -march to BUILD_CFLAGS in order to let the atomic operations (lock free) be available while using old version GCC (4.3.4 for example) on x86 host to compile glib-2.0-native. Did you mean to say glib? Ross

Re: [OE-core] Problems with sending patch

2013-01-09 Thread Lukas Bulwahn
On 01/09/2013 09:50 AM, Marko Lindqvist wrote: On 9 January 2013 10:34, Lukas Bulwahn lukas.bulw...@oss.bmw-carit.de wrote: Hi, I have been repeated trying to send a patch to this mailing list, but it seems that it never appears here. I have checked the commit extensively for some problem, I

Re: [OE-core] [PATCH 2/2] qemu-native:add option march to BUILD_CFLAGS

2013-01-09 Thread Hongxu Jia
On 01/09/2013 04:50 PM, Burton, Ross wrote: On 9 January 2013 08:46, Hongxu Jia hongxu@windriver.com wrote: Add option -march to BUILD_CFLAGS in order to let the atomic operations (lock free) be available while using old version GCC (4.3.4 for example) on x86 host to compile

[OE-core] [PATCH 0/3] On-target multilib gcc enhancement

2013-01-09 Thread Constantin Musca
This patchset enables the user to build gcc with configurable multilib options. The following changes since commit 7e1f8faad0c4b6f490c26f87acc698dd6e002b15: perl: Remove bashism from perl-tests.inc (2013-01-07 22:37:37 +) are available in the git repository at:

[OE-core] [PATCH 3/3] gcc: enable multilib for target gcc

2013-01-09 Thread Constantin Musca
- add a task to setup multilib configuration for target gcc - this commit adapts Nitin Kamble's work to gcc 4.7 Tests: root@qemux86-64:~# gcc -m64 t.c -o t root@qemux86-64:~# file t t: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux

[OE-core] [PATCH 1/3] gcc: add missing dependency (zlib)

2013-01-09 Thread Constantin Musca
- add zlib to DEPENDS (it fails otherwise) Signed-off-by: Constantin Musca constantinx.mu...@intel.com --- meta/recipes-devtools/gcc/gcc-4.7.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/gcc/gcc-4.7.inc b/meta/recipes-devtools/gcc/gcc-4.7.inc

[OE-core] [PATCH 2/3] gcc: remove the 64bithack patch

2013-01-09 Thread Constantin Musca
Signed-off-by: Constantin Musca constantinx.mu...@intel.com --- meta/recipes-devtools/gcc/gcc-4.7.inc | 1 - meta/recipes-devtools/gcc/gcc-4.7/64bithack.patch | 63 --- 2 files changed, 64 deletions(-) delete mode 100644

[OE-core] [PATCH] Git ignore pull requests and built manuals

2013-01-09 Thread Alex DAMIAN
From: Alexandru DAMIAN alexandru.dam...@intel.com We ignore the in-tree built manuals, and the in-tree pull requests. --- .gitignore |5 + 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index d99a409..43f7688 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,8

[OE-core] [PATCH 0/1] sstate.bbclass:specify function dirs to avoid race

2013-01-09 Thread Hongxu Jia
The following changes since commit 7e1f8faad0c4b6f490c26f87acc698dd6e002b15: perl: Remove bashism from perl-tests.inc (2013-01-07 22:37:37 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib hongxu/specify_func_dirs

[OE-core] [PATCH 1/1] sstate.bbclass:specify function dirs to avoid race

2013-01-09 Thread Hongxu Jia
Specify dirs in which the shell function sstate_create_package and sstate_unpack_package are executed and don't use ${B} as default dirs to avoid possible race with task do_rootfs at deb image creation time. [YOCTO #3674] Signed-off-by: Hongxu Jia hongxu@windriver.com ---

Re: [OE-core] [CONSOLIDATED PULL (V2) 00/35] Updates, Multilib Patches and other fixes

2013-01-09 Thread Martin Jansa
On Wed, Jan 09, 2013 at 09:46:57AM +0200, Marko Lindqvist wrote: On 6 January 2013 22:28, Marko Lindqvist cazf...@gmail.com wrote: On 6 January 2013 06:29, Saul Wold s...@linux.intel.com wrote: Even after a number of years, I loose track sometimes of what's stable vs unstable (odd vs .99

Re: [OE-core] [CONSOLIDATED PULL (V2) 00/35] Updates, Multilib Patches and other fixes

2013-01-09 Thread Marko Lindqvist
On 9 January 2013 11:13, Martin Jansa martin.ja...@gmail.com wrote: On Wed, Jan 09, 2013 at 09:46:57AM +0200, Marko Lindqvist wrote: What I'm envisioning is that maybe bitbake should provide us with new variable PM or PMV (major version) that's basically PV with last dot and everything after

Re: [OE-core] [CONSOLIDATED PULL (V2) 00/35] Updates, Multilib Patches and other fixes

2013-01-09 Thread Ross Burton
On Wednesday, 9 January 2013 at 09:33, Marko Lindqvist wrote: Exactly, except that it would be provided by bitbake, and not constructed by each recipe itself - less recipe writing work + you could count on it to always mean same thing. Everything but the last dot, or the first two components,

Re: [OE-core] [CONSOLIDATED PULL (V2) 00/35] Updates, Multilib Patches and other fixes

2013-01-09 Thread Marko Lindqvist
On 9 January 2013 11:42, Ross Burton ross.bur...@intel.com wrote: On Wednesday, 9 January 2013 at 09:33, Marko Lindqvist wrote: Exactly, except that it would be provided by bitbake, and not constructed by each recipe itself - less recipe writing work + you could count on it to always mean same

Re: [OE-core] [CONSOLIDATED PULL (V2) 00/35] Updates, Multilib Patches and other fixes

2013-01-09 Thread Martin Jansa
On Wed, Jan 09, 2013 at 12:00:20PM +0200, Marko Lindqvist wrote: On 9 January 2013 11:42, Ross Burton ross.bur...@intel.com wrote: On Wednesday, 9 January 2013 at 09:33, Marko Lindqvist wrote: Exactly, except that it would be provided by bitbake, and not constructed by each recipe itself -

Re: [OE-core] [CONSOLIDATED PULL (V2) 00/35] Updates, Multilib Patches and other fixes

2013-01-09 Thread Marko Lindqvist
On 9 January 2013 12:29, Martin Jansa martin.ja...@gmail.com wrote: On Wed, Jan 09, 2013 at 12:00:20PM +0200, Marko Lindqvist wrote: On 9 January 2013 11:42, Ross Burton ross.bur...@intel.com wrote: On Wednesday, 9 January 2013 at 09:33, Marko Lindqvist wrote: Exactly, except that it would

Re: [OE-core] [PATCH v2 0/3] have input method modules cached at do-rootfs time

2013-01-09 Thread Laurentiu Palcu
Hi Saul, Any reason for not merging this patchset? Thanks, Laurentiu On 12/20/2012 03:15 PM, Laurentiu Palcu wrote: changes in v2: * added a new qemu.bbclass function that will return a string containing the command line needed to run a target binary through qemu at postinstall time;

Re: [OE-core] [RFC][PATCH 0/4] eglibc 2.17 upgrade

2013-01-09 Thread Marcin Juszkiewicz
W dniu 05.01.2013 01:00, Khem Raj pisze: I would like folks to try and test this upgrade. I have tested it on angstrom/systemd-image booted on all supported qemu images. This is however now the final set since I have to put the 2.17 tars on downloads location Please try it out in your

[OE-core] should SRC_URI for mpfr be switched to ftp.gnu.org?

2013-01-09 Thread Robert P. J. Day
currently, fetching from mpfr's official SRC_URI, http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2, is failing, and i can't even browse there. however, mpfr seems well supported here: http://ftp.gnu.org/gnu/mpfr/ is there any incentive to switch SRC_URI, or is mpfr.org the official

[OE-core] [PATCH] guile: add explicit dependency to avoid parallel build issue

2013-01-09 Thread Bogdan Marinescu
Add explicit dependency for libpath.h on dynl.x which fixes a potential parallel build issue. [YOCTO #3558] Signed-off-by: Bogdan Marinescu bogdan.a.marine...@intel.com --- .../guile/files/fix_parallel_build_issue.patch | 20 meta/recipes-devtools/guile/guile_2.0.7.bb

[OE-core] [PATCH v3 1/2] harfbuzz: add recipe, version 0.9.10

2013-01-09 Thread Marko Lindqvist
OpenType text shaping engine HarfBuzz is dependency of pango = 1.32 This depends on all of glib-2.0, cairo, and freetype to consistently provide all backends. Otherwise it would, in typical case, depend on build order of these packages. HarfBuzz configure would pick those backends for which

[OE-core] [PATCH v3 2/2] pango: update to upstream version 1.32.5

2013-01-09 Thread Marko Lindqvist
multilib-fix-clean.patch adjusted to apply cleanly, and to handle new modules.cache file. Signed-off-by: Marko Lindqvist cazf...@gmail.com --- .../pango/pango-1.30.1/multilib-fix-clean.patch| 42 --- .../pango/pango-1.32.5/multilib-fix-clean.patch| 75

Re: [OE-core] Problems with sending patch

2013-01-09 Thread Richard Purdie
On Wed, 2013-01-09 at 09:54 +0100, Lukas Bulwahn wrote: On 01/09/2013 09:50 AM, Marko Lindqvist wrote: On 9 January 2013 10:34, Lukas Bulwahn lukas.bulw...@oss.bmw-carit.de wrote: Hi, I have been repeated trying to send a patch to this mailing list, but it seems that it never appears

[OE-core] for a quad-core machine, shouldn't parallelism be set to 8?

2013-01-09 Thread Robert P. J. Day
just noticed this in local.conf.sample: # For a quad-core machine, BB_NUMBER_THREADS = 4, PARALLEL_MAKE = -j 4 would # be appropriate for example. i thought the general rule was that parallelism should be *twice* the number of cores. that's certainly what's suggested in the yocto QS guide:

[OE-core] a style guide entry for using BBMASK?

2013-01-09 Thread Robert P. J. Day
is there a *preferred* format for setting BBMASK? in my travels, i've seen variations such as: dir/dir dir/dir/ dir/dir/* .*/dir/dir and so on. is there an aesthetic preference of any kind? rday -- Robert

Re: [OE-core] should SRC_URI for mpfr be switched to ftp.gnu.org?

2013-01-09 Thread Richard Purdie
On Wed, 2013-01-09 at 06:58 -0500, Robert P. J. Day wrote: currently, fetching from mpfr's official SRC_URI, http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2, is failing, and i can't even browse there. however, mpfr seems well supported here: http://ftp.gnu.org/gnu/mpfr/ is there any

Re: [OE-core] [RFC][PATCH 0/4] eglibc 2.17 upgrade

2013-01-09 Thread Martin Jansa
On Mon, Jan 07, 2013 at 02:49:48PM -0800, Khem Raj wrote: A bit of an update here. I have pushed another patch on top of this list to the branch to fix udev and after that I have been able to build and boot core-image-sato on all supported qemu machines. I've build tested with bitbake world

Re: [OE-core] [PATCH 2/3] gcc: remove the 64bithack patch

2013-01-09 Thread Richard Purdie
On Wed, 2013-01-09 at 11:00 +0200, Constantin Musca wrote: Signed-off-by: Constantin Musca constantinx.mu...@intel.com --- meta/recipes-devtools/gcc/gcc-4.7.inc | 1 - meta/recipes-devtools/gcc/gcc-4.7/64bithack.patch | 63 --- 2 files changed, 64

Re: [OE-core] for a quad-core machine, shouldn't parallelism be set to 8?

2013-01-09 Thread Elvis Dowson
Hi Robert, On my i7 quad core machine, I've set both values to 6. Setting it to 6 appears to be nearly the same as setting it to 8, I dare say a marginally faster by a minute. I can build core image console in around 22 minutes. Elvis Sent from my iPad On Jan 9, 2013, at 4:55 PM, Robert P. J.

Re: [OE-core] for a quad-core machine, shouldn't parallelism be set to 8?

2013-01-09 Thread Robert P. J. Day
On Wed, 9 Jan 2013, Elvis Dowson wrote: Hi Robert, On my i7 quad core machine, I've set both values to 6. Setting it to 6 appears to be nearly the same as setting it to 8, I dare say a marginally faster by a minute. I can build core image console in around 22 minutes. Elvis i recall

Re: [OE-core] [PATCH 2/3] gcc: remove the 64bithack patch

2013-01-09 Thread Constantin Musca
On 01/09/2013 03:45 PM, Richard Purdie wrote: On Wed, 2013-01-09 at 11:00 +0200, Constantin Musca wrote: Signed-off-by: Constantin Musca constantinx.mu...@intel.com --- meta/recipes-devtools/gcc/gcc-4.7.inc | 1 - meta/recipes-devtools/gcc/gcc-4.7/64bithack.patch | 63

Re: [OE-core] for a quad-core machine, shouldn't parallelism be set to 8?

2013-01-09 Thread Martin Jansa
On Wed, Jan 09, 2013 at 09:26:10AM -0500, Robert P. J. Day wrote: On Wed, 9 Jan 2013, Elvis Dowson wrote: Hi Robert, On my i7 quad core machine, I've set both values to 6. Setting it to 6 appears to be nearly the same as setting it to 8, I dare say a marginally faster by a minute. I

Re: [OE-core] [PATCH] musicbrainz: handle rebuilds

2013-01-09 Thread Diego
Ross Burton ross.burton@... writes: When rebuilding build-native already exists, so don't error when running mkdir. Signed-off-by: Ross Burton ross.burton@... --- meta/recipes-multimedia/musicbrainz/libmusicbrainz_git.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [OE-core] [RFC][PATCH 0/4] eglibc 2.17 upgrade

2013-01-09 Thread Khem Raj
On Wed, Jan 9, 2013 at 3:38 AM, Marcin Juszkiewicz marcin.juszkiew...@linaro.org wrote: W dniu 05.01.2013 01:00, Khem Raj pisze: I would like folks to try and test this upgrade. I have tested it on angstrom/systemd-image booted on all supported qemu images. This is however now the final set

Re: [OE-core] [RFC][PATCH 0/4] eglibc 2.17 upgrade

2013-01-09 Thread Marcin Juszkiewicz
W dniu 05.01.2013 01:00, Khem Raj pisze: I would like folks to try and test this upgrade. I have tested it on angstrom/systemd-image booted on all supported qemu images. This is however now the final set since I have to put the 2.17 tars on downloads location Please try it out in your

Re: [OE-core] [RFC][PATCH 0/4] eglibc 2.17 upgrade

2013-01-09 Thread Khem Raj
On Wed, Jan 9, 2013 at 6:59 AM, Marcin Juszkiewicz marcin.juszkiew...@linaro.org wrote: W dniu 05.01.2013 01:00, Khem Raj pisze: I would like folks to try and test this upgrade. I have tested it on angstrom/systemd-image booted on all supported qemu images. This is however now the final set

Re: [OE-core] State of bitbake world

2013-01-09 Thread Andreas Müller
On Wed, Jan 9, 2013 at 2:28 PM, Martin Jansa martin.ja...@gmail.com wrote: Updated list with current oe-core + eglibc-2.17 and changes listed in in-test bundle on patchwork Summary: 31 tasks failed: Build log: http://logs.nslu2-linux.org/buildlogs/oe/oe-shr-core-branches/20130109051600.log

[OE-core] WebHob Mailing List Setup

2013-01-09 Thread Richard Purdie
Various people at various times have expressed an interest in webhob which will be a web interface to bitbake's functionality as an evolution of the capabilities of the current hob UI. There are some people looking at the design of it and who are actively working on figuring out what it should

Re: [OE-core] a style guide entry for using BBMASK?

2013-01-09 Thread Chris Larson
On Wed, Jan 9, 2013 at 6:09 AM, Robert P. J. Day rpj...@crashcourse.cawrote: is there a *preferred* format for setting BBMASK? in my travels, i've seen variations such as: dir/dir dir/dir/ dir/dir/* .*/dir/dir and so on. is there an aesthetic preference of any kind? It's

[OE-core] locking down patchwork and wiki registrations

2013-01-09 Thread Khem Raj
Hi We receive tonne of spam in form of registrations everyday and some of bots have become smarted that they even activate their profiles. It has to be manually deleted and its tedious. I would therefore like to remove the 'register' link from pw front page that will stop the spam as I have

Re: [OE-core] State of bitbake world

2013-01-09 Thread Burton, Ross
On 9 January 2013 15:17, Andreas Müller schnitzelt...@googlemail.com wrote: 2. bitbake libnotify3 - Tons of: 'WARNING: The recipe libnotify3 is trying to install files into a shared area when those files already exist. Those files and their manifest location are:

[OE-core] [PATCH V2] musicbrainz: handle rebuilds

2013-01-09 Thread Ross Burton
When rebuilding build-native already exists. Sadly handling the directory existing causes cmake to forkbomb when rebuilding, so delete an existing build-native. Also remove a variable that cmake warns isn't being used, and just build the tool that we need natively, not the entire library.

Re: [OE-core] WebHob Mailing List Setup

2013-01-09 Thread Philip Balister
On 01/09/2013 10:22 AM, Richard Purdie wrote: Various people at various times have expressed an interest in webhob which will be a web interface to bitbake's functionality as an evolution of the capabilities of the current hob UI. There are some people looking at the design of it and who are

Re: [OE-core] [RFC][PATCH 0/4] eglibc 2.17 upgrade

2013-01-09 Thread Saul Wold
On 01/09/2013 07:02 AM, Khem Raj wrote: On Wed, Jan 9, 2013 at 6:59 AM, Marcin Juszkiewicz marcin.juszkiew...@linaro.org wrote: W dniu 05.01.2013 01:00, Khem Raj pisze: I would like folks to try and test this upgrade. I have tested it on angstrom/systemd-image booted on all supported qemu

[OE-core] [PATCH 0/3] Add GTK+3

2013-01-09 Thread Ross Burton
This short series adds GTK+ 3 after preparing GTK+ 2 and extending pkg-config. The GTK+ 2 changes move gtk-update-icon-cache to use alternatives so that it doesn't conflict with GTK+ 3's gtk-update-icon-cache. The alternative that meta-oe takes is to depend on GTK+ 2 to provide these tools, so

[OE-core] [PATCH 2/3] pkgconfig: add -native script that uses the native sysroot instead of target

2013-01-09 Thread Ross Burton
pkg-config-native is useful when building a package for the target that needs to compile a build-time tool, to avoid having to hard-code many paths. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-devtools/pkgconfig/pkgconfig.inc| 10 ++

[OE-core] [PATCH 1/3] gtk+: version installed gtk-update-icon-cache and use alternatives

2013-01-09 Thread Ross Burton
With GTK+ 3 being added soon we'll have potentially two providers of gtk-update-icon-cache. Append a version to the binary and use update-alternatives to ensure that the unversioned name works. For gtk+-native the alternatives won't take effect, so install a symlink explicitly. This will break

[OE-core] [PATCH 3/3] gtk+3: add 3.4.4

2013-01-09 Thread Ross Burton
Mostly taken from meta-gnome, with some changes. Instead of depending on gtk+-native, depend on just gdk-pixbuf-native and build the tool required for the host directly. This saves building the entire GTK+ stack natively just for one tool. Append a version suffix and use update-alternatives on

Re: [OE-core] [PATCH 00/21][RFC v3] systemd Integration

2013-01-09 Thread Saul Wold
On 01/08/2013 04:24 AM, Radu Moisan wrote: As Ross suggested I've done the following changes to the previous set: * added two patches (the first two) that address multiple init systems support,\ as in shifting from default hardcoded sysvinit to something more generic while the default values

[OE-core] [PATCH] kernel.bbclass: Define MODULE_IMAGE_BASE_NAME for layer convenience.

2013-01-09 Thread Robert P. J. Day
Define the additional variable MODULE_IMAGE_BASE_NAME since some layers (like meta-ti) would find it handy for multi-kernel definitions in that they wouldn't have to define their own variable representing exactly the same thing. Signed-off-by: Robert P. J. Day rpj...@crashcourse.ca --- diff

[OE-core] [PATCH] connman: upgrade to 1.10

2013-01-09 Thread Cristian Iorga
From: Constantin Musca constantinx.mu...@intel.com 0002-storage.c-If-there-is-no-d_type-support-use-fstatat.patch - adapted to the new version 0001-timezone.c-If-there-is-no-d_type-support-use-fstatat.patch - patch removed (it is included in the new version)

Re: [OE-core] [PATCH 00/21][RFC v3] systemd Integration

2013-01-09 Thread Khem Raj
On Wed, Jan 9, 2013 at 8:51 AM, Saul Wold s...@linux.intel.com wrote: | ./.libs/libsystemd-daemon.so: undefined reference to `mq_getattr' | collect2: error: ld returned 1 exit status | make[2]: *** [test-daemon] Error 1 | rm units/console-shell.service.m4

Re: [OE-core] [PATCH 00/21][RFC v3] systemd Integration

2013-01-09 Thread Khem Raj
On Tue, Jan 8, 2013 at 7:01 AM, Radu Moisan radu.moi...@intel.com wrote: Was this removal done on purpose? I had to port the patch manually so I guess it got lost then. Do we want to have Sign-off-by from author as well? absolutely thats the purpose of SOB to track to certificate of origin

Re: [OE-core] [PATCH 00/21][RFC v3] systemd Integration

2013-01-09 Thread Khem Raj
On Tue, Jan 8, 2013 at 4:24 AM, Radu Moisan radu.moi...@intel.com wrote: As Ross suggested I've done the following changes to the previous set: * added two patches (the first two) that address multiple init systems support,\ as in shifting from default hardcoded sysvinit to something more

Re: [OE-core] split mtd-utils

2013-01-09 Thread Richard Purdie
On Wed, 2013-01-09 at 17:12 +0100, Frans Meulenbroeks wrote: As I am involved in embedded systems where flash is somewhat sparse I'm always eager to save a few bytes where possible. Today I noticed that mtd-utils (1.5.0 from danny) generates for my architecture (powerpc) roughly 780k of

[OE-core] sstate, cache or licence issue?

2013-01-09 Thread Matthieu CRAPET
Dear all, I've got some trouble with my today's update to oe-core. I created a basic (image) recipe: --- DESCRIPTION = A console-only production image with headers. PR = r0 LICENSE = MIT IMAGE_FEATURES += dev-pkgs debug-tweaks package-management ssh-server-openssh inherit core-image

Re: [OE-core] [PATCH] connman: upgrade to 1.10

2013-01-09 Thread Burton, Ross
On 9 January 2013 17:11, Cristian Iorga cristian.io...@intel.com wrote: +do_install_append() { +#Blacklist ethn network interface in case of qemu* machines +case ${MACHINE} in This makes connman machine-specific, which isn't a good thing. This configuration file should be split out

Re: [OE-core] for a quad-core machine, shouldn't parallelism be set to 8?

2013-01-09 Thread Scott Garman
On 01/09/2013 06:26 AM, Robert P. J. Day wrote: On Wed, 9 Jan 2013, Elvis Dowson wrote: Hi Robert, On my i7 quad core machine, I've set both values to 6. Setting it to 6 appears to be nearly the same as setting it to 8, I dare say a marginally faster by a minute. I can build core image

[OE-core] [PATCH] valgrind: update configure for eglibc 2.17

2013-01-09 Thread Saul Wold
Tested with both eglibc 2.16 and 2.17 Signed-off-by: Saul Wold s...@linux.intel.com --- ...ibc-2.16.patch = configure-with-newer-glibc.patch} | 18 +- meta/recipes-devtools/valgrind/valgrind_3.7.0.bb | 4 ++-- 2 files changed, 15 insertions(+), 7 deletions(-) rename

[OE-core] [PATCH] local.conf.sample: Suggest parallelism of twice the number of cores.

2013-01-09 Thread Robert P. J. Day
To be consistent with the Yocto Quick Start Guide, recommend that parallelism represent twice the number of cores on a multi-core machine. Signed-off-by: Robert P. J. Day rpj...@crashcourse.ca --- diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index 859eb93..46187ce

Re: [OE-core] [PATCH] local.conf.sample: Suggest parallelism of twice the number of cores.

2013-01-09 Thread Saul Wold
On 01/09/2013 10:14 AM, Robert P. J. Day wrote: To be consistent with the Yocto Quick Start Guide, recommend that parallelism represent twice the number of cores on a multi-core machine. Signed-off-by: Robert P. J. Day rpj...@crashcourse.ca --- diff --git a/meta/conf/local.conf.sample

Re: [OE-core] [PATCH v2 0/3] have input method modules cached at do-rootfs time

2013-01-09 Thread Saul Wold
On 01/09/2013 03:14 AM, Laurentiu Palcu wrote: Hi Saul, Any reason for not merging this patchset? I thought there was a pending re-work of the grep/sed to awk per Ross's last email on the qemu.bbclass patch. I will pull it into a MUT and test. Sau! Thanks, Laurentiu On 12/20/2012 03:15

Re: [OE-core] for a quad-core machine, shouldn't parallelism be set to 8?

2013-01-09 Thread Bjørn Forsman
On 9 January 2013 13:55, Robert P. J. Day rpj...@crashcourse.ca wrote: just noticed this in local.conf.sample: # For a quad-core machine, BB_NUMBER_THREADS = 4, PARALLEL_MAKE = -j 4 would # be appropriate for example. i thought the general rule was that parallelism should be *twice*

Re: [OE-core] [PATCH] local.conf.sample: Suggest parallelism of twice the number of cores.

2013-01-09 Thread Enrico Scholz
Saul Wold sgw-VuQAYsv1563Yd54FQh9/c...@public.gmane.org writes: #PARALLEL_MAKE = -j 4 # -# For a quad-core machine, BB_NUMBER_THREADS = 4, PARALLEL_MAKE = -j 4 would -# be appropriate for example. - +# If you have a multi-core machine, you would normally set both of these variables

Re: [OE-core] [PATCH v3 2/2] pango: update to upstream version 1.32.5

2013-01-09 Thread Saul Wold
On 01/09/2013 04:13 AM, Marko Lindqvist wrote: multilib-fix-clean.patch adjusted to apply cleanly, and to handle new modules.cache file. Signed-off-by: Marko Lindqvist cazf...@gmail.com --- .../pango/pango-1.30.1/multilib-fix-clean.patch| 42 ---

Re: [OE-core] [PATCH v3 2/2] pango: update to upstream version 1.32.5

2013-01-09 Thread Saul Wold
On 01/09/2013 10:46 AM, Saul Wold wrote: On 01/09/2013 04:13 AM, Marko Lindqvist wrote: multilib-fix-clean.patch adjusted to apply cleanly, and to handle new modules.cache file. Signed-off-by: Marko Lindqvist cazf...@gmail.com --- .../pango/pango-1.30.1/multilib-fix-clean.patch| 42

Re: [OE-core] [PATCH] valgrind: update configure for eglibc 2.17

2013-01-09 Thread Khem Raj
Acked-by: Khem Raj raj.k...@gmail.com On Wed, Jan 9, 2013 at 9:56 AM, Saul Wold s...@linux.intel.com wrote: Tested with both eglibc 2.16 and 2.17 Signed-off-by: Saul Wold s...@linux.intel.com --- ...ibc-2.16.patch = configure-with-newer-glibc.patch} | 18 +-

Re: [OE-core] for a quad-core machine, shouldn't parallelism be set to 8?

2013-01-09 Thread Ross Burton
On Wednesday, 9 January 2013 at 18:42, Bjørn Forsman wrote: # For a quad-core machine, BB_NUMBER_THREADS = 4, PARALLEL_MAKE = -j 4 would # be appropriate for example. i thought the general rule was that parallelism should be *twice* the number of cores. that's certainly what's

Re: [OE-core] [oe] locking down patchwork and wiki registrations

2013-01-09 Thread Mark Hatle
On 1/9/13 9:59 AM, Khem Raj wrote: Hi We receive tonne of spam in form of registrations everyday and some of bots have become smarted that they even activate their profiles. It has to be manually deleted and its tedious. I would therefore like to remove the 'register' link from pw front page

Re: [OE-core] [oe] locking down patchwork and wiki registrations

2013-01-09 Thread Tom King
There are many of us who watch and can do this (at least 10 administrators) Tom On Wed, Jan 9, 2013 at 1:55 PM, Mark Hatle mark.ha...@windriver.com wrote: On 1/9/13 9:59 AM, Khem Raj wrote: Hi We receive tonne of spam in form of registrations everyday and some of bots have become smarted

Re: [OE-core] [oe] locking down patchwork and wiki registrations

2013-01-09 Thread Mark Hatle
On 1/9/13 3:58 PM, Tom King wrote: There are many of us who watch and can do this (at least 10 administrators) As long as requests can avoid a black hole, I don't have any other concerns with manual registration. --Mark Tom On Wed, Jan 9, 2013 at 1:55 PM, Mark Hatle

Re: [OE-core] WebHob Mailing List Setup

2013-01-09 Thread Michael Halstead
On 01/09/2013 08:31 AM, Philip Balister wrote: On 01/09/2013 10:22 AM, Richard Purdie wrote: Various people at various times have expressed an interest in webhob which will be a web interface to bitbake's functionality as an evolution of the capabilities of the current hob UI. There are some

[OE-core] [CONSOLIDATED PULL 00/43] Updates, fixes and groundwork for automake and eglibc

2013-01-09 Thread Saul Wold
Richard, This is a subset of patches that are pending on the list currently, mostly things build cleanly, there is a oprofile issue on PPC, that I am digging into, but I do not beleive it's related to this patch set. This set includes patches for the upcoming Eglibc and automake updates. I

Re: [OE-core] sstate, cache or licence issue?

2013-01-09 Thread ChenQi
On 01/10/2013 01:40 AM, Matthieu CRAPET wrote: Dear all, I've got some trouble with my today's update to oe-core. I created a basic (image) recipe: --- DESCRIPTION = A console-only production image with headers. PR = r0 LICENSE = MIT IMAGE_FEATURES += dev-pkgs debug-tweaks

[OE-core] [PATCH] alsa-utils: add bash as a dependency of the alsa-utils-alsaconf rpm.

2013-01-09 Thread Florin Sarbu
alsa-utils-alsaconf rpm contains the bash script alsaconf. In order to have the do_rootfs not error when bash is not brought along in the rootfs as an explicit dependency, we add it as a dependency of alsa-utils. Signed-off-by: Florin Sarbu florin.sa...@windriver.com ---

Re: [OE-core] [PATCH] connman: upgrade to 1.10

2013-01-09 Thread Iorga, Cristian
Hi Ross, Well, I have the prior art stand by me. The same technique is applied for netbase. And, in this specific case, connman should be machine specific. Can you please give me more detail? The configuration file will have only the interface blacklist enabled in case of a qemu* machine.

Re: [OE-core] [PATCH] connman: upgrade to 1.10

2013-01-09 Thread Ross Burton
On Thursday, 10 January 2013 at 07:15, Iorga, Cristian wrote: Well, I have the prior art stand by me. The same technique is applied for netbase. And, in this specific case, connman should be machine specific. Can you please give me more detail? The configuration file will have only the

[OE-core] [PATCH 0/1] apt-native: fix the creation of apt.conf.sample

2013-01-09 Thread Hongxu Jia
The following changes since commit 7e1f8faad0c4b6f490c26f87acc698dd6e002b15: perl: Remove bashism from perl-tests.inc (2013-01-07 22:37:37 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib hongxu/apt-native

[OE-core] [PATCH 1/1] apt-native: fix the creation of apt.conf.sample

2013-01-09 Thread Hongxu Jia
1.The file of apt.conf.sample is in the outdir, and outdir is assigned by os.path.join with the params of ${D}, ${sysconfdir} and apt. But ${sysconfdir} is an absolute dir and that let ${D} be discarded. The following is the help on function os.path.join(a, *p): Join two or more pathname