Re: [OE-core] [PATCH 1/2] libpostproc: fix installed-vs-shipped

2015-06-10 Thread Burton, Ross
On 9 June 2015 at 10:04, Robert Yang liezhi.y...@windriver.com wrote: When MACHINE=qemux86-64 and enable multilib: ERROR: QA Issue: libpostproc: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/libpostproc.so.52.3.0 /usr/lib/libpostproc.so

Re: [OE-core] [RFC] remove neon from oe-core

2015-06-10 Thread Martin Jansa
On Wed, Jun 10, 2015 at 10:17:53AM +0100, Paul Eggleton wrote: Hi Ross, On Tuesday 09 June 2015 20:14:15 Burton, Ross wrote: Since Subversion moved away from neon it appears the only user of it in oe-core is GStreamer as a HTTP client plugin. By virtue of being maintained I suspect the

[OE-core] [PATCH v4 2/3] spdx.bbclass: Create the spdx file which is compliant with SPDX 1.2 Specification

2015-06-10 Thread Lei Maohui
The main changes are: 1. use curl command instead of wget when get spdx file from FOSSologySPDX instance server. Before apply these patches, the command is : wget -qO - --no-check-certificate --timeout=0 --post-file=xxx/yyy/zzz.tar.gz

[OE-core] [PATCH v4 3/3] spdx: create a directory to save source code

2015-06-10 Thread Lei Maohui
In order to avoid the SPDX_S be polluted in the rebuild, create ${WORKDIR}/${SPDX_TEMP_DIR} to save the source. Signed-off-by: Lei Maohui leimao...@cn.fujitsu.com --- meta/classes/spdx.bbclass | 34 +- meta/conf/licenses.conf | 2 ++ 2 files changed, 35

[OE-core] [PATCH v4 0/3] These patches aim to make the spdx file be compliant with the SPDX 1.2 Specification.

2015-06-10 Thread Lei Maohui
Those patches aim to make the spdx file be compliant with the SPDX 1.2 Specification. If you want to use this feature,you need to do: 1. Make sure your fossology+spdx server works well.You can get spdx file with the following command. curl http://127.0.0.1/repo/ --noproxy 127.0.0.1 -k -F

[OE-core] [PATCH v4 1/3] licenses.conf: Modified parameters for new spdx.bbclass

2015-06-10 Thread Lei Maohui
1) Define new command line to get spdx file. 2) Define some mandatory fields for spdx 1.2 Signed-off-by: Lei Maohui leimao...@cn.fujitsu.com --- meta/conf/licenses.conf | 86 ++--- 1 file changed, 24 insertions(+), 62 deletions(-) diff --git

Re: [OE-core] [RFC] remove neon from oe-core

2015-06-10 Thread Burton, Ross
On 10 June 2015 at 11:03, Martin Jansa martin.ja...@gmail.com wrote: Yes, meta-legacy not included in my world builds looks much better than dumping untested changes to meta-oe (both gstreamer-0.10 and bluez-4 dumps didn't even parse in form how they were sent to oe-devel ML). The patches

[OE-core] [PATCH] oeqa/utils: Added timeout decorator for testcases.

2015-06-10 Thread Lucian Musat
Signed-off-by: Lucian Musat george.l.mu...@intel.com --- meta/lib/oeqa/utils/decorators.py | 26 ++ 1 file changed, 26 insertions(+) diff --git a/meta/lib/oeqa/utils/decorators.py b/meta/lib/oeqa/utils/decorators.py index 61a1a73..b9fc76c 100644 ---

[OE-core] [PATCH 0/2] Fixes for multilib

2015-06-10 Thread Robert Yang
The following changes since commit de6a26b95a7f7bd8f9dc47ab35d8b07ba671f4eb: x264: use x86 over-ride instead of i586 (2015-06-08 17:32:46 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/multilib

Re: [OE-core] [PATCH][v4] mmc-utils: fix the building failure when DEBUG_BUILD is 1

2015-06-10 Thread Rongqing Li
ping -Roy On 2015年06月03日 09:24, rongqing...@windriver.com wrote: From: Roy Li rongqing...@windriver.com AM_CFLAGS in Makefile includes -D_FORTIFY_SOURCE=2 which will lead to building failure when DEBUG_BUILD is 1. Cancel the definition of _FORTIFY_SOURCE by passing -U_FORTIFY_SOURCE via

Re: [OE-core] [RFC] remove neon from oe-core

2015-06-10 Thread Burton, Ross
On 10 June 2015 at 10:17, Paul Eggleton paul.eggle...@linux.intel.com wrote: I have to be honest and say I don't like meta-oe continuing to be a dumping ground for old things that only a few (or no) people are using - if we must keep these recipes around, I'd rather they go into a different

[OE-core] [PATCH V2 3/3] populate_sdk_ext: consider custom configuration in local.conf

2015-06-10 Thread Chen Qi
Copy the contents of local.conf under TOPDIR into the final generated local.conf. In this way, custom settings are also made into the final local.conf like IMAGE_INSTALL, DISTRO_FEATURES, VIRTUAL-RUNTIME_xxx, etc. Before this change, installing extensible SDK would usually report failure when

[OE-core] [PATCH V2 2/3] copy_buildsystem: make sure bitbake directory is copied

2015-06-10 Thread Chen Qi
The previous code assumes that bitbake/ directory is under the core layer. This is the case for Yocto project. But users might clone oe-core and bitbake separately. So we use bb.__file__ to locate the bitbake directory to make sure it's copied into the extensible SDK. Signed-off-by: Chen Qi

[OE-core] [PATCH V2 1/3] populate_sdk_ext: install the latest buildtools-tarball

2015-06-10 Thread Chen Qi
If we do `bitbake buildtools-tarball' and then after one day do `bitbake core-image-minimal -c populate_sdk_ext', we would meet errors like below. | install: cannot stat '/buildarea2/chenqi/poky/build-systemd/tmp/deploy/sdk/

[OE-core] [PATCH V2 0/3] Extensible SDK: 3 fixes

2015-06-10 Thread Chen Qi
Changes since V1: *) Make use of bb.utils.edit_metadata. *) Introduce a whitelist mechanism to allow exceptions. The following changes since commit de6a26b95a7f7bd8f9dc47ab35d8b07ba671f4eb: x264: use x86 over-ride instead of i586 (2015-06-08 17:32:46 +0100) are available in the git repository

[OE-core] [PATCH v3 1/2] cmake: Whitespace fix

2015-06-10 Thread Moritz Blume
Signed-off-by: Moritz Blume moritz.bl...@bmw-carit.de --- meta/classes/cmake.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index 3549c38..1ebb936 100644 --- a/meta/classes/cmake.bbclass +++

Re: [OE-core] [PATCH] ncurses: fix native builds when host has gcc5

2015-06-10 Thread Khem Raj
On Wed, Jun 10, 2015 at 9:07 AM, Martin Stolpe martinsto...@gmail.com wrote: -BUILD_CPPFLAGS += -D_GNU_SOURCE +BUILD_CPPFLAGS += -D_GNU_SOURCE -P We have fixed this do we need this ? whats error. -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH 00/10] devtool refactoring

2015-06-10 Thread Markus Lehtonen
Hi, On 09/06/15 18:01, Paul Eggleton paul.eggle...@linux.intel.com wrote: Hi Markus, On Thursday 04 June 2015 19:31:44 Markus Lehtonen wrote: This patchset contains contains some refactoring of the devtool code, hopefully making the code more maintainable and somewhat easier to read.

[OE-core] [PATCH] ncurses: fix native builds when host has gcc5

2015-06-10 Thread Martin Stolpe
GCCs preprocessor starts to add newlines which are not handled properly by ncurses build system startin from version 5.0. See also: https://bugzilla.yoctoproject.org/show_bug.cgi?id=7870 Signed-off-by: Martin Stolpe martin.sto...@gmail.com --- meta/recipes-core/ncurses/ncurses.inc | 2

[OE-core] [PATCH 1/2] sysstat: DEPENDS on base-passwd

2015-06-10 Thread Robert Yang
Fixed: | install -m 644 -g man man/sa1.8 /path/to/tmp/work/i586-poky-linux/sysstat/11.1.4-r0/image/usr/share/man/man8 | install: invalid group `man' Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/recipes-extended/sysstat/sysstat.inc |2 ++ 1 file changed, 2 insertions(+)

[OE-core] [PATCH 0/2] fix depends issues for sysstat and mtools

2015-06-10 Thread Robert Yang
The following changes since commit de6a26b95a7f7bd8f9dc47ab35d8b07ba671f4eb: x264: use x86 over-ride instead of i586 (2015-06-08 17:32:46 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/deps

[OE-core] [PATCH 2/2] mtools: add PACKAGECONFIG for libbsd

2015-06-10 Thread Robert Yang
Fixed: ld: cannot find -lbsd collect2: error: ld returned 1 exit status Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/recipes-devtools/mtools/mtools_3.9.9.bb |3 +++ meta/recipes-devtools/mtools/mtools_4.0.18.bb |3 +++ 2 files changed, 6 insertions(+) diff --git

[OE-core] [PATCH 2/2] multilib.bbclass: use package_qa_handle_error

2015-06-10 Thread Robert Yang
Use package_qa_handle_error to handle the QA issue. Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/classes/insane.bbclass |2 +- meta/classes/multilib.bbclass |5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/meta/classes/insane.bbclass

[OE-core] [PATCH 1/2] update-rc.d.bbclass: add MLPREFIX when set RRECOMMENDS

2015-06-10 Thread Robert Yang
Fixed when build with multilib: WARNING: Multilib QA Issue: lib32-alsa-state package lib32-alsa-state - suspicious values 'update-rc.d' in RRECOMMENDS WARNING: Multilib QA Issue: lib32-modutils-initscripts package lib32-modutils-initscripts - suspicious values 'update-rc.d' in RRECOMMENDS

Re: [OE-core] [RFC] remove neon from oe-core

2015-06-10 Thread Paul Eggleton
Hi Ross, On Tuesday 09 June 2015 20:14:15 Burton, Ross wrote: Since Subversion moved away from neon it appears the only user of it in oe-core is GStreamer as a HTTP client plugin. By virtue of being maintained I suspect the libsoup plugin is generally the better choice there, so as neon is

Re: [OE-core] [PATCH] ncurses: fix native builds when host has gcc5

2015-06-10 Thread Martin Stolpe
Ok, then I was too slow in sending the patch. Haven't seen that it was fixed already. 2015-06-10 15:21 GMT+02:00 Khem Raj raj.k...@gmail.com: On Wed, Jun 10, 2015 at 9:07 AM, Martin Stolpe martinsto...@gmail.com wrote: -BUILD_CPPFLAGS += -D_GNU_SOURCE +BUILD_CPPFLAGS += -D_GNU_SOURCE -P We

[OE-core] [PATCH] [fido] binutils: fix native builds when host has gcc5

2015-06-10 Thread Martin Stolpe
Problem is that when building binutils using GCC =5.0 warnings will be treated as errors which will cause the build to fail. Signed-off-by: Martin Stolpe martin.sto...@gmail.com --- meta/recipes-devtools/binutils/binutils_2.24.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff

[OE-core] [PATCH] [fido] ncurses: fix native builds when host has gcc5

2015-06-10 Thread Martin Stolpe
GCCs preprocessor starts to add newlines which are not handled properly by ncurses build system startin from version 5.0. See also: https://bugzilla.yoctoproject.org/show_bug.cgi?id=7870 Signed-off-by: Martin Stolpe martin.sto...@gmail.com --- meta/recipes-core/ncurses/ncurses.inc | 2 +- 1

Re: [OE-core] [PATCH] ncurses: fix native builds when host has gcc5

2015-06-10 Thread Burton, Ross
On 10 June 2015 at 14:27, Martin Stolpe martinsto...@gmail.com wrote: Ok, then I was too slow in sending the patch. Haven't seen that it was fixed already. My fault for not remembering this was already sorted. FWIW, the fix is oe-core 47f67fa (ncurses upgrade). Of course that won't help

[OE-core] [PATCH] oeqa/parselogs: The logs are now copied and parsed locally.

2015-06-10 Thread Lucian Musat
This is to fix a problem with reaching the limit of the whitelist size. Signed-off-by: Lucian Musat george.l.mu...@intel.com --- meta/lib/oeqa/runtime/parselogs.py | 30 +++--- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git

Re: [OE-core] [PATCH] [fido] binutils: fix native builds when host has gcc5

2015-06-10 Thread Khem Raj
On Wed, Jun 10, 2015 at 10:26 AM, Martin Stolpe martinsto...@gmail.com wrote: Problem is that when building binutils using GCC =5.0 warnings will be treated as errors which will cause the build to fail. Signed-off-by: Martin Stolpe martin.sto...@gmail.com ---

[OE-core] [PATCH] oeqa/parselogs: Added some more errors to the whitelist.

2015-06-10 Thread Lucian Musat
Signed-off-by: Lucian Musat george.l.mu...@intel.com --- meta/lib/oeqa/runtime/parselogs.py | 29 + 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index e641366..a9ab9a3 100644 ---

Re: [OE-core] [PATCH v3 2/2] cmake: Upgrade 2.8.12.2 - 3.2.2

2015-06-10 Thread Burton, Ross
I see this causes piglit to fail to build, which is a problem if we want this in oe-core. I'm having a quick look to see if upgrading piglit helps but right now this is blocking merging. Ross On 10 June 2015 at 08:36, Moritz Blume moritz.bl...@bmw-carit.de wrote: Patches

Re: [OE-core] [PATCH] ncurses: fix native builds when host has gcc5

2015-06-10 Thread Khem Raj
On Wed, Jun 10, 2015 at 9:54 AM, Burton, Ross ross.bur...@intel.com wrote: FWIW, the fix is oe-core 47f67fa (ncurses upgrade). Of course that won't help anyone running fido on a host with gcc5, but I'm not sure we support that... right. -- ___

Re: [OE-core] [PATCH v3 2/2] cmake: Upgrade 2.8.12.2 - 3.2.2

2015-06-10 Thread Burton, Ross
On 10 June 2015 at 17:49, Burton, Ross ross.bur...@intel.com wrote: I see this causes piglit to fail to build, which is a problem if we want this in oe-core. I'm having a quick look to see if upgrading piglit helps but right now this is blocking merging. Upgrading piglit seemed to help,

[OE-core] [PATCH] image-live: Set syslinux timeout to 5s

2015-06-10 Thread Ed Bartosh
Increased syslinux timeout to 5s as 1s default 1s timeout is not enough to notice syslinux prompt on some devices. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/classes/image-live.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH] initramfs-live-install: Add gptdisk to initramfs

2015-06-10 Thread Ed Bartosh
This is a part of the work to support partiion UUID in installer. gptdisk is going to be used to get partition UUID. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb | 2 +-

[OE-core] [PATCH] init-install-efi: Implement UUID support

2015-06-10 Thread Ed Bartosh
Using UUID in favor of device names is more reliable as UUID names are persistent. Device names can change as the order of adding device nodes is arbitrary. This sometimes results in device names switching on each boot, which can cause system fail to boot. Persistent naming solves these issues.

[OE-core] [PATCH] mklibs-native: Remove the dpkg-native dependency

2015-06-10 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval leonardo.sandoval.gonza...@linux.intel.com The 'dpkg-native' dependency introduced on 0a08dc is not neccesary needed if the mklibs-native code is secured with a try/catch statement when calling the dpkg-native application. [YOCTO #3782] Signed-off-by: Leonardo Sandoval

Re: [OE-core] [PATCH 1/2] libpostproc: fix installed-vs-shipped

2015-06-10 Thread Robert Yang
On 06/10/2015 06:59 PM, Burton, Ross wrote: On 9 June 2015 at 10:04, Robert Yang liezhi.y...@windriver.com mailto:liezhi.y...@windriver.com wrote: When MACHINE=qemux86-64 and enable multilib: ERROR: QA Issue: libpostproc: Files/directories were installed but not shipped in any

[OE-core] [PATCH] bind: add systemd file bind-chroot.service

2015-06-10 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com --- .../bind/bind/bind-chroot.service | 26 ++ meta/recipes-connectivity/bind/bind_9.10.2.bb | 13 +++ 2 files changed, 35 insertions(+), 4 deletions(-) create mode 100644

Re: [OE-core] [PATCH] [fido] binutils: fix native builds when host has gcc5

2015-06-10 Thread Martin Stolpe
Yes, it would be better to fix these warnings. But on the other hand this patch would just restore the previous behavior. So as a long term solution I agree with you that these warnings should be fixed but why not use a workaround until the problems are fixed? I wouldn't dare to try to fix these

Re: [OE-core] bitbake -c menuconfig virtual/kernel fails on ncurses dependency

2015-06-10 Thread Mike Looijmans
On 11-06-15 07:45, Mike Looijmans wrote: On 26-05-15 11:03, Mike Looijmans wrote: On 26-05-15 10:40, Andrea Adami wrote: On Tue, May 26, 2015 at 10:29 AM, Mike Looijmans mike.looijm...@topic.nl wrote: On 26-05-15 10:14, Mike Looijmans wrote: On 26-05-15 09:26, Mike Looijmans wrote: On

[OE-core] [PATCH] iputils: enable rdisc and add systemd support.

2015-06-10 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com --- .../iputils/files/enable-rdisc.patch | 21 + meta/recipes-extended/iputils/files/rdisc.conf | 1 + meta/recipes-extended/iputils/files/rdisc.service | 11 +++

[OE-core] tcf-agent package question

2015-06-10 Thread Peter Urbanec
Just a quick question regarding tcf-agent. Is anyone actually using/maintaining this package? I had a go at using the feature with Eclipse Luna, but it seems that the oe-core tcf-agent package is so out of date that it won't work. -- ___

Re: [OE-core] bitbake -c menuconfig virtual/kernel fails on ncurses dependency

2015-06-10 Thread Mike Looijmans
On 26-05-15 11:03, Mike Looijmans wrote: On 26-05-15 10:40, Andrea Adami wrote: On Tue, May 26, 2015 at 10:29 AM, Mike Looijmans mike.looijm...@topic.nl wrote: On 26-05-15 10:14, Mike Looijmans wrote: On 26-05-15 09:26, Mike Looijmans wrote: On 26-05-15 09:13, Mike Looijmans wrote: On

[OE-core] [PATCH] Add license file XFree86-1.0

2015-06-10 Thread Kai Kang
Add license file XFree86-1.0 which is needed by packages such as hwdata. It is from: http://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN28 And add 'XFree86-1.0' to SRC_DISTRIBUTE_LICENSES. Signed-off-by: Kai Kang kai.k...@windriver.com --- meta/conf/licenses.conf| 2 +-

[OE-core] [PATCH] libatomic-ops: 7.2 - 7.4.2

2015-06-10 Thread Tanu Kaskinen
The backported patch is included in the new version, so dropped the patch. Dropped DESCRIPTION, because it was redundant (same as SUMMARY). Changed HOMEPAGE. libatomic_ops is nowadays maintained by Ivan Maidanski. doc/LICENSING.txt changed checksum, but there were only whitespace changes.