Re: [OE-core] [PATCH] musl: Upgrade to tip of tree

2016-02-12 Thread Khem Raj
On Fri, Feb 12, 2016 at 5:04 PM, Andre McCurdy wrote: > Includes misc minor bugs fixes: > > 0ed932f do not define static_assert macro for pre-C11 compilers > 692b16d add declarations for utmpname/utmpxname to appropriate headers > 500c688 fix return value for fread/fwrite when size argument

[OE-core] [PATCH] libgcrypt: update 1.6.4 -> 1.6.5

2016-02-12 Thread Andre McCurdy
Noteworthy changes in version 1.6.5 (2016-02-09) [C20/A0/R5] * Mitigate side-channel attack on ECDH with Weierstrass curves [CVE-2015-7511]. See http://www.cs.tau.ac.IL/~tromer/ecdh/ for details. * Fix build problem on Solaris. Signed-off

Re: [OE-core] [PATCH] nss: define RPATH variable

2016-02-12 Thread Christopher Larson
On Fri, Feb 12, 2016 at 12:06 PM Markus Lehtonen < markus.lehto...@linux.intel.com> wrote: > Otherwise the nss libs do not get any RPATH/RUNPATH. Consequently, the > .so dependencies of nss libs are always searched from the base lib > directories of the host (i.e. /lib/ and /usr/lib). This causes

Re: [OE-core] [PATCH] packagegroup-core-tools-profile: Enable valgrind on ARM

2016-02-12 Thread Andre McCurdy
On Fri, Feb 12, 2016 at 3:26 AM, Felipe F. Tonello wrote: > fixes af1ddab5c('task-core-tools-profile: fix valgrind for arm and systemtap > for') $ cd openembedded-core $ git show af1ddab5c fatal: ambiguous argument 'af1ddab5c': unknown revision or path not in the working tree. > > Signed-off-b

[OE-core] [PATCH] musl: Upgrade to tip of tree

2016-02-12 Thread Andre McCurdy
Includes misc minor bugs fixes: 0ed932f do not define static_assert macro for pre-C11 compilers 692b16d add declarations for utmpname/utmpxname to appropriate headers 500c688 fix return value for fread/fwrite when size argument is 0 416d1c7 fix line-buffered flush omission for odd usage of

Re: [OE-core] [jethro][fido] libbsd: Secuirty fix CVE-2016-2090

2016-02-12 Thread Joshua G Lock
On Thu, 2016-02-11 at 16:20 -0800, Armin Kuster wrote: > From: Armin Kuster > > CVE-2016-2090 Heap buffer overflow in fgetwln function of libbsd > > affects libbsd <= 0.8.1 and this not needed in master which has 0.8.2. I plan to take this in fido once it's merged to jethro. Regards, Joshua

Re: [OE-core] [fido][PATCH] libpcre: Security fixes and package update.

2016-02-12 Thread Joshua G Lock
On Thu, 2016-02-11 at 18:41 -0800, Armin Kuster wrote: > From: Armin Kuster > > this is related to [Yocto # 9008] Thanks, queued in joshuagl/fido next with the addition of the below comment to the commit message: "Jethro and master don't require this patch as they have newer libpcre which conta

Re: [OE-core] [PATCH] gstreamer1.0-meta-base: Don't use COMBINED_FEATURES

2016-02-12 Thread Andre McCurdy
On Fri, Feb 12, 2016 at 3:54 AM, Richard Purdie wrote: > http://git.openembedded.org/openembedded-core/commit/?id=948165dce7475b815a344fd3c3d58165e6865d48 > makes gstreamer1.0-plugins-base-alsa depend on COMBINED_FEATURES. > > This is an allarch recipe so this only works if all your machines > hav

Re: [OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Joshua G Lock
On Fri, 2016-02-12 at 13:10 +, Richard Purdie wrote: > On Fri, 2016-02-12 at 12:28 +, Joshua G Lock wrote: > > On Fri, 2016-02-12 at 14:15 +0200, Dmitry Rozhkov wrote: > > > man 5 os-release states that VERSION_ID is > > > > > > " > > > a lower-case string (mostly numeric, no spaces or oth

Re: [OE-core] [PATCH] scripts/runqemu-internal: Work around qemux86 PAT bugs in linux 4.4.1

2016-02-12 Thread Bruce Ashfield
On 2016-02-12 1:00 PM, Richard Purdie wrote: Since the upgrade of qemux86 to 4.4.1 we're seeing PAT issues when starting the X server. We need to fix the problem but the failing sanity tests mask out other issues and we need a workaround. I was out of the day and didn't notice if any logs were

Re: [OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Joshua G Lock
On Fri, 2016-02-12 at 18:14 +0100, Maciej Borzecki wrote: > > Dnia 12 luty 2016 o 13:15 Dmitry Rozhkov > > napisał(a): > >  > > This becomes crucial when ClearLinux's software > > update mechanism is integrated into builds, because > > its client side ignores VERSION_ID's value if it > > doesn't c

Re: [OE-core] [PATCH 1/2] rng-tools: Import recipe from meta-openembedded

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 18:55, Saul Wold wrote: > +# As the recipe doesn't inherit systemd.bbclass, we need to set this > variable > +# manually to avoid unnecessary postinst/preinst generated. > +python () { > +if not bb.utils.contains('DISTRO_FEATURES', 'sysvinit', True, False, > d): > +

[OE-core] [PATCH] nss: define RPATH variable

2016-02-12 Thread Markus Lehtonen
Otherwise the nss libs do not get any RPATH/RUNPATH. Consequently, the .so dependencies of nss libs are always searched from the base lib directories of the host (i.e. /lib/ and /usr/lib). This causes problems with nss-native where the .so's should be searched from the base lib directories of the s

[OE-core] [PATCH 2/2] qemu.inc: Add rng-tools to qemu images

2016-02-12 Thread Saul Wold
This patch adds rng-tools to MACHINE_EXTRA_RRECOMMENDS so that can be used to provide the additional entropy to prevent hangs in getrandom() for qemu images [YOCTO #8681] [YOCTO #8816] Signed-off-by: Saul Wold --- meta/conf/machine/include/qemu.inc | 2 ++ 1 file changed, 2 insertions(+) diff

[OE-core] [PATCH 1/2] rng-tools: Import recipe from meta-openembedded

2016-02-12 Thread Saul Wold
Adding this recipe to oe-core will allow it to be used by qemu to provide a way to generate additional entropy needed to fix hangs with getrandom(). Additional kernel config options have already been added to the default qemu kernel configs. [YOCTO #8681] [YOCOT #8816] Signed-off-by: Saul Wold

[OE-core] [PATCH] scripts/runqemu-internal: Work around qemux86 PAT bugs in linux 4.4.1

2016-02-12 Thread Richard Purdie
Since the upgrade of qemux86 to 4.4.1 we're seeing PAT issues when starting the X server. We need to fix the problem but the failing sanity tests mask out other issues and we need a workaround. Merge this for now until we can figure out the full issue. This is better than changing the kernel defco

Re: [OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Maciej Borzecki
> Dnia 12 luty 2016 o 13:15 Dmitry Rozhkov > napisał(a): > > > man 5 os-release states that VERSION_ID is > > " > a lower-case string (mostly numeric, no spaces or other > characters outside of 0-9, a-z, ".", "_" and "-") > identifying the operating system version > " > > This becomes crucial when

[OE-core] Yocto Project Status WW07

2016-02-12 Thread Jolley, Stephen K
Current Dev Position: YP 2.1 M3 Next Deadline: YP 2.1 M2 Target release date is February 12, 2016 (Will slip a few weeks.) SWAT team rotation: Juro -> Anibal https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: * We merged a change to python function variable

Re: [OE-core] [PATCH 0/3] linux-yocto: -stable and BSP updates

2016-02-12 Thread Bruce Ashfield
On Fri, Feb 12, 2016 at 6:28 AM, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Fri, 2016-02-12 at 13:37 +0200, alexander.kana...@linux.intel.com > wrote: > > > Here are the pending updates to the 4.1 and 4.4 kerne to integrate > > > -stable > > > updates > > > and to backport th

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Gary Thomas
On 2016-02-12 12:15, Burton, Ross wrote: On 12 February 2016 at 11:11, Gary Thomas mailto:g...@mlbassoc.com>> wrote: # opkg install mplayer2-dbg Installing mplayer2-dbg (2.0+gitr0+2c378c71a4-r13.1) on root. mplayer2-dbg: unsatisfied recommendation for libavformat-dbg mplayer2-db

Re: [OE-core] [PATCH] oeqa/selftest/prservice: Added new tc: check pr-server stop msg

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 09:35, Francisco Pedraza < francisco.j.pedraza.gonza...@intel.com> wrote: > +runCmd('bitbake-prserv --host localhost --port 8585 > --loglevel=DEBUG --start') > +ret = runCmd('bitbake-prserv --host localhost --port 8585 > --loglevel=DEBUG --stop') > Just in c

Re: [OE-core] [PATCH 1/1] tune-cortexa9.inc: add vfpv3 tunes

2016-02-12 Thread Martin Jansa
On Fri, Feb 12, 2016 at 05:05:12PM +0200, Ioan-Adrian Ratiu wrote: > On Fri, 12 Feb 2016 15:25:01 +0100 > Martin Jansa wrote: > > > On Fri, Feb 12, 2016 at 03:58:57PM +0200, Ioan-Adrian Ratiu wrote: > > > Hello > > > > > > On Thu, 11 Feb 2016 17:41:54 +0100 > > > Martin Jansa wrote: > > > >

Re: [OE-core] [PATCH 1/1] tune-cortexa9.inc: add vfpv3 tunes

2016-02-12 Thread Ioan-Adrian Ratiu
On Fri, 12 Feb 2016 15:25:01 +0100 Martin Jansa wrote: > On Fri, Feb 12, 2016 at 03:58:57PM +0200, Ioan-Adrian Ratiu wrote: > > Hello > > > > On Thu, 11 Feb 2016 17:41:54 +0100 > > Martin Jansa wrote: > > > > > On Thu, Feb 11, 2016 at 05:18:56PM +0200, Ioan-Adrian Ratiu wrote: > > > > From

[OE-core] [PATCH] lib/oe/terminal: set workdir for konsole terminal

2016-02-12 Thread Pascal Bach
It seems that if the --workdir option is not set konsole does open in the users home directory. By setting --workdir . konsole opens in the recipes work directory. This is the same behavior as observed for other consoles. (Tested with Konsole 2.14.2 on Debian Jessie). Signed-off-by: Pascal Bach

Re: [OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 12:15, Dmitry Rozhkov wrote: > " > a lower-case string (mostly numeric, no spaces or other > characters outside of 0-9, a-z, ".", "_" and "-") > identifying the operating system version > " > To quote from the paragraph above: "Variable assignment values should be enclose

Re: [OE-core] [PATCH 1/1] tune-cortexa9.inc: add vfpv3 tunes

2016-02-12 Thread Martin Jansa
On Fri, Feb 12, 2016 at 03:58:57PM +0200, Ioan-Adrian Ratiu wrote: > Hello > > On Thu, 11 Feb 2016 17:41:54 +0100 > Martin Jansa wrote: > > > On Thu, Feb 11, 2016 at 05:18:56PM +0200, Ioan-Adrian Ratiu wrote: > > > From: Richard Tollerton > > > > > > Define tunnings to enable 32 register VFPv3

[OE-core] [PATCH] maintainers.inc: include libjpeg-turbo and mmc-utils

2016-02-12 Thread Maxin B. John
Include libjpeg-turbo and mmc-utils packages in the list. Signed-off-by: Maxin B. John --- meta-yocto/conf/distro/include/maintainers.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-yocto/conf/distro/include/maintainers.inc b/meta-yocto/conf/distro/include/maintai

Re: [OE-core] [PATCH 1/1] tune-cortexa9.inc: add vfpv3 tunes

2016-02-12 Thread Ioan-Adrian Ratiu
On Fri, 12 Feb 2016 15:58:57 +0200 Ioan-Adrian Ratiu wrote: > Hello > > On Thu, 11 Feb 2016 17:41:54 +0100 > Martin Jansa wrote: > > > On Thu, Feb 11, 2016 at 05:18:56PM +0200, Ioan-Adrian Ratiu wrote: > > > From: Richard Tollerton > > > > > > Define tunnings to enable 32 register VFPv3 fo

[OE-core] [PATCH] mmc-utils: upgrade to latest git version

2016-02-12 Thread Maxin B. John
Removed 0001-mmc.h-don-t-include-asm-generic-int-ll64.h.patch Instead of that patch, define __SANE_USERSPACE_TYPES__ to avoid compile errors due to conflicting types for '__u64' in MIPS64/PPC64 Signed-off-by: Maxin B. John --- ...mc.h-don-t-include-asm-generic-int-ll64.h.patch | 28

Re: [OE-core] [PATCH 1/1] tune-cortexa9.inc: add vfpv3 tunes

2016-02-12 Thread Ioan-Adrian Ratiu
Hello On Thu, 11 Feb 2016 17:41:54 +0100 Martin Jansa wrote: > On Thu, Feb 11, 2016 at 05:18:56PM +0200, Ioan-Adrian Ratiu wrote: > > From: Richard Tollerton > > > > Define tunnings to enable 32 register VFPv3 for cortexa9 processor cores > > Can you execute the test from: > http://git.open

Re: [OE-core] Parsing exception with latest oe-core

2016-02-12 Thread Richard Purdie
On Fri, 2016-02-12 at 14:25 +0100, Martin Jansa wrote: > On Fri, Feb 12, 2016 at 02:22:22PM +0100, Martin Jansa wrote: > > On Fri, Feb 12, 2016 at 11:31:10AM +, Barros Pena, Belen wrote: > > > > > > > > > On 12/02/2016 10:52, " > > > openembedded-core-boun...@lists.openembedded.org on > > > b

Re: [OE-core] Parsing exception with latest oe-core

2016-02-12 Thread Martin Jansa
On Fri, Feb 12, 2016 at 02:22:22PM +0100, Martin Jansa wrote: > On Fri, Feb 12, 2016 at 11:31:10AM +, Barros Pena, Belen wrote: > > > > > > On 12/02/2016 10:52, "openembedded-core-boun...@lists.openembedded.org on > > behalf of Martin Jansa" > on behalf of martin.ja...@gmail.com> wrote: > >

Re: [OE-core] Parsing exception with latest oe-core

2016-02-12 Thread Martin Jansa
On Fri, Feb 12, 2016 at 11:31:10AM +, Barros Pena, Belen wrote: > > > On 12/02/2016 10:52, "openembedded-core-boun...@lists.openembedded.org on > behalf of Martin Jansa" on behalf of martin.ja...@gmail.com> wrote: > > >Hi, > > > > > >is anyone else seeing this unhelpful fatal exception? >

Re: [OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Richard Purdie
On Fri, 2016-02-12 at 12:28 +, Joshua G Lock wrote: > On Fri, 2016-02-12 at 14:15 +0200, Dmitry Rozhkov wrote: > > man 5 os-release states that VERSION_ID is > > > > " > > a lower-case string (mostly numeric, no spaces or other > > characters outside of 0-9, a-z, ".", "_" and "-") > > identify

Re: [OE-core] [jethro][fido] libbsd: Secuirty fix CVE-2016-2090

2016-02-12 Thread Martin Jansa
On Thu, Feb 11, 2016 at 04:20:34PM -0800, Armin Kuster wrote: > From: Armin Kuster > > CVE-2016-2090 Heap buffer overflow in fgetwln function of libbsd typo in subject > > affects libbsd <= 0.8.1 > > Signed-off-by: Armin Kuster > --- > .../libbsd/files/CVE-2016-2090.patch | 50

Re: [OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Olof Johansson
On 16-02-12 14:15 +0200, Dmitry Rozhkov wrote: > man 5 os-release states that VERSION_ID is > > " > a lower-case string (mostly numeric, no spaces or other > characters outside of 0-9, a-z, ".", "_" and "-") > identifying the operating system version > " > > This becomes crucial when ClearLinux's

Re: [OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Joshua G Lock
On Fri, 2016-02-12 at 14:15 +0200, Dmitry Rozhkov wrote: > man 5 os-release states that VERSION_ID is > > " > a lower-case string (mostly numeric, no spaces or other > characters outside of 0-9, a-z, ".", "_" and "-") > identifying the operating system version > " > > This becomes crucial when Cl

[OE-core] [PATCH] os-release: remove double-quotes around VERSION_ID value

2016-02-12 Thread Dmitry Rozhkov
man 5 os-release states that VERSION_ID is " a lower-case string (mostly numeric, no spaces or other characters outside of 0-9, a-z, ".", "_" and "-") identifying the operating system version " This becomes crucial when ClearLinux's software update mechanism is integrated into builds, because its

[OE-core] [PATCH] gstreamer1.0-meta-base: Don't use COMBINED_FEATURES

2016-02-12 Thread Richard Purdie
http://git.openembedded.org/openembedded-core/commit/?id=948165dce7475b815a344fd3c3d58165e6865d48 makes gstreamer1.0-plugins-base-alsa depend on COMBINED_FEATURES. This is an allarch recipe so this only works if all your machines have the same MACHINE_FEATURES and not all do. Instead make this an

[OE-core] [PATCH] buildhistory: Fix regex to handle versions without spaces

2016-02-12 Thread Richard Purdie
Its valid to have dependencies like XXX (=2.1) without spaces, as injected by debian.bbclass. The code was breaking these into separate components and destroying them so improve the regex to handle them. Signed-off-by: Richard Purdie diff --git a/meta/classes/buildhistory.bbclass b/meta/classes

[OE-core] [PATCH] autotools: Fix interaction with bitbake -b

2016-02-12 Thread Richard Purdie
If you run bitbake -b on something using autotools with dependencies on m4 files, it currently fails as the TASKDEPDATA is incomplete for bitbake -b and this means the relevant macros aren't found. Work around this by adding *all* m4 files for the -b case (and show a warning). [YOCTO #8890] Sig

[OE-core] [PATCH] debian: Fix superfluous setting for RPROVIDES

2016-02-12 Thread Richard Purdie
PKG_ can be set to something like ${MLPREFIX} and the lack of expansion here means the case where MLPREFIX is empty leads to a bogus RPROVIDES. Use expansion of the variable to avoid this. Signed-off-by: Richard Purdie diff --git a/meta/classes/debian.bbclass b/meta/classes/debian.bbclass inde

[OE-core] [PATCH] autotools: Correct dependency search logic error

2016-02-12 Thread Richard Purdie
We go to the effort of finding the value of start, we should then use it rather than relying on the value of dep being preserved from the previous loop. Took me far too long to notice this issue when changing the code. Also drop an unused variable. Signed-off-by: Richard Purdie diff --git a/met

Re: [OE-core] [PATCH] alsa-lib: 1.0.29 -> 1.1.0

2016-02-12 Thread Tanu Kaskinen
On Fri, 2016-02-12 at 14:11 +0200, alexander.kana...@linux.intel.com wrote: > > > > Changelog: http://alsa-project.org/main/index.php/Changes_v1.0.29_v > > > > 1.1.0 > > > > > > What about all the other alsa-* recipes? > > > > They are coming. > > > The window for version updates is closing at

Re: [OE-core] Parsing exception with latest oe-core

2016-02-12 Thread Barros Pena, Belen
On 12/02/2016 10:52, "openembedded-core-boun...@lists.openembedded.org on behalf of Martin Jansa" wrote: >Hi, > > >is anyone else seeing this unhelpful fatal exception? FWIW, I am http://piratepad.net/2E3lnayxi8 Cheers Belén > > >ERROR: Failure expanding variable >__anon_648__home_jenkins

Re: [OE-core] [PATCH 0/3] linux-yocto: -stable and BSP updates

2016-02-12 Thread Richard Purdie
On Fri, 2016-02-12 at 13:37 +0200, alexander.kana...@linux.intel.com wrote: > > Here are the pending updates to the 4.1 and 4.4 kerne to integrate > > -stable > > updates > > and to backport the mainline galileo support patches. > > Bruce Ashfield (3): > > linux-yocto/4.4: update to v4.4.1 > >

[OE-core] [PATCH] packagegroup-core-tools-profile: Enable valgrind on ARM

2016-02-12 Thread Felipe F. Tonello
fixes af1ddab5c('task-core-tools-profile: fix valgrind for arm and systemtap for') Signed-off-by: Felipe F. Tonello --- meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-p

Re: [OE-core] [PATCH] alsa-lib: 1.0.29 -> 1.1.0

2016-02-12 Thread alexander . kanavin
>> > Changelog: http://alsa-project.org/main/index.php/Changes_v1.0.29_v >> > 1.1.0 >> >> What about all the other alsa-* recipes? > > They are coming. The window for version updates is closing at the end of February, so you should hurry up. Also, pulseaudio is now two major releases behind. Ale

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 11:11, Gary Thomas wrote: > # opkg install mplayer2-dbg > Installing mplayer2-dbg (2.0+gitr0+2c378c71a4-r13.1) on root. > mplayer2-dbg: unsatisfied recommendation for libavformat-dbg > mplayer2-dbg: unsatisfied recommendation for libavutil-dbg > mplayer2-dbg: unsatisfied re

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Gary Thomas
On 2016-02-12 12:03, Gary Thomas wrote: On 2016-02-12 11:49, Burton, Ross wrote: On 12 February 2016 at 03:58, Gary Thomas mailto:g...@mlbassoc.com>> wrote: Improve the packaging of the libraries built by this recipe. These are created using special code in the recipe and the debug (-

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Gary Thomas
On 2016-02-12 11:49, Burton, Ross wrote: On 12 February 2016 at 03:58, Gary Thomas mailto:g...@mlbassoc.com>> wrote: Improve the packaging of the libraries built by this recipe. These are created using special code in the recipe and the debug (-dbg) packages were not being created.

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 10:40, Gary Thomas wrote: > Policy notwithstanding, there are a lot of lib*-dbg* packages generated > by non-lib* recipes, so my solution doesn't seem so out of place to me. > Since da5ec06814e105451cca11cce76b5c5231110524 debug packages are populated automagically into a

Re: [OE-core] [PATCH 0/3] linux-yocto: -stable and BSP updates

2016-02-12 Thread alexander . kanavin
> Here are the pending updates to the 4.1 and 4.4 kerne to integrate -stable > updates > and to backport the mainline galileo support patches. > Bruce Ashfield (3): > linux-yocto/4.4: update to v4.4.1 > linux-yocto/4.1: update to v4.1.17 > linux-yocto/4.1: galileo backports and support Shoul

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 03:58, Gary Thomas wrote: > Improve the packaging of the libraries built by this recipe. These > are created using special code in the recipe and the debug (-dbg) > packages were not being created. Adding these packages allow the > libraries in question to be debugged usi

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Gary Thomas
On 2016-02-12 09:37, Gary Thomas wrote: On 2016-02-12 09:32, Richard Purdie wrote: On Fri, 2016-02-12 at 09:29 +0100, Gary Thomas wrote: On 2016-02-12 09:17, Richard Purdie wrote: On Fri, 2016-02-12 at 04:58 +0100, Gary Thomas wrote: Improve the packaging of the libraries built by this recipe

[OE-core] [PATCH 1/2] distutils: Consider S != B case

2016-02-12 Thread Khem Raj
out of tree builds can break the assumption about setup.py being in the current directory, seen especially with devtool when using externalsrc many python modules cant build since it cant find setup.py in devtool workspace Signed-off-by: Khem Raj --- meta/classes/distutils.bbclass | 24

[OE-core] [PATCH 2/2] ltp: Upgrade to 20160126 and fix build on musl

2016-02-12 Thread Khem Raj
pass -D__SANE_USERSPACE_TYPES__ to CFLAGS MIPS64/PPC64 uses long long for u64 in the kernel, but powerpc's asm/types.h prevents 64-bit userland from seeing this definition, instead defaulting to u64 == long in userspace. Define __SANE_USERSPACE_TYPES__ to get int-ll64.h included. Signed-off-by: K

[OE-core] [PATCH V2 0/2] ltp upgrade and out of tree builds with distutils

2016-02-12 Thread Khem Raj
changes since v1: - ltp build on mips64 is fixed - use [dirs] to denote current dirs The following changes since commit 2ff6c2ca2e22eaef37ccb4025bc0b78c42695eed: linux-yocto/4.1: galileo backports and support (2016-02-11 22:56:43 +) are available in the git repository at: git://git.open

[OE-core] Parsing exception with latest oe-core

2016-02-12 Thread Martin Jansa
Hi, is anyone else seeing this unhelpful fatal exception? ERROR: Failure expanding variable __anon_648__home_jenkins_oe_world_shr_core_openembedded_core_meta_classes_base_bbclass, expression was def __anon_648__home_jenkins_oe_world_shr_core_openembedded_core_meta_classes_base_bbclass(d): imp

[OE-core] [PATCH] oeqa/selftest/prservice: Added new tc: check pr-server stop msg

2016-02-12 Thread Francisco Pedraza
When stopping the prserver using localhost as host, it tries to find a file '/tmp/PRServer_127.0.0.1_8585.pid' which is not present on the system. fix for [YOCTO #8258] Signed-off-by: Francisco Pedraza --- meta/lib/oeqa/selftest/prservice.py | 12 1 file changed, 12 insertions(+)

[OE-core] [jethro][master][PATCH 2/2] initscripts: start urandom after populate-volatiles

2016-02-12 Thread Jens Rehsack
In case of read-only rootfs, populoate-volatiles might be used to create some links (or bind-mounts) required for having a writable /var/lib. Signed-off-by: Jens Rehsack --- meta/recipes-core/initscripts/initscripts_1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/

[OE-core] [PATCH 1/2] initscripts: populate-volatiles.sh: add mount-bind feature

2016-02-12 Thread Jens Rehsack
Add ability to run "mount --bind" to populate-volatiles. Since several programs use realpath to determine several full qualified file names, there is no symlink to be resolved. So when speccing /run/lock - that's the location - not /var/run/lock because of the program is smarter than the operator/

[OE-core] [jethro][PATCH v2] glibc: add patch from release/2.22/master fix memory corruption

2016-02-12 Thread Jens Rehsack
Since default fstab contains empty lines, this might be a reasonable patch long running services using getmntent. This patch is backported from: https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=3007f797a1a596e954f44879a5a7267966186ba4 Signed-off-by: Jens Rehsack --- ...ntent-fix-me

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Gary Thomas
On 2016-02-12 09:17, Richard Purdie wrote: On Fri, 2016-02-12 at 04:58 +0100, Gary Thomas wrote: Improve the packaging of the libraries built by this recipe. These are created using special code in the recipe and the debug (-dbg) packages were not being created. Adding these packages allow the

[OE-core] [PATCH v2] buildhistory.bbclass: remove out-dated information on request

2016-02-12 Thread Patrick Ohly
buildhistory.bbclass by design is incremental: each build adds or updates information. Information is never removed. Sometimes it can be useful to reduce the information only to those recipes that were build during a specific bitbake invocation, for example when the invocation does a full world bu

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Gary Thomas
On 2016-02-12 09:32, Richard Purdie wrote: On Fri, 2016-02-12 at 09:29 +0100, Gary Thomas wrote: On 2016-02-12 09:17, Richard Purdie wrote: On Fri, 2016-02-12 at 04:58 +0100, Gary Thomas wrote: Improve the packaging of the libraries built by this recipe. These are created using special code

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Richard Purdie
On Fri, 2016-02-12 at 09:29 +0100, Gary Thomas wrote: > On 2016-02-12 09:17, Richard Purdie wrote: > > On Fri, 2016-02-12 at 04:58 +0100, Gary Thomas wrote: > > > Improve the packaging of the libraries built by this recipe. > > > These > > > are created using special code in the recipe and the de

Re: [OE-core] [PATCH] ffmpeg: Add -dbg packages for all libraries

2016-02-12 Thread Richard Purdie
On Fri, 2016-02-12 at 04:58 +0100, Gary Thomas wrote: > Improve the packaging of the libraries built by this recipe. These > are created using special code in the recipe and the debug (-dbg) > packages were not being created. Adding these packages allow the > libraries in question to be debugged