Re: [OE-core] Language settings GTK (glibc?) problem

2016-02-04 Thread Andreas Müller
On Wed, Feb 3, 2016 at 5:01 PM, Andreas Müller wrote: > On Wed, Feb 3, 2016 at 3:50 PM, Richard Purdie > wrote: >> On Wed, 2016-02-03 at 12:49 +0100, Andreas Müller wrote: >>> Hi, >>> >>> while testing libreoffice language packets

[OE-core] [PATCH v4 2/2] apr-util: add ldap crypto and sqlite3 to PACKAGECONFIG

2016-02-04 Thread Ioan-Adrian Ratiu
Enable apr-util's cryptographic routines so that the apache2 package can encrypt session data. Also add sqlite3 and ldap modules, disabled by default. Signed-off-by: Ioan-Adrian Ratiu --- meta/recipes-support/apr/apr-util_1.5.4.bb | 6 +- 1 file changed, 5

Re: [OE-core] Default value for FULL_OPTIMIZATION

2016-02-04 Thread Mike Looijmans
On 03-02-16 21:59, Khem Raj wrote: On Wed, Feb 3, 2016 at 12:57 PM, Phil Blundell wrote: On Wed, 2016-02-03 at 12:51 -0800, Khem Raj wrote: On Wed, Feb 3, 2016 at 12:48 PM, Phil Blundell wrote: On Tue, 2016-02-02 at 22:17 -0800, Khem Raj wrote: -pipe does

[OE-core] [PATCH] util-linux: Change ALTERNATIVE_PRIORITY above busybox

2016-02-04 Thread Richard Purdie
http://git.yoctoproject.org/cgit.cgi/poky/commit/?id=8de5315bd519c21a114bc88b88c6caff32831c03 changed util-linux priority to match busybox (50) which means sometimes one and sometimes the other wins in image installs (depending on the installation order which is package manager specific). We

[OE-core] [PATCH] oeqa/parselogs: Updated whitelist

2016-02-04 Thread Cristina Agurida
Moved an error to common, and whitelisted the BAR errors and ati module. Also the uvesafb related errors will be ignored in LSB images which do not have graphic interface. Fix for [YOCTO #8387] Fix for [YOCTO #8590] Fix for [YOCTO #6820] Fix for [YOCTO #7897] Signed-off-by: Lucian Musat

[OE-core] [PATCH] toaster: update the openembedded-core toaster configuration file

2016-02-04 Thread Elliot Smith
From: Belen Barros Pena It looks like the master branch will no longer build with the Fido release, so remove all references to fido and make sure that the file sets up local, master and jethro releases. Signed-off-by: Belen Barros Pena

[OE-core] [PATCH v4 1/2] apr-util: fix loadable module packaging

2016-02-04 Thread Ioan-Adrian Ratiu
A new QA check was introduced by 47d38d4d86ec6a which catches recipes which install loadable modules (*.so) inside -dev packages instead of symlinks. Install apr-util's modules into ${PN} and also skip the QA check [dev-so] because it is the reverse of the check introduced by 47d38d4d86ec6a (thus

Re: [OE-core] [PATCH] toaster: update the openembedded-core toaster configuration file

2016-02-04 Thread Richard Purdie
On Thu, 2016-02-04 at 10:47 +, Elliot Smith wrote: > From: Belen Barros Pena > > It looks like the master branch will no longer build with the Fido > release, so remove all references to fido and make sure that the file > sets up local, master and jethro

Re: [OE-core] [PATCH] iptables: Add systemd support

2016-02-04 Thread Phil Blundell
Also, please don't hardcode /usr/libexec/iptables or /etc/default/iptables in the service files. p. On Thu, 2016-02-04 at 22:14 +0100, Pau Espin Pedrol wrote: > Please use ${systemd_system_unitdir} instead of > ${systemd_unitdir}/system > > Pau Espin Pedrol > mail/jabber: pespin.s...@gmail.com

Re: [OE-core] [PATCH v2] udev: add runtime dependencies for udev-cache

2016-02-04 Thread Phil Blundell
On Thu, 2016-02-04 at 13:01 -0800, Khem Raj wrote: > > On Feb 4, 2016, at 12:12 PM, Ricardo Neri > > wrote: > > inherit autotools pkgconfig update-rc.d ptest > > RDEPENDS_${PN}-ptest += "make perl python" > > +RDEPENDS_${PN}-cache += "gzip findutils” > >

[OE-core] [PATCH v3 00/22] Add Extensible SDK test suite

2016-02-04 Thread Aníbal Limón
Summary of changes, - Add new class called testsdk that now have the tests for SDK and eSDK. - TestContext -> {Image, SDK, SDKExt}: Remove all duplicate code inside testimage and testsdk class move into oeqa/oetest and create class per type of Test. -

Re: [OE-core] [PATCH 3/6] security_flags: Disable fstack-protector for gcc runtime libs

2016-02-04 Thread Andre McCurdy
On Thu, Feb 4, 2016 at 2:55 PM, Khem Raj wrote: > it causes a catch-22 situation where we build libssp in gcc-runtime > but also pass -fstack-protector flags which require libssp, these > libraries are special as well. > > also flush out ldflags for gcc libs and glibc > >

Re: [OE-core] [PATCH v2] udev: add runtime dependencies for udev-cache

2016-02-04 Thread Khem Raj
> On Feb 4, 2016, at 12:12 PM, Ricardo Neri > wrote: > > udev-cache uses find and xargs, which are provided by findutils. It also > uses gzip, which is provided by gzip. These utilities need to be present > when udev-cache runs. Thus, add them as

[OE-core] [PATCH v3 07/22] bb/fetch2: Move export_proxies function from wget to utils.

2016-02-04 Thread Aníbal Limón
In order to use in other modules since is a common function when needs to get proxies working. Signed-off-by: Aníbal Limón --- bitbake/lib/bb/fetch2/wget.py | 17 + bitbake/lib/bb/utils.py | 19 +++ 2 files changed, 20

[OE-core] [PATCH v3 12/22] oetest.py/TestContext: Move loadTests and runTests inside it.

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón Method's for loadTests and runTests make sense to define inside TestContext because it can be different around Image, SDK, SDKExt. Signed-off-by: Aníbal Limón --- meta/classes/testimage.bbclass | 6 +-

[OE-core] [PATCH v3 03/22] classes/testimage: Add defeault inherit for testsdk.

2016-02-04 Thread Aníbal Limón
For compatibility adds default inherit of the new class testsdk for now, we need to review the code base. Signed-off-by: Aníbal Limón --- meta/classes/testimage.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/classes/testimage.bbclass

[OE-core] [PATCH v3 02/22] classes/testsdk: Add new class testsdk.

2016-02-04 Thread Aníbal Limón
Moves all the testsdk code from testimage in order to have it's own class because new tests will be added for extensible SDK. The old paths for store logs "${WORKDIR}/testimage" and sdk "${WORKDIR}/testimage-sdk" was maintained for compatibility may be change to point testsdk after review the

[OE-core] [PATCH v3 11/22] testimage/testsdk: Move get test suites routine inside TestContext.

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón In order to provide better abstraction move functions to get the test suite inside the TestContext. Signed-off-by: Aníbal Limón --- meta/classes/testimage.bbclass | 11 +-- meta/classes/testsdk.bbclass | 19 +---

[OE-core] [PATCH v3 13/22] classes/testsdk: Add function run_test_context

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón This helper functions will be serve as well to run extensible sdk tests so generalize it to get function context as arg. Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 62

[OE-core] [PATCH v3 04/22] populate_sdk_ext: Set TOOLCHAINEXT_OUTPUTNAME.

2016-02-04 Thread Aníbal Limón
This variable is needed by testextsdk to known the name of extensible sdk file generated. Signed-off-by: Aníbal Limón --- meta/classes/populate_sdk_ext.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[OE-core] [PATCH v3 01/22] testimage: Modularize helper functions for get test lists.

2016-02-04 Thread Aníbal Limón
Test lists functions can be used in other parts so modularize it and move to oeqa/oetest.py library. Testimage class was updated to meet the new sign of the functions. Signed-off-by: Aníbal Limón --- meta/classes/testimage.bbclass | 78

Re: [OE-core] [PATCH v3 00/22] Add Extensible SDK test suite

2016-02-04 Thread Paul Eggleton
On Thu, 04 Feb 2016 16:29:17 Aníbal Limón wrote: > Summary of changes, > > - Add new class called testsdk that now have the tests for SDK and eSDK. > - TestContext -> {Image, SDK, SDKExt}: Remove all duplicate code inside > testimage and testsdk class move into oeqa/oetest and

[OE-core] [PATCH v3 05/22] get_test_suites: Add sdkext type for load test suites.

2016-02-04 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/lib/oeqa/oetest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index 18b2209..6470129 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py @@ -271,6 +271,8

[OE-core] [PATCH v3 06/22] classes/testsdk: Add testsdkext task only install.

2016-02-04 Thread Aníbal Limón
Add task for test extensible sdk for now only install the SDK. Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 45 1 file changed, 45 insertions(+) diff --git a/meta/classes/testsdk.bbclass

[OE-core] [PATCH v3 10/22] testimage/testsdk: Modularize TestContext.

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón Move anonymous duplicated class TestContext from testimage/testsdk to oeqa/oetest now we have two new classes ImageTestContext and SDKTestContext with common code in TestContext class. Signed-off-by: Aníbal Limón ---

[OE-core] [PATCH v3 08/22] classes/testsdk: Add call to export_proxies on testsdkext.

2016-02-04 Thread Aníbal Limón
Extensible SDK needs to use network and some networks requires proxies then export it. Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass

[OE-core] [PATCH v3 16/22] testsdkext: Add skeleton for support Extensible SDK tests.

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón oeqa/sdkext: Add module and __init__.py will contain eSDK tests. classes/testsdk: Add support for run eSDK tests. oeqa/oetest: Create oeSDKExtTest for now only inherit oeSDKTest, modified SDKExtTestContext now inherit SDKTestContext

[OE-core] [PATCH v3 09/22] toolchain-shar-extract.sh: Add proxy variable to new env.

2016-02-04 Thread Aníbal Limón
Extensible SDK needs to do network operations so add proxies to environment. Signed-off-by: Aníbal Limón --- meta/files/toolchain-shar-extract.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/files/toolchain-shar-extract.sh

[OE-core] [PATCH v3 18/22] oeqa/oetest: Fix compatibility SDK tests using eSDK.

2016-02-04 Thread Aníbal Limón
When run SDK tests over eSDK we need to use SDKExtTestContext instead of SDKTestContext because if we use SDKTestContext search for SDK manifest and depends on the SDK manifest generation so populate_sdk needs to be executed. Adds a compatibility mode flag to SDKExtTestContext for search tests

[OE-core] [PATCH v3 17/22] classes/populate_sdk_ext: Add SDK_EXT_TARGET_MANIFEST and SDK_EXT_HOST_MANIFEST

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón Extensible SDK needs to point to the correct manifest so add SDK_EXT_TARGET_MANIFEST and SDK_EXT_HOST_MANIFEST variables. oeqa/oetest.py: Fix SDKExtTestContext for load the correct manifests. Signed-off-by: Aníbal Limón ---

[OE-core] [PATCH v3 22/22] classes/testimage: Fix exportTests function.

2016-02-04 Thread Aníbal Limón
With new structure of TestContext now holds suite and variable that contains unittest instances, it can't be exported using JSON causing and exception. Adds the suite variable for avoid export it. Signed-off-by: Aníbal Limón --- meta/classes/testimage.bbclass | 2

[OE-core] [PATCH v3 20/22] oeqa/sdkext/devtool.py: Add location test to ensure that devtool is the eSDK one.

2016-02-04 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdkext/devtool.py | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/lib/oeqa/sdkext/devtool.py b/meta/lib/oeqa/sdkext/devtool.py index 0262ed3..c5bb310 100644 --- a/meta/lib/oeqa/sdkext/devtool.py +++

[OE-core] [PATCH v3 19/22] oeqa/sdkext: Add devtool basic tests for eSDK.

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón Add simple myapp application is a C app that prints hello world and exit. Add devtool test for that this app to the workspace, build and reset it. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdkext/devtool.py | 25

[OE-core] [PATCH v3 21/22] classes/testsdk: Add help information on how to run tests.

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 10 ++ 1 file changed, 10 insertions(+) diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 453ce40..487f40c 100644 ---

[OE-core] [PATCH v3 14/22] oeqa/oetest: oeSDKTest when run a command redirect env output to null

2016-02-04 Thread Aníbal Limón
Some tests are failing because the eSDK env load script shows a help message on the output so redirect this to /dev/null. There was a discussion with Paul Eggleton [1], he don't want to have env variables to change the behaviour of what the env script needs to print so redirect the output in

[OE-core] [PATCH v3 15/22] classes/testsdk: Add compatibility SDK testsuite to eSDK

2016-02-04 Thread Aníbal Limón
From: Aníbal Limón Extensible SDK is compatible with SDK test suite so it need to execute the same tests over it. Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 24 +++- 1 file changed, 19 insertions(+), 5

[OE-core] [PATCH 4/5] gstreamer1.0-plugins-base_git: update to git master 1.7.1-79-g6414289

2016-02-04 Thread Andre McCurdy
Includes an important fix for: https://bugzilla.gnome.org/show_bug.cgi?id=760938 The fix is not a simple backport to 1.7.1, so just update to latest version from the current git master branch. Signed-off-by: Andre McCurdy ---

[OE-core] [PATCH 2/5] gstreamer1.0-plugins-good_git: avoid including directly

2016-02-04 Thread Andre McCurdy
musl libc generates warnings if is included directly. Signed-off-by: Andre McCurdy --- .../avoid-including-sys-poll.h-directly.patch | 44 ++ .../gstreamer/gstreamer1.0-plugins-good_git.bb | 1 + 2 files changed, 45 insertions(+) create mode

[OE-core] [PATCH 1/5] gstreamer1.0_git: avoid including directly

2016-02-04 Thread Andre McCurdy
musl libc generates warnings if is included directly. Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/gstreamer/gstreamer1.0_git.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_git.bb

[OE-core] [PATCH 5/5] gstreamer1.0-plugins-base_git: drop obsolete dependency on freetype

2016-02-04 Thread Andre McCurdy
The dependency on freetype was dropped shortly after the 1.7.1 release http://cgit.freedesktop.org/gstreamer/gst-plugins-base/commit/?id=183610c035dd6955c9b3540b940aec50474af031 Signed-off-by: Andre McCurdy ---

[OE-core] [PATCH 3/5] gstreamer1.0-plugins-bad_git: avoid including directly

2016-02-04 Thread Andre McCurdy
musl libc generates warnings if is included directly. Signed-off-by: Andre McCurdy --- .../avoid-including-sys-poll.h-directly.patch | 30 ++ .../gstreamer/gstreamer1.0-plugins-bad_git.bb | 1 + 2 files changed, 31 insertions(+) create mode

Re: [OE-core] [PATCH] mdadm: Add systemd support

2016-02-04 Thread Pau Espin Pedrol
Please use ${systemd_system_unitdir} instead of ${systemd_unitdir}/system Pau Espin Pedrol mail/jabber: pespin.s...@gmail.com http://blog.espeweb.net 2016-02-02 3:22 GMT+01:00 Li Xin : > Add mdadm.service to support systemd systems and add configuration > file. > >

Re: [OE-core] [PATCH] iptables: Add systemd support

2016-02-04 Thread Pau Espin Pedrol
Please use ${systemd_system_unitdir} instead of ${systemd_unitdir}/system Pau Espin Pedrol mail/jabber: pespin.s...@gmail.com http://blog.espeweb.net 2016-02-02 5:19 GMT+01:00 Li Xin : > Add iptables.service & ip6tables.service to support systemd systems. > >

Re: [OE-core] [PATCH v2] udev: add runtime dependencies for udev-cache

2016-02-04 Thread Khem Raj
> On Feb 4, 2016, at 1:10 PM, Phil Blundell wrote: > > On Thu, 2016-02-04 at 13:01 -0800, Khem Raj wrote: >>> On Feb 4, 2016, at 12:12 PM, Ricardo Neri >>> wrote: >>> inherit autotools pkgconfig update-rc.d ptest >>> RDEPENDS_${PN}-ptest

[OE-core] [PATCH V2 0/6] Fix issues when using security_flags on musl

2016-02-04 Thread Khem Raj
security_flags enabled builds revealed several issues when building on musl especially compiling gcc runtime libs we should not use fstack-protector another change is to replace with -fstack-protector-all with -fstack-protector-strong which is available since 4.9 and has best of both worlds

[OE-core] [PATCH 0/5] gstreamer1.0: musl fixes + updates for git recipes

2016-02-04 Thread Andre McCurdy
Andre McCurdy (5): gstreamer1.0_git: avoid including directly gstreamer1.0-plugins-good_git: avoid including directly gstreamer1.0-plugins-bad_git: avoid including directly gstreamer1.0-plugins-base_git: update to git master 1.7.1-79-g6414289 gstreamer1.0-plugins-base_git: drop

[OE-core] [PATCH 6/6] gcc: musl related fixes for unwinding, ppc/secure-plt and gthr

2016-02-04 Thread Khem Raj
These issues are fixing building gcc for target, ppc issue helps in fixing discrepency between gcc cmdline and linker cmdline Signed-off-by: Khem Raj --- meta/recipes-devtools/gcc/gcc-5.3.inc | 3 + ...-weak-reference-logic-in-gthr.h-for-os-ge.patch | 78

[OE-core] [PATCH 1/6] nss-myhostname: Fix build on musl

2016-02-04 Thread Khem Raj
provide needed data types if nss.h is not available Signed-off-by: Khem Raj --- ...tname-Check-for-nss.h-presense-before-use.patch | 53 ++ .../nss-myhostname/nss-myhostname_0.3.bb | 4 +- 2 files changed, 56 insertions(+), 1 deletion(-)

[OE-core] [PATCH 2/6] gcc: Fix build on musl with -fstack-protector

2016-02-04 Thread Khem Raj
When enabling the secutity flags on musl based targets the builds fail due to libssp(gcc-runtime) build asking to link with libssp and libssp_nonshared.a when configuring libssp itself. This does not work with musl since it does provide ssp implementation but not like glibc where these libraries

[OE-core] [PATCH 4/6] security_flags: Replace -fstack-protector-all with -fstack-protector-strong

2016-02-04 Thread Khem Raj
since gcc 4.9 this is new option added to gcc which is a better version of fstack-protector-all with reduced stack usage and better performance yet giving same amount of coverage. pass fstack-protector-strong to linker flags as well so ld is passed flags to link with ssp libraries

[OE-core] [PATCH 5/6] gcc: Assume libssp and dl_iterate_phdr on musl

2016-02-04 Thread Khem Raj
gcc configure fails to set these settings correctly on musl based builds Signed-off-by: Khem Raj --- meta/recipes-devtools/gcc/gcc-5.3.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/gcc/gcc-5.3.inc b/meta/recipes-devtools/gcc/gcc-5.3.inc index

[OE-core] [PATCH 3/6] security_flags: Disable fstack-protector for gcc runtime libs

2016-02-04 Thread Khem Raj
it causes a catch-22 situation where we build libssp in gcc-runtime but also pass -fstack-protector flags which require libssp, these libraries are special as well. also flush out ldflags for gcc libs and glibc Signed-off-by: Khem Raj ---

[OE-core] [PATCH] ncurses: use closing curly brackets

2016-02-04 Thread Markus Lehtonen
This patch fixes the usage of curly brackets inside python expression in ncurses recipe. This patch should be applied together with http://lists.openembedded.org/pipermail/bitbake-devel/2016-February/007007.html which changes python expression parsing in bitbake. No similar construct was found in

[OE-core] [PATCH] lttng-tools: Fix ptest installed la files

2016-02-04 Thread Richard Purdie
The ptest .la files are just getting copied into new directories, we need to relocate them and update the paths within. Signed-off-by: Richard Purdie diff --git a/meta/recipes-kernel/lttng/lttng-tools_git.bb b/meta/recipes-kernel/lttng/lttng-tools_git.bb

[OE-core] [PATCH] libical: Work around hardcoded paths in pkgconfig file

2016-02-04 Thread Richard Purdie
For now, work around the hardcoded path in the pkgconfig file. Issue filed upstream as: https://github.com/libical/libical/issues/227 This raises questions about whether some sanity tests are running. Those issues will be addressed in a separate patch. Signed-off-by: Richard Purdie

[OE-core] [PATCH] insane: Fix populate_sysroot sanity test path

2016-02-04 Thread Richard Purdie
This was correct for native/cross paths but not for target ones which meant the tests weren't running in some cases. Fix the path to be correct in both cases. Signed-off-by: Richard Purdie diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass

[OE-core] [PATCH] ncurses: use closing curly brackets in FILES_${PN}-tools variable

2016-02-04 Thread Markus Lehtonen
This patch removes a workaround (needed for bitbake python parser) where closing curly brackets were replaced by ascii code '\x7d'. This commit requires a bitbake version with the "data_smart: simple bracket matching inside python expressions" patch applied. Signed-off-by: Markus Lehtonen

[OE-core] [PATCH 1/4] syslinux: remove LDFLAGS manipulation

2016-02-04 Thread Ross Burton
syslinux appears to be using gcc to link instead of LD directly now, so we can remove the manipulation of LDFLAGS. Signed-off-by: Ross Burton --- meta/recipes-devtools/syslinux/syslinux_6.03.bb | 2 -- 1 file changed, 2 deletions(-) diff --git

[OE-core] [PATCH] pango: unset LDFLAGS when building gen_all_unicode

2016-02-04 Thread Ross Burton
When building the native gen_all_unicode binary we need to also unset LDFLAGS as otherwise the *target* LDFLAGS will be used. At best the options are harmless but if there are options that the host compiler doesn't support then the compile will fail. For example, if the host gcc is version 4.8

[OE-core] [PATCH 2/4] libffi: ensure sysroot paths are not in libffi.pc

2016-02-04 Thread Ross Burton
Remove a previous patch and solve the problem in a different way, as the same root cause was causing the absolute sysroot path to appear in libffi.pc. Signed-off-by: Ross Burton --- .../libffi/libffi/fix-libffi.la-location.patch | 18 --

[OE-core] [PATCH 4/4] socat: upgrade to 1.7.3.1

2016-02-04 Thread Ross Burton
This fixes Socat Security Advisory 7 (MSVR-1499) and 8. [ YOCTO #9024 ] Signed-off-by: Ross Burton --- .../recipes-connectivity/socat/{socat_1.7.3.0.bb => socat_1.7.3.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename

[OE-core] [PATCH 3/4] libffi: move from recipes-gnome to recipes-support

2016-02-04 Thread Ross Burton
Signed-off-by: Ross Burton --- .../libffi/libffi/0001-mips-Use-compiler-internal-define-for-linux.patch | 0 meta/{recipes-gnome => recipes-support}/libffi/libffi/not-win32.patch | 0 meta/{recipes-gnome => recipes-support}/libffi/libffi_3.2.1.bb| 0 3

Re: [OE-core] [PATCH v2 25/28] oeqa/oetest.py: SDK{Ext, } improve host and target manifest load.

2016-02-04 Thread Paul Eggleton
On Tue, 02 Feb 2016 18:30:37 Aníbal Limón wrote: > Don't pass variable name instead of it expands the host and target > manifest at init of the classes. > > Signed-off-by: Aníbal Limón > --- > meta/lib/oeqa/oetest.py | 16 > 1 file changed, 8

Re: [OE-core] [PATCH v2 28/28] classes/test{image, sdk}: Update Copyrights to match the true dates.

2016-02-04 Thread Paul Eggleton
On Tue, 02 Feb 2016 18:30:40 Aníbal Limón wrote: > Signed-off-by: Aníbal Limón > --- > meta/classes/testimage.bbclass | 2 +- > meta/classes/testsdk.bbclass | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/meta/classes/testimage.bbclass

Re: [OE-core] [PATCH v2 23/28] Revert "classes/populate_sdk_ext: Add OE_SDK_EXT_SILENT env variable"

2016-02-04 Thread Paul Eggleton
On Tue, 02 Feb 2016 18:30:35 Aníbal Limón wrote: > This reverts commit 303985d3f402013c7c4a3355f19d48b1cef1c12f. > > As discussion with Paul Eggleton, he don't want to have env variables > to change the behaviour of what the env script needs to print, > i'll redirect the output in oeSDK.run()

Re: [OE-core] [PATCH v2 27/28] classes/testimage: exportTests simple improvment to use list instead of test expresions.

2016-02-04 Thread Paul Eggleton
On Tue, 02 Feb 2016 18:30:39 Aníbal Limón wrote: > It's better to use a list instead if variable isn't match some value. > > Signed-off-by: Aníbal Limón > --- > meta/classes/testimage.bbclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

Re: [OE-core] [PATCH v2 23/28] Revert "classes/populate_sdk_ext: Add OE_SDK_EXT_SILENT env variable"

2016-02-04 Thread Aníbal Limón
On 02/04/2016 12:34 PM, Paul Eggleton wrote: > On Tue, 02 Feb 2016 18:30:35 Aníbal Limón wrote: >> This reverts commit 303985d3f402013c7c4a3355f19d48b1cef1c12f. >> >> As discussion with Paul Eggleton, he don't want to have env variables >> to change the behaviour of what the env script needs to

Re: [OE-core] [PATCH v2 25/28] oeqa/oetest.py: SDK{Ext, } improve host and target manifest load.

2016-02-04 Thread Aníbal Limón
Ok agreed. On 02/04/2016 12:35 PM, Paul Eggleton wrote: > On Tue, 02 Feb 2016 18:30:37 Aníbal Limón wrote: >> Don't pass variable name instead of it expands the host and target >> manifest at init of the classes. >> >> Signed-off-by: Aníbal Limón >> --- >>

Re: [OE-core] [PATCH v2 27/28] classes/testimage: exportTests simple improvment to use list instead of test expresions.

2016-02-04 Thread Aníbal Limón
Ok agreed. On 02/04/2016 12:34 PM, Paul Eggleton wrote: > On Tue, 02 Feb 2016 18:30:39 Aníbal Limón wrote: >> It's better to use a list instead if variable isn't match some value. >> >> Signed-off-by: Aníbal Limón >> --- >> meta/classes/testimage.bbclass | 2 +- >>

Re: [OE-core] [PATCH v2 28/28] classes/test{image, sdk}: Update Copyrights to match the true dates.

2016-02-04 Thread Aníbal Limón
Ok agreed. On 02/04/2016 12:34 PM, Paul Eggleton wrote: > On Tue, 02 Feb 2016 18:30:40 Aníbal Limón wrote: >> Signed-off-by: Aníbal Limón >> --- >> meta/classes/testimage.bbclass | 2 +- >> meta/classes/testsdk.bbclass | 2 +- >> 2 files changed, 2 insertions(+),

[OE-core] [PATCH v2] udev: add runtime dependencies for udev-cache

2016-02-04 Thread Ricardo Neri
udev-cache uses find and xargs, which are provided by findutils. It also uses gzip, which is provided by gzip. These utilities need to be present when udev-cache runs. Thus, add them as RDEPENDSs. Otherwise, if busybox is not included in the built image, the following errors could be observed

Re: [OE-core] [PATCH v2 23/28] Revert "classes/populate_sdk_ext: Add OE_SDK_EXT_SILENT env variable"

2016-02-04 Thread Paul Eggleton
On Thu, 04 Feb 2016 14:12:40 Aníbal Limón wrote: > On 02/04/2016 12:34 PM, Paul Eggleton wrote: > > On Tue, 02 Feb 2016 18:30:35 Aníbal Limón wrote: > >> This reverts commit 303985d3f402013c7c4a3355f19d48b1cef1c12f. > >> > >> As discussion with Paul Eggleton, he don't want to have env variables >

Re: [OE-core] [PATCH] udev: add runtime dependencies for udev-cache

2016-02-04 Thread Ricardo Neri
On Wed, 2016-02-03 at 20:56 +, Burton, Ross wrote: > I was wondering if busbox provides these applets then why pull > them in > explicitly like this > > > Presumably Ricardo is building images without busybox? Indeed, my build does not have busybox. --

Re: [OE-core] [PATCH] udev: add runtime dependencies for udev-cache

2016-02-04 Thread Ricardo Neri
On Wed, 2016-02-03 at 20:37 +, Burton, Ross wrote: > +RDEPENDS_${PN} += "gzip findutils" > > > > The dependencies should be on the udev-cache package, surely. Right. I will submit a new version applying the dependencies to udev-cache only. Thanks and BR, Ricardo --

[OE-core] [PATCH 2/5] toolchain-scripts.bbclass: Use PYTHONPATH instead of PYTHONHOME

2016-02-04 Thread Randy Witt
In the extensible sdk it was originally intended that the native sstate would always be setscened as part of the sdk installation. However, the soon to come "minimal" sdk won't do that. A side effect of that is that pointing PYTHONHOME at the native sysroot within the "bitbake workspace" won't

[OE-core] [PATCH 1/5] copy_buildsystem.py: Pass the nativelsb argument to gen-lockedsig-cache

2016-02-04 Thread Randy Witt
If the nativelsb argument is not used, then create_locked_sstate_cache() can get collisions when moving the files from the input_sstate_cache to the output_sstate_cache. The specific case where this was encountered was when a "universal" nativelsb directory already existed in the

[OE-core] [PATCH 0/5] extsdk bug fixes and minimal type addition

2016-02-04 Thread Randy Witt
The following changes since commit b33e440cc6fbd703e8045d94b806790343e72eb6: libical: Work around hardcoded paths in pkgconfig file (2016-02-04 13:09:56 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib fcef7183f0ac9ab38715bb0c0a80109696d79b2d

[OE-core] [PATCH 3/5] populate_sdk_ext: Don't set sdk_update_targets in the config

2016-02-04 Thread Randy Witt
sdk_update_targets isn't used by any code, so there is no reason to set it. Signed-off-by: Randy Witt --- meta/classes/populate_sdk_ext.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes/populate_sdk_ext.bbclass

[OE-core] [PATCH 5/5] populate_sdk_ext: Make populate_sdk_ext depend on sdk_extra_conf

2016-02-04 Thread Randy Witt
If a user changes sdk_extra_conf, it should cause populate_sdk_ext to run. Signed-off-by: Randy Witt --- meta/classes/populate_sdk_ext.bbclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/classes/populate_sdk_ext.bbclass

[OE-core] [PATCH 4/5] populate_sdk_ext: Add support for a "minimal" type

2016-02-04 Thread Randy Witt
If the user sets the SDK_EXT_TYPE variable to "minimal" then the sdk won't contain any sstate. The sstate can come from an sstate mirror and be installed on demand as usual. Signed-off-by: Randy Witt --- meta/classes/populate_sdk_ext.bbclass | 15 --- 1

Re: [OE-core] [PATCH v2 23/28] Revert "classes/populate_sdk_ext: Add OE_SDK_EXT_SILENT env variable"

2016-02-04 Thread Aníbal Limón
Comments below, On 02/04/2016 02:19 PM, Paul Eggleton wrote: > On Thu, 04 Feb 2016 14:12:40 Aníbal Limón wrote: >> On 02/04/2016 12:34 PM, Paul Eggleton wrote: >>> On Tue, 02 Feb 2016 18:30:35 Aníbal Limón wrote: This reverts commit 303985d3f402013c7c4a3355f19d48b1cef1c12f. As

Re: [OE-core] [PATCH] inetutils: fix up recent build fails due to phantom empty directory

2016-02-04 Thread Paul Gortmaker
[Re: [PATCH] inetutils: fix up recent build fails due to phantom empty directory] On 04/02/2016 (Thu 13:14) Joe MacDonald wrote: > [[PATCH] inetutils: fix up recent build fails due to phantom empty directory] > On 16.01.31 (Sun 14:42) Paul Gortmaker wrote: > > > Recently I started getting this

Re: [OE-core] [PATCH v2 23/28] Revert "classes/populate_sdk_ext: Add OE_SDK_EXT_SILENT env variable"

2016-02-04 Thread Paul Eggleton
On Thu, 04 Feb 2016 14:38:56 Aníbal Limón wrote: > Comments below, > > On 02/04/2016 02:19 PM, Paul Eggleton wrote: > > On Thu, 04 Feb 2016 14:12:40 Aníbal Limón wrote: > >> On 02/04/2016 12:34 PM, Paul Eggleton wrote: > >>> On Tue, 02 Feb 2016 18:30:35 Aníbal Limón wrote: > This reverts

Re: [OE-core] [PATCH v2 23/28] Revert "classes/populate_sdk_ext: Add OE_SDK_EXT_SILENT env variable"

2016-02-04 Thread Richard Purdie
On Fri, 2016-02-05 at 09:40 +1300, Paul Eggleton wrote: > On Thu, 04 Feb 2016 14:38:56 Aníbal Limón wrote: > > No i don't mean that way because i don't agree with this change and > > i > > consider this as *CENSURE* because if i someone don't agree a > > change the > > why? information need to be

Re: [OE-core] [PATCH v2 23/28] Revert "classes/populate_sdk_ext: Add OE_SDK_EXT_SILENT env variable"

2016-02-04 Thread Aníbal Limón
On 02/04/2016 02:47 PM, Richard Purdie wrote: > On Fri, 2016-02-05 at 09:40 +1300, Paul Eggleton wrote: >> On Thu, 04 Feb 2016 14:38:56 Aníbal Limón wrote: >>> No i don't mean that way because i don't agree with this change and >>> i >>> consider this as *CENSURE* because if i someone don't

[OE-core] [PATCH] uninative: Improve error handling

2016-02-04 Thread Richard Purdie
We need to improve the error handling here, things were breaking and yet the user wasn't seeing the issues. We need to skip libraries as we process the files. Signed-off-by: Richard Purdie diff --git a/meta/classes/uninative.bbclass

[OE-core] [PATCH] patchelf: Add patch to handle large files

2016-02-04 Thread Richard Purdie
There were "maximum size exceeded" errors from patchelf when processing qemu-native. There is an issue open for this upstream, add a patch proposed there for this issue. "32" was increased to "64" to handle our qemu-ppc binary. Signed-off-by: Richard Purdie