[OE-core] [PATCH v2 0/1] More fixes for a distro with a merged /usr

2016-01-07 Thread Ian Ray
When building a distro with a merged /usr[1] the linux-firmware recipe causes /lib to be re-created because of hard-coded paths. Replace /lib with nonarch_base_libdir, as discussed in the email thread for the first version of this patch. Tested by building an image and verifying that rootfs conta

Re: [OE-core] [PATCH 2/3] run-postinsts: can't be allarch

2016-01-07 Thread Robert Yang
On 01/07/2016 06:57 PM, Richard Purdie wrote: On Wed, 2016-01-06 at 23:45 -0800, Robert Yang wrote: The dependencies chain: run-postinsts -> update-rc.d.bbclass -> initscripts -> update -alternatives. The update-alternatives is provided by opkg-utils which is not allarch. This caused a probl

[OE-core] [PATCH 3/4] lib/oe/rootfs: Use list_pkgs() instead of list()

2016-01-07 Thread mariano . lopez
From: Mariano Lopez This patch changes the use list_pkgs() instead of list() from class RpmPkgsList. The change is in two functions, image_list_installed_packages from rootfs.py and sdk_list_installed_packages from sdk.py. With this change the functions calling the functions listed above, must f

[OE-core] [PATCH 4/4] lib/oe/package_manager.py: Remove list() from PkgsList class

2016-01-07 Thread mariano . lopez
From: Mariano Lopez Now that the method list() is not used anymore, remove it. [YOCTO #7427] Signed-off-by: Mariano Lopez --- meta/lib/oe/package_manager.py | 153 - 1 file changed, 153 deletions(-) diff --git a/meta/lib/oe/package_manager.py b/meta/li

[OE-core] [PATCH 0/4] Clean PkgsList return data implementation.

2016-01-07 Thread mariano . lopez
From: Mariano Lopez Currently the when calling the list() from the classes that inherit from PKgsList, it must pass the format required and it will return a formated string listing all the packages installed. Retruning such string is not the best data structure to manipulate in the callers. This

[OE-core] [PATCH 1/4] lib/oe/package_manager: Add list_pkgs() to PkgsList class

2016-01-07 Thread mariano . lopez
From: Mariano Lopez Currently the class PkgList returns a formated string of the installed packages. It would be more clean to pass a standard data structure to the callers instead to format the output inside PkgsList class. This patch adds list_pkgs() method to PkgsList class to get the all the

[OE-core] [PATCH 2/4] lib/oe/utils: Add function format_pkg_list()

2016-01-07 Thread mariano . lopez
From: Mariano Lopez The class PkgsList returns a dictionary with all the installed packages, because the data structure is a dictionary there is needed to format the data in order to write to a file. The function format_pkg_list returns a formated sting with all packages installed. The output wi

Re: [OE-core] [PATCH] jpeg: To enable non-JPEG file formats for djpeg/cjpeg command.

2016-01-07 Thread Lei, Maohui
Hi Ross & Robert > oe-core is about to move to libjpeg-turbo (see ross/mut and the recent > patches), so this will need to be retested and rebased if required. OK. I got it. Thanks . Hi Robert Can this patch be merged into YP 2.0 branch? Best regards lei From: Burton, Ross [mailto:ros

Re: [OE-core] [dizzy][PATCH] grub2: Fix CVE-2015-8370

2016-01-07 Thread akuster808
Awais, hand applied. merged and pushed to git.yoctoproject.org/poky-contrib.git akuster/dizzy-next thanks, Armin On 01/07/2016 01:56 AM, Belal, Awais wrote: > Hi Armin, > > With dizzy-next from your fork > > awais@alpha:~/yocto/build-dizzy-akuster$ bitbake -c patch grub > Parsing recipes: 1

Re: [OE-core] [PATCH v2 3/4] libav.inc: duplicate armv7a over-rides for armv7ve

2016-01-07 Thread Andre McCurdy
On Thu, Jan 7, 2016 at 3:40 PM, Phil Blundell wrote: > On Thu, 2016-01-07 at 14:29 -0800, Andre McCurdy wrote: >> FULL_OPTIMIZATION_armv7a = "-fexpensive-optimizations -fomit-frame-pointer >> -O4 -ffast-math" >> +FULL_OPTIMIZATION_armv7ve = "-fexpensive-optimizations -fomit-frame-pointer >> -O4

Re: [OE-core] [PATCH] oe-core:package_manager extract target arch from TARGET_SYS and add it into package_archs

2016-01-07 Thread fupan
On 01/07/2016 10:23 PM, Burton, Ross wrote: On 24 December 2015 at 05:51, wrote: +            #add the compatible arch extracted from TARGET_SYS.

Re: [OE-core] [PATCH v2 2/4] gcc-configure-common.inc: duplicate armv7a over-ride for armv7ve

2016-01-07 Thread Andre McCurdy
On Thu, Jan 7, 2016 at 3:34 PM, Phil Blundell wrote: > On Thu, 2016-01-07 at 14:29 -0800, Andre McCurdy wrote: >> EXTRA_OECONF_append_armv7a = " --with-arch=armv7-a" >> EXTRA_OECONF_append_armv7m = " --with-arch=armv7-m" >> EXTRA_OECONF_append_armv7r = " --with-arch=armv7-r" >> +EXTRA_OECONF_ap

[OE-core] [PATCH][V2][Jethro, fido 10/10] libxml2: security fix CVE-2015-5312

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 1 + ...-2015-5312-Another-entity-expansion-issue.patch | 39 ++ 2 files changed, 40 insertions(+) create mode 100644 meta/recipes-core/libxml/libxml2/0001-CVE-2015-531

[OE-core] [PATCH][V2][Jethro, fido 09/10] libxml2: security fix CVE-2015-8242

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 1 + ...42-Buffer-overead-with-HTML-parser-in-pus.patch | 49 ++ 2 files changed, 50 insertions(+) create mode 100644 meta/recipes-core/libxml/libxml2/0001-CVE-2015-824

[OE-core] [PATCH][V2][Jethro, fido 07/10] libxml2: security fix CVE-2015-7499

2016-01-07 Thread Armin Kuster
From: Armin Kuster includes: CVE-2015-7499-1 CVE-2015-7499-2 Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 2 + ...99-1-Add-xmlHaltParser-to-stop-the-parser.patch | 88 ++ ...VE-2015-7499-2-Detect-incoherency-on-GROW.patch | 43 ++

[OE-core] [PATCH][V2][Jethro, fido 03/10] libxml2: security fix CVE-2015-7942

2016-01-07 Thread Armin Kuster
From: Armin Kuster includes: CVE-2015-7942 CVE-2015-7942-2 Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 2 ++ ...ror-in-previous-Conditional-section-patch.patch | 35 +++ ...iation-of-overflow-in-Conditional-section.patch | 39 ++

[OE-core] [PATCH][V2][Jethro, fido 05/10] libxml2: security fix CVE-2015-7498

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 1 + ...ssing-entities-after-encoding-conversion-.patch | 89 ++ 2 files changed, 90 insertions(+) create mode 100644 meta/recipes-core/libxml/libxml2/CVE-2015-7498-Avo

[OE-core] [PATCH][V2][Jethro, fido 02/10] libxml2: security fix CVE-2015-8317

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 1 + ...ng-early-on-if-encoding-conversion-failed.patch | 42 ++ 2 files changed, 43 insertions(+) create mode 100644 meta/recipes-core/libxml/libxml2/CVE-2015-8317-Fai

[OE-core] [PATCH][V2][Jethro, fido 04/10] libxml2: security fix CVE-2015-8035

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 1 + ...2015-8035-Fix-XZ-compression-support-loop.patch | 38 ++ 2 files changed, 39 insertions(+) create mode 100644 meta/recipes-core/libxml/libxml2/0001-CVE-2015-803

[OE-core] [PATCH][V2][Jethro, fido 06/10] libxml2: security fix CVE-2015-7497

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 1 + ...97-Avoid-an-heap-buffer-overflow-in-xmlDi.patch | 40 ++ 2 files changed, 41 insertions(+) create mode 100644 meta/recipes-core/libxml/libxml2/0001-CVE-2015-749

[OE-core] [PATCH][V2][Jethro, fido 01/10] libxml2: security fix CVE-2015-7941

2016-01-07 Thread Armin Kuster
From: Armin Kuster includes: CVE-2015-7941-1 CVE-2015-7941-2 Signed-off-by: Armin Kuster --- meta/recipes-core/libxml/libxml2.inc | 2 + ...top-parsing-on-entities-boundaries-errors.patch | 39 +++ ...leanup-conditional-section-error-handling.patch | 56 +

Re: [OE-core] [

2016-01-07 Thread Otavio Salvador
On Thu, Jan 7, 2016 at 7:34 PM, Burton, Ross wrote: > > On 17 December 2015 at 22:04, Tom Hochstein > wrote: >> >> +${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', >> 'matchbox-terminal matchbox-wm', d)} \ > > > No, this is broken. > > Poky (and others) build with wayland and x11 DISTR

Re: [OE-core] [PATCH v2 3/4] libav.inc: duplicate armv7a over-rides for armv7ve

2016-01-07 Thread Phil Blundell
On Thu, 2016-01-07 at 14:29 -0800, Andre McCurdy wrote: > FULL_OPTIMIZATION_armv7a = "-fexpensive-optimizations -fomit-frame-pointer > -O4 -ffast-math" > +FULL_OPTIMIZATION_armv7ve = "-fexpensive-optimizations -fomit-frame-pointer > -O4 -ffast-math" I wonder if this would be better as just FULL

Re: [OE-core] [PATCH v2 2/4] gcc-configure-common.inc: duplicate armv7a over-ride for armv7ve

2016-01-07 Thread Phil Blundell
On Thu, 2016-01-07 at 14:29 -0800, Andre McCurdy wrote: > EXTRA_OECONF_append_armv7a = " --with-arch=armv7-a" > EXTRA_OECONF_append_armv7m = " --with-arch=armv7-m" > EXTRA_OECONF_append_armv7r = " --with-arch=armv7-r" > +EXTRA_OECONF_append_armv7ve = " --with-arch=armv7-a" Please add a comment

[OE-core] [PATCH][V2][Jethro, fido 2/3] openssl: fix for CVE-2015-3194

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../openssl/0001-Add-test-for-CVE-2015-3194.patch | 66 ++ .../CVE-2015-3194-1-Add-PSS-parameter-check.patch | 45 +++ .../recipes-connectivity/openssl/openssl_1.0.2d.bb | 2 + 3 files changed, 113 insertions(

[OE-core] [PATCH][V2][Jethro, fido 3/3] openssl: fix for CVE-2015-3195

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- ...CVE-2015-3195-Fix-leak-with-ASN.1-combine.patch | 66 ++ .../recipes-connectivity/openssl/openssl_1.0.2d.bb | 1 + 2 files changed, 67 insertions(+) create mode 100644 meta/recipes-connectivity/openssl/openssl/CVE-2015

[OE-core] [PATCH][V2][Jethro, fido 1/3] openssl: fix for CVE-2015-3193

2016-01-07 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- ...64-mont5.pl-fix-carry-propagating-bug-CVE.patch | 101 + .../recipes-connectivity/openssl/openssl_1.0.2d.bb | 1 + 2 files changed, 102 insertions(+) create mode 100644 meta/recipes-connectivity/openssl/openssl/CVE-20

[OE-core] [PATCH v2 4/4] libpostproc: duplicate armv7a over-rides for armv7ve

2016-01-07 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/libav/libpostproc_git.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-multimedia/libav/libpostproc_git.bb b/meta/recipes-multimedia/libav/libpostproc_git.bb index 4aaa50f..911ae86 100644 --- a/meta/recipes-multimedia/

[OE-core] [PATCH v2 3/4] libav.inc: duplicate armv7a over-rides for armv7ve

2016-01-07 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/libav/libav.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-multimedia/libav/libav.inc b/meta/recipes-multimedia/libav/libav.inc index 05b7e87..371e066 100644 --- a/meta/recipes-multimedia/libav/libav.inc +++ b/meta/

[OE-core] [PATCH v2 2/4] gcc-configure-common.inc: duplicate armv7a over-ride for armv7ve

2016-01-07 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-devtools/gcc/gcc-configure-common.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index 45b3f15..84e971a 100644 --- a/meta/recipes-devtool

[OE-core] [PATCH v2 1/4] valgrind: don't restrict to armv7a

2016-01-07 Thread Andre McCurdy
Valgrind has been tested on armv5te/qemuarm, so it seems that valgrind's configure check for armv7 is over cautious. Signed-off-by: Andre McCurdy --- meta/recipes-devtools/valgrind/valgrind_3.10.1.bb | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/meta/recipes-devtool

[OE-core] [PATCH v2 0/4] fixup armv7a over-rides for armv7ve

2016-01-07 Thread Andre McCurdy
The _armv7a over-ride is no longer enabled for machines based on tune-cortexa7.inc and tune-cortexa15.inc. These machines now enable the _armv7ve over-ride instead. The preferred solution is to remove the need for any armv7a over-rides, but where that isn't possible then duplicate armv7a over-ride

Re: [OE-core] [PATCH 2/3] valgrind: don't restrict to armv7a

2016-01-07 Thread Burton, Ross
On 7 January 2016 at 21:03, Andre McCurdy wrote: > Ping. This is more urgent now that arch-armv7ve.inc has been merged to > oe-core master. > Sadly 3.11 totally breaks on PPC, so that's blocking. Maybe rebase the patch to master before the 3.11 upgrade? Ross -- ___

[OE-core] [PATCH] freetype: enable out-of-tree builds, and use host zlib

2016-01-07 Thread Ross Burton
Add a few ${S} and ${B} to make out of tree builds work, and stop using autotools-brokensep. Annoyingly we still need to use a custom do_configure so add a comment explaining why so someone else doesn't spend 30 minutes trying to make it work. Whilst here add a small patch so we don't need to tel

Re: [OE-core] [

2016-01-07 Thread Burton, Ross
On 17 December 2015 at 22:04, Tom Hochstein wrote: > +${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', > 'matchbox-terminal matchbox-wm', d)} \ > No, this is broken. Poky (and others) build with wayland and x11 DISTRO_FEATURES, the presence of wayland DISTRO_FEATURE doesn't mean that

Re: [OE-core] [PATCH 1/4] qemu.bbclass: duplicate armv7a over-ride for armv7ve

2016-01-07 Thread Andre McCurdy
On Thu, Jan 7, 2016 at 1:09 PM, Martin Jansa wrote: > On Thu, Jan 07, 2016 at 12:53:10PM -0800, Andre McCurdy wrote: >> Signed-off-by: Andre McCurdy >> --- >> meta/classes/qemu.bbclass | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbcla

Re: [OE-core] [PATCH 1/4] qemu.bbclass: duplicate armv7a over-ride for armv7ve

2016-01-07 Thread Martin Jansa
On Thu, Jan 07, 2016 at 12:53:10PM -0800, Andre McCurdy wrote: > Signed-off-by: Andre McCurdy > --- > meta/classes/qemu.bbclass | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass > index 315c17f..4ec7657 100644 > --- a/meta/classes/qemu

Re: [OE-core] [PATCH 2/3] valgrind: don't restrict to armv7a

2016-01-07 Thread Andre McCurdy
On Tue, Dec 22, 2015 at 3:57 PM, Andre McCurdy wrote: > Valgrind has been tested on armv5te/qemuarm, so it seems > that valgrind's configure check for armv7 is over cautious. Ping. This is more urgent now that arch-armv7ve.inc has been merged to oe-core master. > Signed-off-by: Andre McCurdy >

[OE-core] [PATCH 3/4] libav.inc: duplicate armv7a over-rides for armv7ve

2016-01-07 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/libav/libav.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-multimedia/libav/libav.inc b/meta/recipes-multimedia/libav/libav.inc index 05b7e87..371e066 100644 --- a/meta/recipes-multimedia/libav/libav.inc +++ b/meta/

[OE-core] [PATCH 0/4] duplicate armv7a over-rides for armv7ve

2016-01-07 Thread Andre McCurdy
The _armv7a over-ride is no longer enabled for machines based on tune-cortexa7.inc and tune-cortexa15.inc. These machines now enable the _armv7ve over-ride instead. Andre McCurdy (4): qemu.bbclass: duplicate armv7a over-ride for armv7ve gcc-configure-common.inc: duplicate armv7a over-ride for

[OE-core] [PATCH 1/4] qemu.bbclass: duplicate armv7a over-ride for armv7ve

2016-01-07 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/classes/qemu.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass index 315c17f..4ec7657 100644 --- a/meta/classes/qemu.bbclass +++ b/meta/classes/qemu.bbclass @@ -43,6 +43,7 @@ QEMU_OPTIONS[vardeps

[OE-core] [PATCH 4/4] libpostproc: duplicate armv7a over-rides for armv7ve

2016-01-07 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/libav/libpostproc_git.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-multimedia/libav/libpostproc_git.bb b/meta/recipes-multimedia/libav/libpostproc_git.bb index 4aaa50f..911ae86 100644 --- a/meta/recipes-multimedia/

[OE-core] [PATCH 2/4] gcc-configure-common.inc: duplicate armv7a over-ride for armv7ve

2016-01-07 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-devtools/gcc/gcc-configure-common.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index 45b3f15..84e971a 100644 --- a/meta/recipes-devtool

Re: [OE-core] [

2016-01-07 Thread Otavio Salvador
Hello Prabhu, (adding Ross on CC) On Thu, Jan 7, 2016 at 6:29 PM, Prabhu Sundararaj wrote: > Xwayland with Weston and MatchBox cannot go together. Both are window > managers. In the xwayland(core-image-weston), matchbox will run on top weston. > XWayland need Wayland supported Window Manager (W

[OE-core] [PATCH 3/3] populate_sdk_ext: Don't put nativesdk and crosssdk items in ext sdk

2016-01-07 Thread Randy Witt
The nativesdk and crosssdk targets were only getting pulled into the extensible sdk due to buildtools dependencies being in BB_TASKDEPDATA. However the nativesdk and crosssdk targets are not needed for the extensible sdk to be used. This patch therefore removes them since it reduces the size of th

[OE-core] [PATCH] uclibc: Upgrade to 1.0.10

2016-01-07 Thread Khem Raj
Drop upstreamed patches Seems to fix parallel build race with locales Signed-off-by: Khem Raj --- meta/recipes-core/uclibc/uclibc-git.inc| 7 +- ...ert-glibc-compat-bump-glibc-minor-version.patch | 28 - ...-Add-implementation-for-copysignl-for-ppc.patch | 125

Re: [OE-core] [PATCH 00/17] musl fixes phase 2

2016-01-07 Thread Khem Raj
Hi Ross No worries, I will prepare phase3 today at earliest. Where these will be addressed along with new fixes. Thanks -Khem > On Jan 7, 2016, at 7:32 AM, Burton, Ross wrote: > > Hi Khem, > > I just reviewed this series again and there's still some patches that need > tweaking: > > On 19

Re: [OE-core] invoking a native compiler (gcc)

2016-01-07 Thread Richard Purdie
On Thu, 2016-01-07 at 15:46 +, Burton, Ross wrote: > > On 7 January 2016 at 15:40, Trevor Woerner > wrote: > > I was surprised to find that BUILD_CC is being set to whatever > > comes up > > first in our build computer's PATH. But I guess the alternative > > would be > > to make our builds lo

Re: [OE-core] [PATCH 00/63] Consolidated pull

2016-01-07 Thread Trevor Woerner
On 01/07/16 11:06, Martin Jansa wrote: > On Thu, Jan 07, 2016 at 11:00:31AM -0500, Trevor Woerner wrote: >> With this applied bitbake can't parse meta-openembedded because >> >> meta-openembedded/meta-oe/recipes-devtools/python/python-pyqt_4.11.3.bb:25: >> Could not inherit file classes/qmake2.bb

Re: [OE-core] [PATCH 00/63] Consolidated pull

2016-01-07 Thread Martin Jansa
On Thu, Jan 07, 2016 at 11:00:31AM -0500, Trevor Woerner wrote: > With this applied bitbake can't parse meta-openembedded because > > meta-openembedded/meta-oe/recipes-devtools/python/python-pyqt_4.11.3.bb:25: > Could not inherit file classes/qmake2.bbclass > > unless the user adds git://git.yoct

Re: [OE-core] invoking a native compiler (gcc)

2016-01-07 Thread Burton, Ross
On 7 January 2016 at 15:40, Trevor Woerner wrote: > I was surprised to find that BUILD_CC is being set to whatever comes up > first in our build computer's PATH. But I guess the alternative would be > to make our builds longer by compiling our own native compiler for such > cases. > You could al

Re: [OE-core] [PATCH] libbsd: Upgrade to 0.8.0

2016-01-07 Thread Marek Vasut
On Thursday, January 07, 2016 at 03:38:31 PM, Martin Jansa wrote: > On Tue, Dec 01, 2015 at 05:01:12PM +0100, Marek Vasut wrote: > > On Tuesday, December 01, 2015 at 04:46:57 PM, Burton, Ross wrote: > > > On 1 December 2015 at 15:42, Marek Vasut wrote: > > > > Looks like it depends on OpenSSL, so

Re: [OE-core] [PATCH 00/17] musl fixes phase 2

2016-01-07 Thread Burton, Ross
Hi Khem, I just reviewed this series again and there's still some patches that need tweaking: On 19 December 2015 at 23:52, Khem Raj wrote: > Khem Raj (17): > powertop: Include right headers for timval struct > Missing Upstream-Status. > dhcp: Include sys/types.h for u_int* defs > Missi

[OE-core] [PATCH] libbsd: upgrade to 0.8.1

2016-01-07 Thread Martin Jansa
* fixes building lldpd from meta-networking, more information in: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807730 http://cgit.freedesktop.org/libbsd/commit/?id=48ac79b1883981f5135b5b9c76ca268e6cbe65b2 * update LIC_FILES_CHKSUM and LICENSE according to: http://cgit.freedesktop.org/l

[OE-core] [PATCH v3] bluez5: upgrade to 5.37

2016-01-07 Thread Maxin B. John
5.36 -> 5.37 Remove the backported patch: core-profile-Fix-possible-crash-when-registering-pro.patch Build bluez5 only when DISTRO_FEATURES include bluez5 Signed-off-by: Maxin B. John --- meta/recipes-connectivity/bluez5/bluez5.inc| 2 +- ...e-Fix-possible-crash-when-registering-pro.p

Re: [OE-core] [PATCH] oe-core:package_manager extract target arch from TARGET_SYS and add it into package_archs

2016-01-07 Thread Burton, Ross
On 24 December 2015 at 05:51, wrote: > +#add the compatible arch extracted from TARGET_SYS. > +#TARGET_SYS usually values as "arm-poky-linux-gnueabi", > +#so the arch is 'arm' > +target_sys = self.d.getVar("TARGET_SYS", True) > +if targe

Re: [OE-core] [PATCH 3/3] liberation-fonts: can't be allarch

2016-01-07 Thread Martin Jansa
On Wed, Jan 06, 2016 at 11:45:24PM -0800, Robert Yang wrote: > liberation-fonts inherit fontcache which would depend on fontconfig, and > fontconfig is not allarch, so that liberation-fonts can't be allarch. > > It caused a problem: > $ bitbake lib32-core-image-sato > > Both lib32-fontconfig and

Re: [OE-core] [PATCH 2/3] run-postinsts: can't be allarch

2016-01-07 Thread Richard Purdie
On Wed, 2016-01-06 at 23:45 -0800, Robert Yang wrote: > The dependencies chain: > run-postinsts -> update-rc.d.bbclass -> initscripts -> update > -alternatives. > > The update-alternatives is provided by opkg-utils which is not > allarch. > > This caused a problem: > $ bitbake lib32-core-image-mi

Re: [OE-core] [dizzy][PATCH] grub2: Fix CVE-2015-8370

2016-01-07 Thread Belal, Awais
Hi Armin, With dizzy-next from your fork awais@alpha:~/yocto/build-dizzy-akuster$ bitbake -c patch grub Parsing recipes: 100% |##| Time: 00:00:46 Parsing of 1458 .bb files complete (0 cached, 1458 parsed). 1914 targets, 66 skipped, 0 m

Re: [OE-core] [PATCH] systemd: enable compatibility libraries by default

2016-01-07 Thread Burton, Ross
On 7 January 2016 at 01:08, Khem Raj wrote: > I think it would be good if we could get them to move. How many such > packages do you see ? > The straw that broke the camels back, so to speak, was the recent post about rsyslog where enabling a systemd-using PACKAGECONFIG didn't actually work as i

Re: [OE-core] invoking a native compiler (gcc)

2016-01-07 Thread Robert Yang
On 01/07/2016 01:21 PM, Trevor Woerner wrote: If a recipe needs to build some tool on the build machine which it later wants to invoke, my understanding is that BUILD_CC should be used? Yes, you're right, use ${BUILD_CC}. // Robert -- ___ Opene