Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Bruce Ashfield
On 15-07-27 05:30 AM, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder: http://errors.yoctoproject.org/Errors/Search/?items=10query=3628c3c06fa4195003ac655bcc791acfac775173limit=50 41 errors (with a few more pending). The good news is that if we tweak the security flags,

Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Yi Qingliang
using gcc 5.1, the boost statechart library compile fail. On Mon, Jul 27, 2015 at 9:20 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 15-07-27 05:30 AM, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder:

Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Richard Purdie
On Mon, 2015-07-27 at 09:20 -0400, Bruce Ashfield wrote: On 15-07-27 05:30 AM, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder: http://errors.yoctoproject.org/Errors/Search/?items=10query=3628c3c06fa4195003ac655bcc791acfac775173limit=50 41 errors (with a few more

Re: [OE-core] [PATCH 2/2] recipes-connectivity: Add iw configuration for enabling Marvell 8897 WiFi feature

2015-07-27 Thread Richard Purdie
On Thu, 2015-07-09 at 13:10 +0800, wei.tee...@intel.com wrote: From: Ng Shui Lei shui.lei...@intel.com iw features was created in the recipes-connectivity layer to enable Marvell 8897 module in AP mode and STA mode. iw is a new nl80211 based CLI configuration utility for wireless devices.

[OE-core] [PATCH] security-flags: Disable PIE for coreutils, elfutils, gcc, iptables

2015-07-27 Thread Richard Purdie
With gcc 5, we need to disable the PIE flags for more recipes in order to have successful builds. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org diff --git a/meta/conf/distro/include/security_flags.inc b/meta/conf/distro/include/security_flags.inc index 85a3bfe..3724972 100644

[OE-core] [PATCH] nativesdk-qt4-tools: depend on nativesdk-qt4-tools only if DISTRO_FEATURES includes x11

2015-07-27 Thread Pascal Bach
Currently nativesdk-qt4-tools can't be built if the DISTRO_FEATURES doesn't contain x11. To make it build we add a dependency to x11 only if the feature is activated. Signed-off-by: Pascal Bach pascal.b...@siemens.com --- meta/recipes-qt/qt4/nativesdk-qt4-tools.inc | 2 +- 1 file changed, 1

Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Paul Eggleton
On Monday 27 July 2015 09:31:01 Bruce Ashfield wrote: On 15-07-27 09:20 AM, Bruce Ashfield wrote: On 15-07-27 05:30 AM, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder: http://errors.yoctoproject.org/Errors/Search/?items=10query=3628c3c06fa4

[OE-core] [PATCH 10/11] oeqa/selftest/imagefeatures: remove gummiboot tests

2015-07-27 Thread Paul Eggleton
These tests were _deleting_ meta-intel if it happened to appear under COREBASE, which could have been catastrophic if there was any work in progress in that directory. It turns out we don't even need meta-intel, but we do need a machine that's set up appropriately (e.g. genericx86-64). Tests that

[OE-core] [PATCH 09/11] oeqa/selftest/imagefeatures: fix RPM4 test

2015-07-27 Thread Paul Eggleton
* Use our new runqemu function * Don't hard-code the RPM4 version * Double-check the native version is RPM4 * Check that an rpm 4.x package is in the image manifest (this isn't strictly necessary, but belt-and-braces and it serves as an example of how to do that) * Check that the database is

Re: [OE-core] [PATCH] toaster.bbclass: Fix ValueError

2015-07-27 Thread Richard Purdie
On Mon, 2015-07-27 at 13:55 +0300, Ed Bartosh wrote: The reason for this exception was usage of ':' as a field delimiter in toasterstatlist file. As target can optionally contain ':task' suffix it caused split(':') to throw exception: File toaster_collect_task_stats(e), line 71, in

Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Mike Looijmans
Wow, 5.2? I can't even get the broadcom MIPS kernels to compile using the current master's 4.9.3 (I'm investigating still whether the kernel or gcc or OE is the problem here). M. On 27-07-15 11:30, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder:

[OE-core] [PATCH 11/11] oeqa/selftest/devtool: use new runqemu function

2015-07-27 Thread Paul Eggleton
Use the common code we now have to run QEMU instead of running it ourselves, avoiding reliance on the machine showing up at 192.168.7.2. This also makes a copy of the image rather than using -snapshot so if we need to inspect the image after a failure, we can. Fixes [YOCTO #7928]. Signed-off-by:

[OE-core] [PATCH 04/11] oeqa/utils/qemurunner: avoid blocking on stty when running under oe-selftest

2015-07-27 Thread Paul Eggleton
runqemu-internal runs stty to return the terminal to its previous state in case QEMU hasn't done that properly (which it at least used to do when it crashed). For some reason I have yet to determine, stty blocks (on tcsetattr() according to gdb) when run within QemuRunner() under oe-selftest, with

[OE-core] [PATCH 07/11] oeqa/selftest/imagefeatures: Use QemuTarget code

2015-07-27 Thread Paul Eggleton
From: Richard Purdie richard.pur...@linuxfoundation.org Create a runqemu function which uses the QemuTarget() code from oeqa.targetcontrol to setup the QEMU instance, with all of the added robustness that that gives us. To do this, a datastore is needed for the recipe in question

[OE-core] [PATCH 06/11] oeqa/targetcontrol: write QemuRunner log output to a file

2015-07-27 Thread Paul Eggleton
If we use this outside of testimage we don't have a task log; so let's just explicitly write the log output to a file all the time so it's always there to look at (particularly useful when runqemu exits immediately with an error.) Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com ---

[OE-core] [PATCH 03/11] oeqa/utils/qemurunner: fix logging

2015-07-27 Thread Paul Eggleton
OE-Core commit 519e381278d40bdac79add340e4c0460a9f97e17 unfortunately broke logging in two different ways: 1) it prevented logging to the task log from working within bitbake -c testimage. This is due to the logger object being set up too early which interferes with BitBake's own logging.

[OE-core] [PATCH 08/11] oeqa/selftest/imagefeatures: fix SSH without password tests

2015-07-27 Thread Paul Eggleton
From: Richard Purdie richard.pur...@linuxfoundation.org * We need to set EXTRA_IMAGE_FEATURES outright or existing values will affect the test * For test case 1107 we need empty-root-password to match the behaviour described in the test case * For test case 1115 we shouldn't be able to

[OE-core] [PATCH 05/11] oeqa/utils/qemurunner: fix error handling if runqemu exits with an error

2015-07-27 Thread Paul Eggleton
* Don't wait for QEMU to start if it's never going to (because runqemu exited with an error) * Don't error out if killing the process fails with no such process (we don't care if it's already dead) Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com ---

[OE-core] [PATCH 01/11] oe-selftest: add scripts/lib and bitbake/lib to path

2015-07-27 Thread Paul Eggleton
In particular, this allows us to use code from bitbake's bb module (such as tinfoil). Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com --- scripts/oe-selftest | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/oe-selftest b/scripts/oe-selftest index

[OE-core] [PATCH 02/11] oeqa/targetcontrol: create test directory before copying rootfs image

2015-07-27 Thread Paul Eggleton
The test directory might not exist at this point so just go ahead and create it. Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com --- meta/lib/oeqa/targetcontrol.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index

[OE-core] [PATCH 00/11] Properly fix oe-selftest QEMU usage + related fixes

2015-07-27 Thread Paul Eggleton
The tests in oeqa/selftest/imagefeatures have had a long list of issues that we've worked around; this patchset implements the ability to run QEMU from oe-selftest tests properly and attempts to fix the remaining known issues with the tests. At the same time we can make the devtool test that uses

Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Bruce Ashfield
On 15-07-27 09:50 AM, Paul Eggleton wrote: On Monday 27 July 2015 09:31:01 Bruce Ashfield wrote: On 15-07-27 09:20 AM, Bruce Ashfield wrote: On 15-07-27 05:30 AM, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder:

Re: [OE-core] [PATCH V3 3/4] sysklogd: add systemd support

2015-07-27 Thread Ahsan, Noor
Hello Chen, May I know why your patch series is still pending merge? Noor -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Chen Qi Sent: Sunday, September 28, 2014 8:00 AM To:

Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Bruce Ashfield
On 15-07-27 09:20 AM, Bruce Ashfield wrote: On 15-07-27 05:30 AM, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder: http://errors.yoctoproject.org/Errors/Search/?items=10query=3628c3c06fa4195003ac655bcc791acfac775173limit=50 41 errors (with a few more pending). The

Re: [OE-core] gcc 5.2 failures

2015-07-27 Thread Bruce Ashfield
On 15-07-27 09:52 AM, Richard Purdie wrote: On Mon, 2015-07-27 at 09:20 -0400, Bruce Ashfield wrote: On 15-07-27 05:30 AM, Richard Purdie wrote: I've run a gcc 5.2 test build on the autobuilder:

Re: [OE-core] [PATCH 1/2] recipes-connectivity: Add hostapd configuration for enabling Marvell 8897 WiFi feature

2015-07-27 Thread Richard Purdie
On Thu, 2015-07-09 at 13:10 +0800, wei.tee...@intel.com wrote: From: Ng Shui Lei shui.lei...@intel.com Hostapd features was created in the recipes-connectivity layer to enable Marvell 8897 module in AP mode and STA mode. Signed-off-by: Ng Shui Lei shui.lei...@intel.com Signed-off-by: Ng

[OE-core] [PATCH] toaster.bbclass: Fix ValueError

2015-07-27 Thread Ed Bartosh
The reason for this exception was usage of ':' as a field delimiter in toasterstatlist file. As target can optionally contain ':task' suffix it caused split(':') to throw exception: File toaster_collect_task_stats(e), line 71, in toaster_collect_task_stats(e=bb.event.BuildCompleted object at

Re: [OE-core] [PATCHv3 0/6] recipetool/devtool/oe-selftest: pull from BBPATH

2015-07-27 Thread Richard Purdie
On Sat, 2015-07-25 at 12:18 -0700, Christopher Larson wrote: On Sat, Jul 25, 2015 at 9:09 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: however when I apply this and your other series, the autobuilder oe-selftest does this:

[OE-core] [PATCH v3] oeqa/buildoptions.py: automate test case 929: check for correct GPL licenses

2015-07-27 Thread Costin Constantin
Signed-off-by: Costin Constantin costin.c.constan...@intel.com --- meta/lib/oeqa/selftest/buildoptions.py | 29 + 1 file changed, 29 insertions(+) diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py index e79be9e..9ef7776

Re: [OE-core] [PATCH] mesa: fix sed for MESA_EGL_NO_X11_HEADERS in fido

2015-07-27 Thread Martin Jansa
On Tue, Jul 21, 2015 at 10:46:11AM -0700, Tobias Olausson wrote: In 10.4 versions of mesa, the check for MESA_EGL_NO_X11_HEADERS uses an #ifdef, not an #if define(). So this commit which was recently backported to fido branch should be reverted: commit

Re: [OE-core] qt5 webkit Nothing RPROVIDES 'liborc-0.4'

2015-07-27 Thread Martin Jansa
On Thu, Jul 23, 2015 at 02:01:40PM +0300, Life Life wrote: Hello, I'm trying to build qt5 webkit. I seen this error message Build Configuration: BB_VERSION= 1.24.0 BUILD_SYS = x86_64-linux NATIVELSBSTRING = Ubuntu-14.04 TARGET_SYS= arm-poky-linux-gnueabi

[OE-core] [PATCH] harfbuzz: upgrade to 1.0.1

2015-07-27 Thread Cristian Iorga
- Update to Unicode 8.0; - Implement Universal Shaping Engine; - Bug fixes. Signed-off-by: Cristian Iorga cristian.io...@intel.com --- .../harfbuzz/{harfbuzz_0.9.41.bb = harfbuzz_1.0.1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename

[OE-core] [PATCH] opkg-utils: fix bashism in opkg-build

2015-07-27 Thread Dominic Sacré
Fix error '[[: not found' if /bin/sh is not bash. This issue was introduced by the recent addition of tar_ignore_error.patch to the opkg-utils recipe. Signed-off-by: Dominic Sacré dominic.sa...@gmx.de --- meta/recipes-devtools/opkg-utils/opkg-utils/tar_ignore_error.patch | 4 ++-- 1 file

Re: [OE-core] [poky][PATCH v2 1/6] gstreamer1.0-plugins-base: Bug fix for id3demux issue

2015-07-27 Thread Burton, Ross
On 27 July 2015 at 18:13, Otavio Salvador otavio.salva...@ossystems.com.br wrote: On Mon, Jul 27, 2015 at 2:05 PM, Burton, Ross ross.bur...@intel.com wrote: How many of these patches are applied in the 1.5 releases of GStreamer? We can upgrade instead and a colleague is going to be looking

Re: [OE-core] [PATCH 0/2] [master][dizzy] Enable Marvel 8897 Wifi feature

2015-07-27 Thread Otavio Salvador
On Thu, Jul 9, 2015 at 2:10 AM, wei.tee...@intel.com wrote: I would like to add hostapd and iw configuration for enabling Marvell 8897 Wifi feature. Hostapd and iw configuration were created in the recipes-connectivity layer to enable Marvell 8897 module function in AP mode and STA mode. It

Re: [OE-core] [PATCH 0/2] [master][dizzy] Enable Marvel 8897 Wifi feature

2015-07-27 Thread Hugo Vasconcelos Saldanha
On Mon, Jul 27, 2015 at 01:41:45PM -0300, Otavio Salvador wrote: On Thu, Jul 9, 2015 at 2:10 AM, wei.tee...@intel.com wrote: I would like to add hostapd and iw configuration for enabling Marvell 8897 Wifi feature. Hostapd and iw configuration were created in the recipes-connectivity layer

Re: [OE-core] [poky][PATCH v2 1/6] gstreamer1.0-plugins-base: Bug fix for id3demux issue

2015-07-27 Thread Burton, Ross
How many of these patches are applied in the 1.5 releases of GStreamer? We can upgrade instead and a colleague is going to be looking at the upgrades tomorrow, so if several can be dropped then that will save time and effort. Ross On 27 July 2015 at 17:44, Otavio Salvador

Re: [OE-core] [poky][PATCH v2 2/2] gstreamer1.0: Add basesink related patch

2015-07-27 Thread Otavio Salvador
On Mon, Jul 27, 2015 at 8:29 AM, Yuqing Zhu b54...@freescale.com wrote: Fix QoS/lateness checking if subclass implements prepare/prepare_list vfuncs Signed-off-by: Yuqing Zhu b54...@freescale.com --- ...x-QoS-lateness-checking-if-subclass-imple.patch | 70 ++

Re: [OE-core] [poky][PATCH v2 1/6] gstreamer1.0-plugins-base: Bug fix for id3demux issue

2015-07-27 Thread Otavio Salvador
Hello, I am fine with the patch but it needs fixing. Check below. On Mon, Jul 27, 2015 at 8:26 AM, Yuqing Zhu b54...@freescale.com wrote: Use g_utf16_to_utf8() instead of g_convert to fix the issue that id3 tags utf16 charaters cannot be extreacted in id3demux when try to get the id3v2 tag

Re: [OE-core] [poky][PATCH v2 4/6] gstreamer1.0-plugins-base: Add video-frame related patch

2015-07-27 Thread Otavio Salvador
On Mon, Jul 27, 2015 at 8:26 AM, Yuqing Zhu b54...@freescale.com wrote: -Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF This makes sure that the buffer is not reffed another time when storing it in the GstVideoFrame, keeping it writable if it was writable. -Don't ref buffers twice when mapping

Re: [OE-core] [poky][PATCH v2 1/6] gstreamer1.0-plugins-base: Bug fix for id3demux issue

2015-07-27 Thread Otavio Salvador
On Mon, Jul 27, 2015 at 2:05 PM, Burton, Ross ross.bur...@intel.com wrote: How many of these patches are applied in the 1.5 releases of GStreamer? We can upgrade instead and a colleague is going to be looking at the upgrades tomorrow, so if several can be dropped then that will save time and

Re: [OE-core] [poky][PATCH v2 3/6] gstreamer1.0-plugins-base: update video alignment after video alignment

2015-07-27 Thread Otavio Salvador
On Mon, Jul 27, 2015 at 8:26 AM, Yuqing Zhu b54...@freescale.com wrote: Video buffer pool will update video alignment to respect stride alignment requirement. But haven't update it to video alignment in configure. Which will cause user get wrong video alignment. Signed-off-by: Yuqing Zhu

Re: [OE-core] [poky][PATCH v2 0/6] Upgrade to 3.14.38-6QP_Beta release

2015-07-27 Thread Otavio Salvador
On Mon, Jul 27, 2015 at 8:26 AM, Yuqing Zhu b54...@freescale.com wrote: Fix id3demux issue Handle audio/video decoder error Update video alignment after video alignment Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF, keeping buffer writable Gstvideofilter use new GST_VIDEO_FRAME_MAP_FLAG_NO_REF

Re: [OE-core] [PATCHv3 0/6] recipetool/devtool/oe-selftest: pull from BBPATH

2015-07-27 Thread Christopher Larson
On Mon, Jul 27, 2015 at 5:16 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Sat, 2015-07-25 at 12:18 -0700, Christopher Larson wrote: On Sat, Jul 25, 2015 at 9:09 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: however when I apply this and your

Re: [OE-core] [PATCH] mesa: fix sed for MESA_EGL_NO_X11_HEADERS in fido

2015-07-27 Thread Tobias Olausson
On 27 July 2015 at 08:25, Martin Jansa martin.ja...@gmail.com wrote: On Tue, Jul 21, 2015 at 10:46:11AM -0700, Tobias Olausson wrote: In 10.4 versions of mesa, the check for MESA_EGL_NO_X11_HEADERS uses an #ifdef, not an #if define(). So this commit which was recently backported to fido

Re: [OE-core] [PATCH 0/2] [master][dizzy] Enable Marvel 8897 Wifi feature

2015-07-27 Thread Burton, Ross
On 27 July 2015 at 19:28, Otavio Salvador otavio.salva...@ossystems.com.br wrote: Sure but this is not a bugfix. I am opposed to backport features without a very clear reason and this does not seem to qualify as a massive need. Indeed, and existence in meta-oe is an even better reason *not*

Re: [OE-core] [PATCH 0/2] [master][dizzy] Enable Marvel 8897 Wifi feature

2015-07-27 Thread Hugo Vasconcelos Saldanha
On Mon, Jul 27, 2015 at 03:28:46PM -0300, Otavio Salvador wrote: On Mon, Jul 27, 2015 at 3:15 PM, Hugo Vasconcelos Saldanha hugo.salda...@aker.com.br wrote: On Mon, Jul 27, 2015 at 01:41:45PM -0300, Otavio Salvador wrote: On Thu, Jul 9, 2015 at 2:10 AM, wei.tee...@intel.com wrote: I

Re: [OE-core] [PATCH 0/2] [master][dizzy] Enable Marvel 8897 Wifi feature

2015-07-27 Thread Otavio Salvador
On Mon, Jul 27, 2015 at 3:15 PM, Hugo Vasconcelos Saldanha hugo.salda...@aker.com.br wrote: On Mon, Jul 27, 2015 at 01:41:45PM -0300, Otavio Salvador wrote: On Thu, Jul 9, 2015 at 2:10 AM, wei.tee...@intel.com wrote: I would like to add hostapd and iw configuration for enabling Marvell 8897

[OE-core] [PATCH] oeqa/qemurunner: Fix AttributeError: QemuRunner instance has no attribute 'server_socket'

2015-07-27 Thread Richard Purdie
If start() returns False due to create_socker() failing, stop() may still get called and currently this gives a track back since server_socket doesn't exist. Avoid this. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org diff --git a/meta/lib/oeqa/utils/qemurunner.py

[OE-core] [PATCH] u-boot-mkimage: fix a building failure on OpenSus

2015-07-27 Thread rongqing.li
From: Roy Li rongqing...@windriver.com Signed-off-by: Roy Li rongqing...@windriver.com --- ...-the-creation-of-include-config-auto.conf.patch | 54 ++ meta/recipes-bsp/u-boot/u-boot-mkimage_2015.01.bb | 1 + 2 files changed, 55 insertions(+) create mode 100644

[OE-core] [PATCH 7/9] help2man-native: 1.46.4 - 1.47.1

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- ...-native_1.46.4.bb = help2man-native_1.47.1.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/help2man/{help2man-native_1.46.4.bb = help2man-native_1.47.1.bb} (79%) diff --git

[OE-core] [PATCH 9/9] pax-utils: 1.0.3 - 1.0.5

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- .../{pax-utils_1.0.3.bb = pax-utils_1.0.5.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/pax-utils/{pax-utils_1.0.3.bb = pax-utils_1.0.5.bb} (83%) diff --git

[OE-core] [PATCH 5/9] cracklib: 2.9.4 - 2.9.5

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- .../{cracklib_2.9.4.bb = cracklib_2.9.5.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/cracklib/{cracklib_2.9.4.bb = cracklib_2.9.5.bb} (91%) diff --git

[OE-core] [PATCH 8/9] man-pages: 4.00 - 4.01

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- .../{man-pages_4.00.bb = man-pages_4.01.bb} | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) rename meta/recipes-extended/man-pages/{man-pages_4.00.bb = man-pages_4.01.bb} (81%) diff --git

[OE-core] [PATCH 1/9] git: 2.4.4 - 2.4.6

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/recipes-devtools/git/git_2.4.4.bb | 11 --- meta/recipes-devtools/git/git_2.4.6.bb | 11 +++ 2 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644 meta/recipes-devtools/git/git_2.4.4.bb create mode

[OE-core] [PATCH 0/9] Packages Upgrade

2015-07-27 Thread Robert Yang
The following changes since commit 27d068d05239c26a3848eb101571acab54635e37: harfbuzz: upgrade to 1.0.1 (2015-07-27 23:28:23 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/PU

[OE-core] [PATCH 4/9] less: 478 - 479

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- .../less/{less_478.bb = less_479.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/less/{less_478.bb = less_479.bb} (88%) diff --git a/meta/recipes-extended/less/less_478.bb

[OE-core] [PATCH 2/9] file: 5.23 - 5.24

2015-07-27 Thread Robert Yang
* Remove backported patch: - 0001-Fix-bug-with-long-options-and-explicitly-number-them.patch \ - 0002-fix-bug-with-5.23-long-options.patch \ * Use git repo rather than tarball since the original SRC_URI is not stable, it is not reachable sometimes. Signed-off-by: Robert Yang

[OE-core] [PATCH 6/9] gnupg: 2.1.5 - 2.1.6

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- .../gnupg/{gnupg_2.1.5.bb = gnupg_2.1.6.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/gnupg/{gnupg_2.1.5.bb = gnupg_2.1.6.bb} (89%) diff --git

[OE-core] [PATCH 3/9] libuser: 0.61 - 0.62

2015-07-27 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- .../libuser/{libuser_0.61.bb = libuser_0.62.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/libuser/{libuser_0.61.bb = libuser_0.62.bb} (88%) diff --git

Re: [OE-core] [PATCH V3 0/4] Fixes for systemd services in systemd

2015-07-27 Thread ChenQi
ping Any comment is welcome. If these patches look OK, I'll rebase them and send out a new version. Best Regards, Chen Qi On 09/28/2014 11:00 AM, Chen Qi wrote: Changes since V2: sysklogd: Unlink /dev/log only if it's not from systemd The following changes since commit

Re: [OE-core] [poky][PATCH v2 4/6] gstreamer1.0-plugins-base: Add video-frame related patch

2015-07-27 Thread Zhu Carol
Hi Otavio, Really sorry for the Upstream-Status format error, we just kept the same with some patches on fido branch, maybe they are old version. And I still have a little confusion about the third comment. My question are as followed. -Original Message- From: Otavio Salvador

[OE-core] [PATCH] libhugetlbfs: Uprev to v2.19 from v2.18

2015-07-27 Thread jianchuan.wang
From: Jianchuan Wang jianchuan.w...@windriver.com The 5 patches which are deleted have been in the v2.19 Signed-off-by: Jianchuan Wang jianchuan.w...@windriver.com --- ...tend-arm32-support-to-include-BE-variants.patch | 38 --- .../0001-Makefile-Recognize-all-ix86-arches.patch |

Re: [OE-core] [PATCH 0/2] insane.bbclass: fix package_qa_check_buildpaths

2015-07-27 Thread Robert Yang
ping. // Robert On 07/15/2015 05:16 PM, Robert Yang wrote: The following changes since commit 6be698b7270f73f40d38713ecf13f12aec0ced61: dpkg: Fix for Fedora22 and new versions of tar (2015-07-13 13:46:45 +0100) are available in the git repository at:

[OE-core] [PATCH 0/1] rootfs.py: fix PRE/POSTPROCESS_COMMANDS for rpm and deb

2015-07-27 Thread Robert Yang
The following changes since commit 27d068d05239c26a3848eb101571acab54635e37: harfbuzz: upgrade to 1.0.1 (2015-07-27 23:28:23 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/post

[OE-core] [PATCH 1/1] rootfs.py: fix PRE/POSTPROCESS_COMMANDS for rpm and deb

2015-07-27 Thread Robert Yang
The rpm didn't run RPM_PREPROCESS_COMMANDS or RPM_POSTPROCESS_COMMANDS, the similar to deb, this patch fix the problem. And fix a typo: DEB_POSTPROCESS_COMMAND - DEB_POSTPROCESS_COMMANDS Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/lib/oe/rootfs.py | 16 +++- 1

Re: [OE-core] [PATCH v2 0/2] Yocto Bug #6945

2015-07-27 Thread He Zhe
Ping. On 07/27/2015 10:51 AM, He Zhe wrote: Ping. On 07/23/2015 03:48 PM, He Zhe wrote: Ping. On 07/21/2015 03:23 PM, zhe...@windriver.com wrote: From: He Zhe zhe...@windriver.com - To support building packaging and installing multi types of kernel images, such as zImage uImage, at

Re: [OE-core] [PATCH 5/5] file: 5.23 - 5.24

2015-07-27 Thread Robert Yang
On 07/21/2015 07:05 PM, Burton, Ross wrote: On 17 July 2015 at 03:31, Robert Yang liezhi.y...@windriver.com mailto:liezhi.y...@windriver.com wrote: * Use git repo rather than tarball, rename file_5.23.bb http://file_5.23.bb - file_git.bb http://file_git.bb Why? Hi Ross, The old

Re: [OE-core] [oe-core][PATCH v3 2/3] systemd.bbclass: Use systemd_system_unitdir

2015-07-27 Thread Pau Espin Pedrol
Hi Khem, This series of patches have as an objective to improve systemd support in OE, specifically improve support for user services. If you want more information, you can follow the discussion from last patch version I sent and also the yocto bug report:

Re: [OE-core] [oe-core][PATCH v3 2/3] systemd.bbclass: Use systemd_system_unitdir

2015-07-27 Thread Pau Espin Pedrol
OK Tanu, I will try to do some tests and prepare new patches during the following days. Thanks for reviewing, Pau Espin Pedrol mail/jabber: pespin.s...@gmail.com http://blog.espeweb.net 2015-07-25 9:29 GMT+02:00 Tanu Kaskinen tanu.kaski...@linux.intel.com: On Fri, 2015-07-24 at 17:10 +0200,

[OE-core] gcc 5.2 failures

2015-07-27 Thread Richard Purdie
I've run a gcc 5.2 test build on the autobuilder: http://errors.yoctoproject.org/Errors/Search/?items=10query=3628c3c06fa4195003ac655bcc791acfac775173limit=50 41 errors (with a few more pending). The good news is that if we tweak the security flags, the poky-lsb gcc, elfutils, coreutils and