[OE-core] [PATCH] toasterconf.json: Set default distro to nodistro

2015-10-24 Thread Khem Raj
This makes it self-sufficient with OE-Core Generate ext4 instead of ext3, most of Qemu targets in oe-core now use ext4 Signed-off-by: Khem Raj --- meta/conf/toasterconf.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/conf/toasterconf.json b/meta/conf/toasterconf

Re: [OE-core] [PATCH] Perl: Use CC version not $Config(gccversion)

2015-10-24 Thread Jeremy Puhlman
On Oct 24, 2015 5:15 AM, "Jens Rehsack" wrote: > > > > Am 23.10.2015 um 19:18 schrieb Jeremy Puhlman : > > > > Get version data from querying $CC rather then > > $Config(gccversion) which comes from running version of > > perl. Since perl-native is not likely compiled by gcc > > 5 at this point, i

Re: [OE-core] How to handle mesa customization in BSP layers

2015-10-24 Thread Trevor Woerner
On 10/20/15 05:37, Koen Kooi wrote: >> Op 20 okt. 2015, om 11:32 heeft Nicolas Dechesne >> het volgende geschreven: >> >> >> The issue is that mesa is arch specific, not machine specific. So if >> you start mixing machines from the same arch, we are getting >> unexpected/wrong rebuilds. > In this

Re: [OE-core] [PATCH] Perl: Use CC version not $Config(gccversion)

2015-10-24 Thread Jens Rehsack
> Am 23.10.2015 um 19:18 schrieb Jeremy Puhlman : > > Get version data from querying $CC rather then > $Config(gccversion) which comes from running version of > perl. Since perl-native is not likely compiled by gcc > 5 at this point, it will never trigger the required > fixes for gcc 5. > > [YOC

[OE-core] State of bitbake world, Failed tasks 2015-10-22

2015-10-24 Thread Martin Jansa
It's starting to look good for jethro branch, I've removed some pending changes from master-next (luajit, llvm upgrade, aalib), luajit (sysdig) fix was sent already so this will probably go in with next batch, then I'll create jethro branch. = Tested changes (not included in master yet) - bitba

[OE-core] [PATCHv2 1/1] useradd-staticids.bbclass: Do not require trailing colons

2015-10-24 Thread Peter Kjellerstedt
Before, the users and groups specified in the passwd file and the groups file had to have trailing colons to make sure there were enough elements in the definitions, or bitbake would throw a Python exception. After this change one can omit the trailing colons, which especially simplifies passwd fi

[OE-core] [PATCHv2 0/1] Fix for useradd-staticids.bbclass

2015-10-24 Thread Peter Kjellerstedt
This change corrects useradd-staticids.bbclass to allow user and group files without trailing colons. Previously one had to write: foo::123 in the group file to define the static UID for a user or one would receive a Python exception. With this change applied one can instead write: foo::123

Re: [OE-core] [PATCH 1/1] useradd-staticids.bbclass: Do not require trailing colons

2015-10-24 Thread Peter Kjellerstedt
I changed it to: def list_extend(iterable, length, obj = None): """Ensure that iterable is the specified length by extending with obj and return it as a list""" return list(itertools.islice(itertools.chain(iterable, itertools.repeat(obj)), length)) because I got Exce