[OE-core] [PATCH 0/1] devtool: runqemu: work around runqemu script path assumption

2016-10-17 Thread Paul Eggleton
The following changes since commit 327e4bf5a84d5b49ccc65927df622c9ef6302d55: build-appliance-image: Update to master head revision (2016-10-15 13:22:16 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib paule/esdk-runqemu-path

[OE-core] [PATCH 1/1] devtool: runqemu: work around runqemu script path assumption

2016-10-17 Thread Paul Eggleton
The new runqemu script assumes that if OECORE_NATIVE_SYSROOT is set then it shouldn't try to run bitbake to find out the values of various variables such as DEPLOY_DIR_IMAGE; this assumption is incorrect for the extensible SDK. To work around this, clear OECORE_NATIVE_SYSROOT in the environment

[OE-core] [PATCH] gnutls_3.5.3.bb: Fix native build on distro with kernel < 3.4.17

2016-10-17 Thread Khem Raj
When using distros which use old kernels gnutls fails to build due to missing SYS_getrandom, therefore we need to check for this before using it. Fixes errorr e.g. | ../../../gnutls-3.5.3/lib/nettle/rnd-linux.c: In function 'have_getrandom': | ../../../gnutls-3.5.3/lib/nettle/rnd-linux.c:59:42:

Re: [OE-core] [PATCH 0/2] More robust prerm and preinst scriptlets

2016-10-17 Thread Khem Raj
> On Oct 11, 2016, at 5:43 AM, Markus Lehtonen > wrote: > > These patches prevent package deinstallation and upgrade failures caused by > init script error on opkg-based systems. The problem was that init script > 'stop' will likely return '1' if the daemon is

Re: [OE-core] [poky][PATCH] gstreamer1.0-plugins-good: Remove gst_meta_ximage_transform function

2016-10-17 Thread Khem Raj
this is ok too > On Oct 11, 2016, at 3:48 AM, Yuqing Zhu wrote: > > Remove the transform function as it is not supported. > > Or gst_buffer_copy_into() will print ERROR log. > > Signed-off-by: Yuqing Zhu > --- >

Re: [OE-core] Two kmeta's not allowed for master?

2016-10-17 Thread Khem Raj
> On Oct 11, 2016, at 6:15 AM, vesa.jaaskelai...@vaisala.com wrote: > > Hi, > > I was trying out how well 'master' branch compiles in our environment. > > We are using meta-xilinx and then we have custom BSP layer which bbappends > linux-xlnx. > > When using meta-xilinx as standalone (w/o

Re: [OE-core] [poky][PATCH 4/4] gstreamer1.0-plugins-bad: Fix glimagesink cannot show frame when connect to qmlglsrc

2016-10-17 Thread Khem Raj
this series looks ok to me > On Oct 11, 2016, at 3:49 AM, Yuqing Zhu wrote: > > 1.When connect to qmlglsrc, x11 event loop will be replace by qt event loop > which will cause the window cannot receive event from xserver, such as > resize. > > 2.Also advertise support for

Re: [OE-core] [PATCH] kernel-arch.bbclass: Add xtensa and arc into valid_archs table

2016-10-17 Thread Khem Raj
> On Oct 11, 2016, at 9:31 AM, Juro Bystricky wrote: > > Both "arc" and "xtensa" are valid Linux architectures, add > them into valid_archs table. > > Signed-off-by: Juro Bystricky > --- > meta/classes/kernel-arch.bbclass | 2 +- > 1 file

Re: [OE-core] [PATCH] insane.bbclass: Additional "mips" and "mipsel" machine definitions

2016-10-17 Thread Khem Raj
> On Oct 11, 2016, at 9:56 AM, Juro Bystricky wrote: > > Add "mips" and "mipsel" to "machdata" table. > Although there is a way to add entries to the "machdata" table > from a BSP without modifying the insane.bbclass directly, MIPS is > already supported in poky and as

Re: [OE-core] [meta-oe][PATCH] systemd-serialgetty: add dependency to agetty

2016-10-17 Thread Khem Raj
> On Oct 11, 2016, at 8:14 AM, Samuli Piippo wrote: > > Signed-off-by: Samuli Piippo > --- > meta/recipes-core/systemd/systemd-serialgetty.bb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

Re: [OE-core] [PATCH][master][krogoth] archiver: fix gcc-source handling

2016-10-17 Thread akuster808
On 10/17/2016 07:25 AM, Saul Wold wrote: This has been merged to master ping for Krogoth Merged to my stagging. Thanks for the reminder. - armin Sau! On Mon, 2016-10-10 at 11:32 -0700, Saul Wold wrote: The source archiver was not handling the gcc-source target correctly, since it uses

Re: [OE-core] udev/mount.sh: use lazy umount

2016-10-17 Thread Khem Raj
On Mon, Oct 10, 2016 at 2:45 PM, Matthijs Vader wrote: > Hi, > > umount will fail if there are processes accessing files at the device, use > lazy umount to avoid this problem. > > I found this patch [1] a long long time ago, but don't see it in master now. > > Any

[OE-core] [PATCH] buildhistory: fix latest_srcrev in the common case

2016-10-17 Thread Christopher Larson
From: Christopher Larson buildhistory was writing srcrevs.values() as SRCREV when only one srcrev/branch exists. This returns a view of the dictionary values in python 3, and used to return a list in python 2, neither of which is an appropriate value for SRCREV. It was

Re: [OE-core] [PATCH v2] bitbake: bitbake-layers: Make show-recipes show PR

2016-10-17 Thread Ulf Magnusson
On Mon, Oct 17, 2016 at 11:42 PM, Paul Eggleton wrote: > Hi Ulf, > > On Mon, 17 Oct 2016 20:30:27 Ulf Magnusson wrote: >> Only PE and PV were shown, which might have been an oversight. The >> tuples passed to version_str() contain three elements (PE, PV, and PR), >>

Re: [OE-core] [PATCH v2] bitbake: bitbake-layers: Make show-recipes show PR

2016-10-17 Thread Paul Eggleton
Hi Ulf, On Mon, 17 Oct 2016 20:30:27 Ulf Magnusson wrote: > Only PE and PV were shown, which might have been an oversight. The > tuples passed to version_str() contain three elements (PE, PV, and PR), > not two. I have to say I don't recall exactly but I think it was deliberate. We're talking

Re: [OE-core] The future of qemuarm

2016-10-17 Thread Khem Raj
On Mon, Oct 17, 2016 at 8:48 AM, Aníbal Limón wrote: > > > On 10/17/2016 10:20 AM, Pascal Bach wrote: >> >>> >>> Whatever we replace it with has to be part of linux-yocto and the meta data >>> that is >>> carried there, so it can be used for the sanity/smoke test

[OE-core] [PATCH] cmake: avoid configure failures if CFLAGS contains -Wstrict-prototypes

2016-10-17 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-devtools/cmake/cmake.inc | 1 + ...void-gcc-warnings-with-Wstrict-prototypes.patch | 42 ++ 2 files changed, 43 insertions(+) create mode 100644

[OE-core] [PATCH v2] bitbake: bitbake-layers: Make show-recipes show PR

2016-10-17 Thread Ulf Magnusson
Changes since v1: Remove now-redundant default 'pr' argument in QueryPlugin.version_str(). Ulf Magnusson (1): bitbake: bitbake-layers: Make show-recipes show PR bitbake/lib/bblayers/query.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.7.4 --

[OE-core] [PATCH v2] bitbake: bitbake-layers: Make show-recipes show PR

2016-10-17 Thread Ulf Magnusson
Only PE and PV were shown, which might have been an oversight. The tuples passed to version_str() contain three elements (PE, PV, and PR), not two. Also remove now-redundant default 'pr' argument in QueryPlugin.version_str(). Signed-off-by: Ulf Magnusson ---

[OE-core] [PATCH] bitbake: bitbake-layers: Make show-recipes show PR

2016-10-17 Thread Ulf Magnusson
Only PE and PV were shown, which might have been an oversight. The tuples passed to version_str() contain three elements (PE, PV, and PR), not two. Signed-off-by: Ulf Magnusson --- bitbake/lib/bblayers/query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

[OE-core] [PATCH] combo-layer: handle file_exclude matching dirs

2016-10-17 Thread Olaf Mandel
If file_exclude matches a directory, os.unlink() got called with this directory as an argument. Filter out paths that end in a directory separator. This still leaves the (then empty) directories, but this does not affect the git commit. --- scripts/combo-layer | 2 ++ 1 file changed, 2

Re: [OE-core] [PATCH 2/9] selftest: skip two bbtest tests depending on distro

2016-10-17 Thread Leonardo Sandoval
On 10/17/2016 02:08 AM, Joshua Lock wrote: On Fri, 2016-10-14 at 11:40 -0500, leonardo.sandoval.gonza...@linux.intel.com wrote: From: Leonardo Sandoval There are two bbtests that just makes sense on certain distros: test_bitbake_g cannot be done

Re: [OE-core] [PATCH 7/9] selftest: skip runtime-test's test_testimage_install on poky-tiny distro

2016-10-17 Thread Leonardo Sandoval
On 10/17/2016 02:09 AM, Joshua Lock wrote: On Fri, 2016-10-14 at 11:40 -0500, leonardo.sandoval.gonza...@linux.intel.com wrote: From: Leonardo Sandoval Distro poky-tiny cannot build the core-image-full-cmdline image, so skip the test if this is

[OE-core] [oe-core][PATCH] terminal.py: Add compatiblity for konsole 16.08.1

2016-10-17 Thread Davis, Michael
Konsole has dropped support for the nofork flag. It has been replaced with the seperate flag. Signed-off-by: Michael Davis --- meta/lib/oe/terminal.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/lib/oe/terminal.py

Re: [OE-core] The future of qemuarm

2016-10-17 Thread Aníbal Limón
On 10/17/2016 10:20 AM, Pascal Bach wrote: > >> >> Whatever we replace it with has to be part of linux-yocto and the meta data >> that is >> carried there, so it can be used for the sanity/smoke test machine for arch >> arm. >> >> As such, it has to be feature compatible (network

Re: [OE-core] The future of qemuarm

2016-10-17 Thread Bruce Ashfield
On Mon, Oct 17, 2016 at 11:20 AM, Pascal Bach wrote: > > > > > Whatever we replace it with has to be part of linux-yocto and the meta > data that is > > carried there, so it can be used for the sanity/smoke test machine for > arch arm. > > > > As such, it has to be

[OE-core] [PATCH 10/23] json-glib: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/json-glib/json-glib_1.2.2.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-gnome/json-glib/json-glib_1.2.2.bb b/meta/recipes-gnome/json-glib/json-glib_1.2.2.bb index

[OE-core] [PATCH 13/23] kmod: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-kernel/kmod/kmod.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc index 166b3f0..a59c305 100644 ---

[OE-core] [PATCH 09/23] gtk+: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/gtk+/gtk+.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-gnome/gtk+/gtk+.inc b/meta/recipes-gnome/gtk+/gtk+.inc index c240baa..751bc49 100644 ---

Re: [OE-core] The future of qemuarm

2016-10-17 Thread Pascal Bach
> > Whatever we replace it with has to be part of linux-yocto and the meta data > that is > carried there, so it can be used for the sanity/smoke test machine for arch > arm. > > As such, it has to be feature compatible (network capabilities, disk boot, > etc) with > the existing arm versatile

[OE-core] [PATCH 17/23] btrfs-tools: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/btrfs-tools/btrfs-tools_4.7.1.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.7.1.bb

[OE-core] [PATCH 23/23] Remove the SGML stack

2016-10-17 Thread Alexander Kanavin
It is not used for anything, and is something of a pain to maintain. Signed-off-by: Alexander Kanavin --- .../docbook-dsssl-stylesheets-native_1.79.bb | 71 .../docbook-sgml-dtd-3.1-native_3.1.bb | 26 -

[OE-core] [PATCH 19/23] systemd: do not depend on SGML stack

2016-10-17 Thread Alexander Kanavin
I couldn't find any reference whatsoever to it in the source tree. Signed-off-by: Alexander Kanavin --- meta/recipes-core/systemd/systemd_230.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/systemd/systemd_230.bb

[OE-core] [PATCH 20/23] gtk+: remove dependency on SGML stack

2016-10-17 Thread Alexander Kanavin
This means that FAQ and tutorial will not be built, but even when they were, they were not installed anywhere. Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/gtk+/gtk+.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 21/23] gtk+3: remove SGML stack dependency

2016-10-17 Thread Alexander Kanavin
Gtk3 hasn't had it for a long time. Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/gtk+/gtk+3.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-gnome/gtk+/gtk+3.inc b/meta/recipes-gnome/gtk+/gtk+3.inc index

[OE-core] [PATCH 22/23] iputils: do not build or install manpages

2016-10-17 Thread Alexander Kanavin
This allows dropping the SGML stack dependency, and iputils is the only package in oe-core that still needs it (for manpages only). Signed-off-by: Alexander Kanavin --- meta/recipes-extended/iputils/iputils_s20151218.bb | 11 +++ 1 file changed, 3

[OE-core] [PATCH 08/23] pixz: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-extended/pixz/pixz_1.0.6.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/pixz/pixz_1.0.6.bb b/meta/recipes-extended/pixz/pixz_1.0.6.bb index 0e51472..3032586

[OE-core] [PATCH 18/23] libuser: do not depend on SGML stack

2016-10-17 Thread Alexander Kanavin
libuser tarballs already supply pre-generated html/txt outputs. Signed-off-by: Alexander Kanavin --- meta/recipes-extended/libuser/libuser_0.62.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/libuser/libuser_0.62.bb

[OE-core] [PATCH 16/23] pulseaudio: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/pulseaudio/pulseaudio.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc

[OE-core] [PATCH 15/23] alsa-utils: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
'xmlto' package feature is renamed to 'manpages' for consistency with other manpage-enabled recipes. Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/alsa/alsa-utils_1.1.2.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH 12/23] libdrm: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-graphics/drm/libdrm_2.4.70.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-graphics/drm/libdrm_2.4.70.bb b/meta/recipes-graphics/drm/libdrm_2.4.70.bb index

[OE-core] [PATCH 11/23] libsecret: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/libsecret/libsecret_0.18.5.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-gnome/libsecret/libsecret_0.18.5.bb b/meta/recipes-gnome/libsecret/libsecret_0.18.5.bb

[OE-core] [PATCH 14/23] lttng: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-kernel/lttng/lttng-tools_git.bb | 4 ++-- meta/recipes-kernel/lttng/lttng-ust_git.bb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-kernel/lttng/lttng-tools_git.bb

Re: [OE-core] [PATCH 3/9] selftest: skip test_read_only_image on poky-tiny distro

2016-10-17 Thread Leonardo Sandoval
On 10/17/2016 06:48 AM, Burton, Ross wrote: On 14 October 2016 at 17:40, > wrote: + if self.distro == 'poky-tiny': +self.skipTest('core-image-sato is not buildable with

[OE-core] [PATCH 07/23] systemd: enable building of manpages if api-documentation feature is in distro features

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-core/systemd/systemd_230.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/systemd/systemd_230.bb b/meta/recipes-core/systemd/systemd_230.bb index a949fe8..f675036 100644

[OE-core] [PATCH 06/23] glib: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-core/glib-2.0/glib.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index 906e0d4..07d8734 100644 ---

[OE-core] [PATCH 05/23] avahi: enable manpages

2016-10-17 Thread Alexander Kanavin
They come prebuilt and don't require any dependencies, so there is no penalty in enabling them. Signed-off-by: Alexander Kanavin --- meta/recipes-connectivity/avahi/avahi.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 04/23] systemd-boot: add a comment about manpages being disabled

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-bsp/systemd-boot/systemd-boot.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-bsp/systemd-boot/systemd-boot.bb b/meta/recipes-bsp/systemd-boot/systemd-boot.bb index 5b1164e..7036664 100644

[OE-core] [PATCH 02/23] gummiboot: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-bsp/gummiboot/gummiboot_git.bb | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/recipes-bsp/gummiboot/gummiboot_git.bb b/meta/recipes-bsp/gummiboot/gummiboot_git.bb index

[OE-core] [PATCH 03/23] pm-utils: enable optional building of manpages

2016-10-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb b/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb index

[OE-core] [PATCH 01/23] manpages.bbclass: add a class

2016-10-17 Thread Alexander Kanavin
This class enables 'manpages' feature in packages if 'api-documentation' is in distro features. This ensures that manpages are always built and installed when API documentation feature is enabled. Signed-off-by: Alexander Kanavin ---

[OE-core] [PATCH 00/23] Enable manpages wherever possible; drop SGML stack

2016-10-17 Thread Alexander Kanavin
This patchset eanbles (conditional) building of manpages in various recipes; there's plenty more recipes where manpages are supplied pre-built, for them nothing needs to be done. These changes enable better support for API documentation in Yocto SDKs

Re: [OE-core] [PATCH 4/9] selftest: skip some devtool tests when distro is poky-tiny due to missing libx11

2016-10-17 Thread Leonardo Sandoval
On 10/17/2016 06:42 AM, Burton, Ross wrote: On 14 October 2016 at 17:40, > wrote: def test_devtool_add_fetch_git(self): -# Fetch source +if self.distro ==

Re: [OE-core] The future of qemuarm

2016-10-17 Thread Bruce Ashfield
On Mon, Oct 17, 2016 at 7:18 AM, Pascal Bach wrote: > Hi > > I read several discussions about lifting the default qemuarm target to > armv7 or higher. > On the mailinglist and on the internet I also found several mentions about > machines qemuarmv7 and qemuarma8, but I

Re: [OE-core] [PATCH] wic: add --reserved-size wks option

2016-10-17 Thread Maciej Borzęcki
On Mon, Oct 17, 2016 at 3:22 PM, Ed Bartosh wrote: > Hi Maciej, > > There is already --size and --extra-space options. > Can we get the same or similar result by just using them? Do we really > need new option for similar purpose? --reserved-size serves a different

Re: [OE-core] The future of qemuarm

2016-10-17 Thread Pascal Bach
> > Is the goal to increase the default to a higher arm version? > > Is there a bsp layer for other qemuarm variants (cortex-a8, ...)? > > > There is a qemuarm64 in master which is aarch64 based. > I'm aware of qemuarm64 but I was more talking about 32-bit arm. Pascal --

Re: [OE-core] [PATCH 1/9] selftest: set correct linux-yocto recipe when distro is poky-tiny

2016-10-17 Thread Leonardo Sandoval
On 10/17/2016 06:30 AM, Burton, Ross wrote: On 14 October 2016 at 17:40, > wrote: result = runCmd('bitbake-layers show-recipes -i kernel') -self.assertIn('linux-yocto:',

Re: [OE-core] [PATCH][master][krogoth] archiver: fix gcc-source handling

2016-10-17 Thread Saul Wold
This has been merged to master ping for Krogoth Sau! On Mon, 2016-10-10 at 11:32 -0700, Saul Wold wrote: > The source archiver was not handling the gcc-source target correctly, > since it uses the > work-shared directory, we don't want to unpack and patch it twice, > just as the comments > say,

Re: [OE-core] SERIAL_CONSOLE versus SERIAL_CONSOLES?

2016-10-17 Thread Robert P. J. Day
On Mon, 17 Oct 2016, Phil Blundell wrote: > On Mon, 2016-10-17 at 07:57 -0400, Robert P. J. Day wrote: > > >   so is it a fair statement that, pedantically, i might as well just > > define everything in terms of SERIAL_CONSOLES and think that way? > > > > Yes. SERIAL_CONSOLE predates

Re: [OE-core] SERIAL_CONSOLE versus SERIAL_CONSOLES?

2016-10-17 Thread Phil Blundell
On Mon, 2016-10-17 at 07:57 -0400, Robert P. J. Day wrote: >   so is it a fair statement that, pedantically, i might as well just > define everything in terms of SERIAL_CONSOLES and think that way? > Yes.  SERIAL_CONSOLE predates SERIAL_CONSOLES and remains supported in the configuration for

Re: [OE-core] [PATCH] wic: add --reserved-size wks option

2016-10-17 Thread Ed Bartosh
Hi Maciej, There is already --size and --extra-space options. Can we get the same or similar result by just using them? Do we really need new option for similar purpose? On Mon, Oct 17, 2016 at 03:06:18PM +0200, Maciej Borzecki wrote: > Added new option --reserved-size to wks. The option can be

Re: [OE-core] [PATCH] gcc-sanitizers: allow empty for lsan and tsan packages

2016-10-17 Thread Khem Raj
Sent from my iPad > On Oct 16, 2016, at 10:52 PM, Kang Kai wrote: > >> On 2016年10月14日 17:32, Khem Raj wrote: >>> On Fri, Oct 14, 2016 at 11:02 AM, Kang Kai wrote: >>> On 2016年10月13日 22:59, Burton, Ross wrote: >>> >>> On 13 October 2016

Re: [OE-core] [PATCH 1/1] systemd: avoid boot failures for mips64

2016-10-17 Thread Khem Raj
> On Oct 16, 2016, at 11:25 PM, ChenQi wrote: > >> On 10/17/2016 07:03 AM, Khem Raj wrote: >>> On Sun, Oct 9, 2016 at 2:23 AM, Chen Qi wrote: >>> If we start a systemd based qemumips64 target with 'pam' enabled in >>> DISTRO_FEATURES, we could not

[OE-core] [PATCH] wic: add --reserved-size wks option

2016-10-17 Thread Maciej Borzecki
Added new option --reserved-size to wks. The option can be used to indicate how much space should be reserved for a partition. This is useful if the disk will be a subject to full filesystem image updates and puts an upper limit of the size of filesystem images. The actual filesystem image may be

Re: [OE-core] [V2][PATCH] mklibs-native: update broken SRC_URI

2016-10-17 Thread Alexander Kanavin
On 10/07/2016 07:13 PM, Armin Kuster wrote: -SRC_URI = "http://ftp.de.debian.org/debian/pool/main/m/mklibs/${BPN}_${PV}.tar.xz \ +SRC_URI = "http://snapshot.debian.org/archive/debian/20160207T221625Z/pool/main/m/${BPN}/${BPN}_${PV}.tar.xz \ This breaks the upstream version check. Please

[OE-core] SERIAL_CONSOLE versus SERIAL_CONSOLES?

2016-10-17 Thread Robert P. J. Day
i am well aware that if one wants to define a single serial console, then using the SERIAL_CONSOLE variable will work just fine, as in: SERIAL_CONSOLE ?= "115200 ttyS0" and if you want to define multiple possible consoles, use: SERIAL_CONSOLES = "115200;ttyAMA0 115200;ttyAMA1" however, i

Re: [OE-core] [PATCH 3/9] selftest: skip test_read_only_image on poky-tiny distro

2016-10-17 Thread Burton, Ross
On 14 October 2016 at 17:40, wrote: > +if self.distro == 'poky-tiny': > +self.skipTest('core-image-sato is not buildable with > poky-tiny') > DISTRO_FEATURE check - sato needs opengl x11 so this is the actual blocker. For a

Re: [OE-core] [PATCH 5/9] selftest: skip those imagefeatures tests not relevant for certain distros

2016-10-17 Thread Burton, Ross
On 14 October 2016 at 17:40, wrote: > # Build a core-image-clutter > -bitbake('core-image-clutter') > +image = 'core-image-clutter' > +supported_distros = ['poky', 'poky-lsb'] > +if not self.distro in

Re: [OE-core] The future of qemuarm

2016-10-17 Thread Burton, Ross
On 17 October 2016 at 12:18, Pascal Bach wrote: > I read several discussions about lifting the default qemuarm target to > armv7 or higher. > On the mailinglist and on the internet I also found several mentions about > machines qemuarmv7 and qemuarma8, but I didn't find

Re: [OE-core] [PATCH 6/9] selftest: skip test_recipetool_create_git on poky-tiny distro

2016-10-17 Thread Burton, Ross
On 14 October 2016 at 17:40, wrote: > +if self.distro == 'poky-tiny': > +self.skipTest('Test not possible with poky-tiny because it > requires a libx11 provider') > Same as the other one - change the test to use a recipe that

Re: [OE-core] [PATCH 4/9] selftest: skip some devtool tests when distro is poky-tiny due to missing libx11

2016-10-17 Thread Burton, Ross
On 14 October 2016 at 17:40, wrote: > def test_devtool_add_fetch_git(self): > -# Fetch source > +if self.distro == 'poky-tiny': > +self.skipTest('libmatchbox2 is not buildable with poky-tiny > because it requires a

Re: [OE-core] [PATCH 1/9] selftest: set correct linux-yocto recipe when distro is poky-tiny

2016-10-17 Thread Burton, Ross
On 14 October 2016 at 17:40, wrote: > result = runCmd('bitbake-layers show-recipes -i kernel') > -self.assertIn('linux-yocto:', result.output) > +linux_yocto = 'linux-yocto-tiny' if distro == 'poky-tiny' else > 'linux-yocto' >

[OE-core] The future of qemuarm

2016-10-17 Thread Pascal Bach
Hi I read several discussions about lifting the default qemuarm target to armv7 or higher. On the mailinglist and on the internet I also found several mentions about machines qemuarmv7 and qemuarma8, but I didn't find any working machine configs for them. What are the planes here? Is the

Re: [OE-core] [PATCH] ltp: 20160126 -> 20160920

2016-10-17 Thread Robert Yang
Hi Maohui, Oe-core will release morty branch recently, so the package upgrades is pending atm. // Robert On 10/17/2016 05:05 PM, Lei, Maohui wrote: Ping. -Original Message- From: openembedded-core-boun...@lists.openembedded.org

Re: [OE-core] [PATCH] ltp: 20160126 -> 20160920

2016-10-17 Thread Lei, Maohui
Ping. > -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Wang Xin > Sent: Monday, September 26, 2016 4:18 PM > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH]

[OE-core] [PATCH] combo-layer: handle ambiguous git arguments

2016-10-17 Thread Olaf Mandel
If a branch/src-repository has the same name as a file/directory, git since 1.4.0(?) gives an error like the one below: ambiguous argument 'bitbake': both revision and filename Use '--' to separate paths from revisions, like this: 'git [...] -- [...]' Add two dashes to make the intent clear.

[OE-core] [PATCH] combo-layer: fix crashes on wrong tempfile usage

2016-10-17 Thread Olaf Mandel
When calling tempfile.NamedTemporaryFile().write(str()), at least on Python 3.4.2 this fails with this error: TypeError: 'str' does not support the buffer interface Change the file-mode for all such files from binary to text mode. Signed-off-by: Olaf Mandel ---

Re: [OE-core] [PATCH 7/9] selftest: skip runtime-test's test_testimage_install on poky-tiny distro

2016-10-17 Thread Joshua Lock
On Fri, 2016-10-14 at 11:40 -0500, leonardo.sandoval.gonza...@linux.intel.com wrote: > From: Leonardo Sandoval > > Distro poky-tiny cannot build the core-image-full-cmdline image, so > skip the > test if this is the case. > > [YOCTO #8525] Wouldn't

Re: [OE-core] [PATCH 2/9] selftest: skip two bbtest tests depending on distro

2016-10-17 Thread Joshua Lock
On Fri, 2016-10-14 at 11:40 -0500, leonardo.sandoval.gonza...@linux.intel.com wrote: > From: Leonardo Sandoval > > There are two bbtests that just makes sense on certain distros: > test_bitbake_g cannot be done on poky-tiny and test_non_gplv3 > just

Re: [OE-core] [PATCH 1/1] systemd: avoid boot failures for mips64

2016-10-17 Thread ChenQi
On 10/17/2016 07:03 AM, Khem Raj wrote: On Sun, Oct 9, 2016 at 2:23 AM, Chen Qi wrote: If we start a systemd based qemumips64 target with 'pam' enabled in DISTRO_FEATURES, we could not login in successfully. After you provide username and password to the login prompt,