[OE-core] [PATCH] boost.inc: enable more verbose build logs

2016-02-24 Thread Andre McCurdy
The default build output is very terse. Add -d+2 (ie "Show commands as they are executed") to BJAM_OPTS to make the do_compile logs more informative. Also add -q (ie "Stop at first error") to BJAM_OPTS and fix typo in comments. Signed-off-by: Andre McCurdy ---

Re: [OE-core] python-setuptools fetch issues Was: [oe] [meta-python][PATCH 08/11] python-mock: update to 1.3.0

2016-02-24 Thread Burton, Ross
On 24 February 2016 at 16:20, Martin Jansa wrote: > distutils.errors.DistutilsError: Could not find suitable distribution for > Requirement.parse('pbr>=1.3') > Missing DEPENDS? Ross -- ___ Openembedded-core mailing list

[OE-core] [PATCH 1/4] gstreamer1.0-libav_git: add --ranlib option to LIBAV_EXTRA_CONFIGURE_COMMON_ARG

2016-02-24 Thread Andre McCurdy
The versioned gstreamer1.0-libav recipe includes --ranlib in LIBAV_EXTRA_CONFIGURE_COMMON_ARG, but the git recipe does not. It appears to be a historical mistake. Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_git.bb | 1 + 1 file

[OE-core] [PATCH 0/4] minor gstreamer recipe cleanups

2016-02-24 Thread Andre McCurdy
Andre McCurdy (4): gstreamer1.0-libav_git: add --ranlib option to LIBAV_EXTRA_CONFIGURE_COMMON_ARG gstreamer1.0-libav: move LIBAV_EXTRA_CONFIGURE_COMMON_ARG into .inc gstreamer1.0.inc: add explicit PACKAGECONFIG init gstreamer1.0-plugins-XXX: move inherit gettext into common .inc file

[OE-core] [PATCH 4/4] gstreamer1.0-plugins-XXX: move inherit gettext into common .inc file

2016-02-24 Thread Andre McCurdy
gstreamer1.0-plugins-base/good/bad/ugly.inc all independently inherit gettext. Move into the common gstreamer1.0-plugins.inc include file. Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc | 2 +-

[OE-core] [PATCH 3/4] gstreamer1.0.inc: add explicit PACKAGECONFIG init

2016-02-24 Thread Andre McCurdy
Although gstreamer1.0.inc doesn't currently set any default PACKAGECONFIG options, add explicit initialisation in order to match the style / structure of the other gstreamer1.0 recipes. Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/gstreamer/gstreamer1.0.inc | 2

[OE-core] [PATCH 2/4] gstreamer1.0-libav: move LIBAV_EXTRA_CONFIGURE_COMMON_ARG into .inc

2016-02-24 Thread Andre McCurdy
The LIBAV_EXTRA_CONFIGURE_COMMON_ARG definition is now common to both the git and the versioned gstreamer1.0-libav recipes, so move it into gstreamer1.0-libav.inc Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc | 7 +++

[OE-core] [PATCH] boost.inc: limit ARM_INSTRUCTION_SET over-rides to armv4/armv5

2016-02-24 Thread Andre McCurdy
The original over-ride dates back to 2009: http://git.openembedded.org/openembedded-core/commit/?id=43e94412c45b4b79485a64010c76d89b245bb235 There are no obvious issues seen now when building boost in thumb2 for Cortex A15. Signed-off-by: Andre McCurdy ---

Re: [OE-core] [PATCH 1/3] cve-check-tool: Add recipe

2016-02-24 Thread Burton, Ross
On 24 February 2016 at 15:27, wrote: > +python () { > +# If the cve-check class is inherited it is needed to populate the > +# CVE database before checking the CVEs for all recipes. > +pn = d.getVar("PN", True) > +if pn.endswith("-native") and

Re: [OE-core] [PATCHv2 4/4] oeqa/sdkext: Add sdk_update.SDKUpdateTest class.

2016-02-24 Thread Paul Eggleton
Hi Aníbal, On Mon, 22 Feb 2016 12:31:33 Aníbal Limón wrote: > From: Aníbal Limón > > The SDKUpdateTest class test devtool sdk-update mechanism inside > eSDK. > > The SDKUpdateTest class search for new sdk if not found uses > the main one then it publish the eSDK into

[OE-core] [PATCH] package: check inherit instead of PN to decide if a recipe is a packagegroup

2016-02-24 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/classes/package.bbclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 93b275c..ef80e50 100644 --- a/meta/classes/package.bbclass +++

[OE-core] [PATCH] uninative.bbclass: if the loader can't be found disable instead of failing

2016-02-24 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/classes/uninative.bbclass | 64 +- 1 file changed, 38 insertions(+), 26 deletions(-) diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 270c1b0..0ca59d0 100644 ---

[OE-core] [PATCH] uninative: use check_output instead of Popen directly

2016-02-24 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/classes/uninative.bbclass | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 7e225e6..270c1b0 100644 --- a/meta/classes/uninative.bbclass

[OE-core] [PATCH] lib/oe/qa: add explicit exception for 'file isn't an ELF'

2016-02-24 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/classes/insane.bbclass| 3 +-- meta/classes/uninative.bbclass | 2 +- meta/lib/oe/qa.py | 15 +-- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/meta/classes/insane.bbclass

[OE-core] [PATCH] db: use S/B more idiomatically

2016-02-24 Thread Ross Burton
Instead of setting S to a directory inside the tarball and B to another directory inside the tarball, use the default value of S and set AUTOTOOLS_SCRIPT_PATH to the right path to find configure. Rebase two patches to reflect the change of patch root. For some reason doing this results in the

[OE-core] [PATCH 1/3] cve-check-tool: Add recipe

2016-02-24 Thread mariano . lopez
From: Mariano Lopez cve-check-tool is a program to for checking public CVEs. This tool also seek to determine if a vulnerability has been addressed by a patch. The recipe also includes the do_populate_cve_db task that will populate the database used by the tool.

[OE-core] [PATCH 0/3] Add initial capability to check CVEs for recipes

2016-02-24 Thread mariano . lopez
From: Mariano Lopez This series add the cve-check-tool recipe, a tool used to identify potentially vulnerable software through version matching. It will check if a vulnerability has been addressed by a patch. Also add the new cve-check class that will add a task

[OE-core] [PATCH 3/3] cve-check.bbclass: Add class

2016-02-24 Thread mariano . lopez
From: Mariano Lopez This class adds a new task for all the recipes to use cve-check-tool in order to look for public CVEs affecting the packages generated. It is possible to use this class when building an image, building a recipe, or using the "world" or

[OE-core] [PATCH 2/3] cve-check-tool patch to allow select dir for the db

2016-02-24 Thread mariano . lopez
From: Mariano Lopez This patch allows to select the directory for the database used by cve-check-tool. [YOCTO #7515] Signed-off-by: Mariano Lopez --- .../change_logic_cve_get_file_parent.patch | 45 ++

[OE-core] [PATCH] populate_sdk_ext: Add images to SDK_INSTALL_TARGETS

2016-02-24 Thread Randy Witt
When running ext-sdk-prepare.py during sdk installation a check is done to make sure no tasks would run that aren't provided by the "leaf" recipes specified in SDK_INSTALL_TARGETS. However sometimes an image recipe can cause other images to be created such as an initramfs. So make sure those

Re: [OE-core] what is the priority of wildcarded .bbappend files?

2016-02-24 Thread Radzykewycz, T (Radzy)
On Wednesday, February 24, 2016 3:02 PM, Paul Eggleton said: > On Wed, 24 Feb 2016 22:59:13 Radzykewycz, T wrote: > > On Wednesday, February 24, 2016 2:52 PM, Paul Eggleton said: > > > On Wed, 24 Feb 2016 16:33:04 Robert P. J. Day wrote: > > > > Quoting

Re: [OE-core] what is the priority of wildcarded .bbappend files?

2016-02-24 Thread Paul Eggleton
On Wed, 24 Feb 2016 22:59:13 Radzykewycz, T wrote: > > > On Wednesday, February 24, 2016 2:52 PM, Paul Eggleton said: > > On Wed, 24 Feb 2016 16:33:04 Robert P. J. Day wrote: > > > Quoting Christopher Larson : > > > > All appends that

Re: [OE-core] what is the priority of wildcarded .bbappend files?

2016-02-24 Thread Radzykewycz, T (Radzy)
On Wednesday, February 24, 2016 2:52 PM, Paul Eggleton said: > On Wed, 24 Feb 2016 16:33:04 Robert P. J. Day wrote: > > Quoting Christopher Larson : > > > All appends that apply to a given recipe will be applied to that recipe. > > >

Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-24 Thread Andre McCurdy
On Wed, Feb 24, 2016 at 6:52 AM, Joshua Lock wrote: > --- > meta/recipes-extended/hardlink/hardlink_0.3.0.bb | 19 +++ > 1 file changed, 19 insertions(+) > create mode 100644 meta/recipes-extended/hardlink/hardlink_0.3.0.bb > > diff --git

Re: [OE-core] what is the priority of wildcarded .bbappend files?

2016-02-24 Thread Paul Eggleton
On Wed, 24 Feb 2016 16:33:04 Robert P. J. Day wrote: > Quoting Christopher Larson : > > All appends that apply to a given recipe will be applied to that recipe. > > Order is determined solely by layer priority. > >wait ... so *all* bbappend files that match a recipe will

[OE-core] [PATCH] glibc.inc: improve optimisation level sanity checking

2016-02-24 Thread Andre McCurdy
- Avoid code duplication to handle -O, -O1 and -Os cases - Consider the effective optimisation level only (avoids spurious warnings if multiple optimisation flags are present). - Prefix warnings with PN instead of hardcoding "glibc" (avoids confusing warnings since the test is also applied

Re: [OE-core] trying to summarize the flexibility in bbappend'ing to kernel recipes

2016-02-24 Thread Christopher Larson
A bbappend basically concatenates to the recipe in bitgbake, so it can do anything the recipe can do, within reason, so yes, use of filespath and overrides works the way it's always worked with recipes. On Wed, Feb 24, 2016 at 3:00 PM Robert P. J. Day wrote: >let's

Re: [OE-core] what is the priority of wildcarded .bbappend files?

2016-02-24 Thread Robert P. J. Day
Quoting Christopher Larson : All appends that apply to a given recipe will be applied to that recipe. Order is determined solely by layer priority. wait ... so *all* bbappend files that match a recipe will be applied? i'm embarrassed that i didn't know that, is that

[OE-core] Enabling tab completion on host gdb

2016-02-24 Thread Jonah Petri
Hello! Does anyone know why host gdb (as built into a yocto sdk) does not have working tab completion? If I type "break wr" and then press tab, it does nothing. However, if I type: (gdb) complete b wr b write b wr...@got.plt b write@plt b writer.h So, the completions are there, but something is

Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-24 Thread Burton, Ross
On 24 February 2016 at 14:52, Joshua Lock wrote: > +do_compile () { > + oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' BINDIR='${bindir}' > +} > + > +do_install () { > + oe_runmake install 'DESTDIR=${D}' 'PREFIX=${prefix}' > BINDIR='${bindir}' > +} >

Re: [OE-core] what is the priority of wildcarded .bbappend files?

2016-02-24 Thread Christopher Larson
All appends that apply to a given recipe will be applied to that recipe. Order is determined solely by layer priority. On Wed, Feb 24, 2016 at 1:38 PM Robert P. J. Day wrote: >didn't immediately see this in the documentation anywhere, so what would > happen in the

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Philip Balister
On 02/24/2016 02:51 PM, Paul Eggleton wrote: > On Wed, 24 Feb 2016 11:35:25 Philip Balister wrote: >> On 02/24/2016 11:06 AM, Trevor Woerner wrote: >>> Ideally the work done here and the work done on meta-swupdate[1] would >>> be somehow merged so people creating images/distros would only have to

[OE-core] what is the priority of wildcarded .bbappend files?

2016-02-24 Thread Robert P. J. Day
didn't immediately see this in the documentation anywhere, so what would happen in the following situation? say i have a layer that has three different versions of a recipe: * recipe-1.0.bb * recipe-1.1.bb * recipe-1.2.bb if i want, i can extend each one with a .bbappend file: *

[OE-core] [jethro][PATCH 1/1] os-release: put double-quotes around variable contents

2016-02-24 Thread Paul Eggleton
From: Craig McQueen This makes the resulting /etc/os-release file have valid shell assignment syntax. This makes it loadable by a shell script, using the 'source' command: source /etc/os-release (From OE-Core master rev:

[OE-core] [jethro][PATCH 0/1] One backport for jethro

2016-02-24 Thread Paul Eggleton
This is intended for after the imminent point release of course. The following changes since commit 0c702756dd0009c4112028fbf2479a346867b32c: build-appliance-image: Update to jethro head revision (2016-02-24 09:04:05 +) are available in the git repository at:

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Paul Eggleton
On Wed, 24 Feb 2016 11:35:25 Philip Balister wrote: > On 02/24/2016 11:06 AM, Trevor Woerner wrote: > > Ideally the work done here and the work done on meta-swupdate[1] would > > be somehow merged so people creating images/distros would only have to > > learn and integrate one software update

Re: [OE-core] [PATCH 0/2] libsoup-2.4: cleanup + disable libsoup-gnome by default

2016-02-24 Thread Andre McCurdy
On Wed, Feb 24, 2016 at 4:51 AM, Martin Jansa wrote: > On Thu, Feb 18, 2016 at 11:21:23AM -0800, Andre McCurdy wrote: >> Andre McCurdy (2): >> libsoup-2.4: minor formatting improvements >> libsoup-2.4: disable libsoup-gnome by default >> >>

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Patrick Ohly
On Wed, 2016-02-24 at 16:09 +, Lock, Joshua G wrote: > On Wed, 2016-02-24 at 16:37 +0100, Patrick Ohly wrote: > > Hello! > > > > I haven't had a chance to play with the actual code yet and I don't > > know > > yet when I'll be able to. Let me ask for some clarifications about > > the > >

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Maciej Borzecki
> Dnia 24 luty 2016 o 17:35 Philip Balister napisał(a): > > > On 02/24/2016 11:06 AM, Trevor Woerner wrote: > > Ideally the work done here and the work done on meta-swupdate[1] would > > be somehow merged so people creating images/distros would only have to > > learn and

[OE-core] [jethro][PATCH] bluez5: allow D-Bus to spawn obexd in systems without systemd

2016-02-24 Thread Javier Viguera
This includes a proper D-Bus service file for obexd in systems that do not support systemd. Signed-off-by: Javier Viguera --- meta/recipes-connectivity/bluez5/bluez5.inc| 1 + ...-obexd-without-systemd-in-the-user-sessio.patch | 63 ++ 2

[OE-core] [PATCH] bluez5: allow D-Bus to spawn obexd in systems without systemd

2016-02-24 Thread Javier Viguera
This includes a proper D-Bus service file for obexd in systems that do not support systemd. Signed-off-by: Javier Viguera --- meta/recipes-connectivity/bluez5/bluez5.inc| 1 + ...-obexd-without-systemd-in-the-user-sessio.patch | 63 ++ 2

Re: [OE-core] [PATCH 6/7] webkitgtk: update to 2.10.7

2016-02-24 Thread akuster808
On 02/24/2016 03:55 AM, Alexander Kanavin wrote: > On 02/16/2016 05:55 PM, akuster808 wrote: > >>> Yes, which means that jethro (which has 2.8.5) needs the same update. >> >> there is a bug open for that 8877. there are a huge number of CVE's that >> need fixing. > > I wrote a comment in that

Re: [OE-core] [PATCHv2 2/2] testimage.bbclass: reuse generic test suites

2016-02-24 Thread Benjamin Esquivel
On Tue, 2016-02-23 at 16:18 -0600, Alex Franco wrote: > I tested this with builds in my workstation and (local, internal) > autobuilder, where TEST_SUITES is *not* specified in local.conf, so > the > TEST_SUITES are taken from the DEFAULT_TEST_SUITES variable for each > image, which makes the

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Philip Balister
On 02/24/2016 11:06 AM, Trevor Woerner wrote: > Ideally the work done here and the work done on meta-swupdate[1] would > be somehow merged so people creating images/distros would only have to > learn and integrate one software update solution, instead of having to > evaluate and choose between the

Re: [OE-core] How to integrate third party application software to yocto image

2016-02-24 Thread Maxin B. John
Hi Winiston, On Wed, Feb 24, 2016 at 06:20:14PM +0530, winis...@futuraautomation.com wrote: > -- >Hi, > > I can build yocto image for arm based product like AM437x-evm using yocto > project. I want to add third party software(Navit) to my image. > > How can I add the third party software to

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Joshua G Lock
On Wed, 2016-02-24 at 16:37 +0100, Patrick Ohly wrote: > Hello! >  > I haven't had a chance to play with the actual code yet and I don't > know > yet when I'll be able to. Let me ask for some clarifications about > the > approach first anyway. >  > On Wed, 2016-02-24 at 14:52 +, Joshua Lock

[OE-core] python-setuptools fetch issues Was: [oe] [meta-python][PATCH 08/11] python-mock: update to 1.3.0

2016-02-24 Thread Martin Jansa
On Wed, Feb 24, 2016 at 02:04:13PM +0100, Martin Jansa wrote: > On Mon, Feb 22, 2016 at 08:35:02AM -0500, Derek Straka wrote: > > Signed-off-by: Derek Straka After fixing the download issue, I can see another error, which has the same root cause (various fetch failures from my

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Trevor Woerner
Ideally the work done here and the work done on meta-swupdate[1] would be somehow merged so people creating images/distros would only have to learn and integrate one software update solution, instead of having to evaluate and choose between the two (or more?). [1]

Re: [OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Patrick Ohly
Hello! I haven't had a chance to play with the actual code yet and I don't know yet when I'll be able to. Let me ask for some clarifications about the approach first anyway. On Wed, 2016-02-24 at 14:52 +, Joshua Lock wrote: > Approach: > An image that inherits the swupd-image bbclass will

[OE-core] [PATCH 10/10] os-release: sanitise VERSION_ID field

2016-02-24 Thread Joshua Lock
Per os-release(5) the VERSION_ID field should be: a lower-case string (mostly numeric, no spaces or other characters outside of 0-9, a-z, ".", "_" and "-") Do some string manipulation to try and ensure the VERSION_ID field we write is valid. Signed-off-by: Joshua Lock

[OE-core] [PATCH 09/10] swupd-client: enable native builds

2016-02-24 Thread Joshua Lock
This is useful for debugging swupd generated artefacts on the build host i.e. `swupd hashdump` Signed-off-by: Joshua Lock --- meta/recipes-devtools/swupd/swupd-client_2.87.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[OE-core] [PATCH 04/10] swupd-client: Add recipe

2016-02-24 Thread Joshua Lock
From: Mariano Lopez This commit adds the Clear Linux client updater. This is experimental and bleeding edge, including the comments on the recipe. Signed-off-by: Mariano Lopez Signed-off-by: Joshua Lock ---

[OE-core] [PATCH 06/10] swupd-image.bbclass: initial class to support swupd updater

2016-02-24 Thread Joshua Lock
This class takes care of generating appropriate inputs for the swupd-server to process, specifically the separate 'chroot'-like directory structures that swupd-server expects to represent bundles. It will then use swupd-server to process these 'chroot'-like directories into update artefacts that

[OE-core] [PATCH 07/10] oe-swupd-helpers: provide swupd-client required helper scripts and units

2016-02-24 Thread Joshua Lock
swup-client tries to call out to certain helper scripts during an update: * before the update clr_pre_update.sh is called * after the update systemdboot_updater.sh and kernel_updater.sh are called * the systemd update-triggers.target is restarted once the update is complete Clear Linux, the

[OE-core] [PATCH 01/10] rsync: add native variant

2016-02-24 Thread Joshua Lock
--- meta/recipes-devtools/rsync/rsync_3.1.2.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/rsync/rsync_3.1.2.bb b/meta/recipes-devtools/rsync/rsync_3.1.2.bb index 71c2045..7237f43 100644 --- a/meta/recipes-devtools/rsync/rsync_3.1.2.bb +++

[OE-core] [PATCH 08/10] swupd-client: RDEPENDS on oe-swupd-helpers

2016-02-24 Thread Joshua Lock
The oe-swupd-helpers package provides scripts and units that swupd-client calls before, during and after the update process. Signed-off-by: Joshua Lock --- meta/recipes-devtools/swupd/swupd-client_2.87.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff

[OE-core] [PATCH 05/10] swupdbundle: new class to generate virtual images for swupd-image

2016-02-24 Thread Joshua Lock
Our initial strategy to generate bundles for consumption by swupd is to generate images which contain the base image (os-core) plus the additional contents of the bundle, then prune out the core contents. By generating images in this manner we hope to accomodate packages which modify the rootfs

[OE-core] [PATCH 02/10] swupd-server: initial recipe 2.53

2016-02-24 Thread Joshua Lock
Include some patches to remove hard-coded state directory and backport some fixes. Signed-off-by: Joshua Lock --- ...S-to-take-the-state-data-dir-as-an-argume.patch | 782 + ...argv-helper-for-safer-calls-to-system-uti.patch | 133

[OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-24 Thread Joshua Lock
--- meta/recipes-extended/hardlink/hardlink_0.3.0.bb | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 meta/recipes-extended/hardlink/hardlink_0.3.0.bb diff --git a/meta/recipes-extended/hardlink/hardlink_0.3.0.bb b/meta/recipes-extended/hardlink/hardlink_0.3.0.bb

[OE-core] [PATCH 00/10] Integrate swupd software updater

2016-02-24 Thread Joshua Lock
This series provides an initial set of changes to enable integration of the swupd (https://clearlinux.org/features/software-update) software updater into an image. The changes are in the relatively early stages but I am hoping to land this work before the M3 feature freeze so that the 2.1 release

Re: [OE-core] [PATCH 1/7] ffmpeg: update to 2.8.6

2016-02-24 Thread Martin Jansa
On Wed, Feb 24, 2016 at 03:28:16PM +0200, Alexander Kanavin wrote: > On 02/24/2016 03:16 PM, Martin Jansa wrote: > > > The distro needs to set ARM_INSTRUCTION_SET to "thumb" in order to enable > > actually using this TUNE_FEATURE. > > > > With recent improvements in tune files you should clearly

Re: [OE-core] [PATCH 1/7] ffmpeg: update to 2.8.6

2016-02-24 Thread Alexander Kanavin
On 02/24/2016 03:16 PM, Martin Jansa wrote: The distro needs to set ARM_INSTRUCTION_SET to "thumb" in order to enable actually using this TUNE_FEATURE. With recent improvements in tune files you should clearly see that default qemuarm builds are using TUNE_PKGARCH without "t" in it which means

[OE-core] State of bitbake world, test-dependencies 2016-02-24

2016-02-24 Thread Martin Jansa
On Mon, Dec 14, 2015 at 08:03:47PM +0100, Martin Jansa wrote: > This time full build (testing all recipes available in "my world" - 2503 > recipes), it took record-breaking 25days to finish. > > Complete log: > http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.20151120_144802.log/ >

Re: [OE-core] [PATCH 1/7] ffmpeg: update to 2.8.6

2016-02-24 Thread Martin Jansa
On Wed, Feb 24, 2016 at 02:34:32PM +0200, Alexander Kanavin wrote: > On 02/24/2016 03:55 AM, Martin Jansa wrote: > > Fails to build for qemuarm when thumb is enabled. > > > > Why was: > > ARM_INSTRUCTION_SET = "arm" > > > > removed in > >

Re: [OE-core] [PATCH 0/2] libsoup-2.4: cleanup + disable libsoup-gnome by default

2016-02-24 Thread Martin Jansa
On Thu, Feb 18, 2016 at 11:21:23AM -0800, Andre McCurdy wrote: > Andre McCurdy (2): > libsoup-2.4: minor formatting improvements > libsoup-2.4: disable libsoup-gnome by default > > meta/recipes-support/libsoup/libsoup-2.4_2.52.2.bb | 20 +--- > 1 file changed, 9

[OE-core] How to integrate third party application software to yocto image

2016-02-24 Thread winiston
Hi, I can build yocto image for arm based product like AM437x-evm using yocto project. I want to add third party software(Navit) to my image. How can I add the third party software to my image ?. Can you provide me the steps to integrate third party software with yocto image ? Note: Navit is

Re: [OE-core] [PATCH 1/7] ffmpeg: update to 2.8.6

2016-02-24 Thread Alexander Kanavin
On 02/24/2016 03:55 AM, Martin Jansa wrote: Fails to build for qemuarm when thumb is enabled. Why was: ARM_INSTRUCTION_SET = "arm" removed in http://git.openembedded.org/openembedded-core/commit/?id=77dbf07293df15cd5473422abd678930d6277bb0 without checking if it works? That line has no

[OE-core] [PATCH v3 2/2] kernel: Make symbol link to vmlinuz in boot directory

2016-02-24 Thread zhe.he
From: He Zhe Rename do_kernel_link_vmlinux to do_kernel_link_images and make a symbol link to vmlinuz(if exists) for reference in arch/$arch/boot directory. Signen-off-by: He Zhe --- meta/classes/kernel.bbclass | 13 -

[OE-core] [PATCH v3 1/2] kernel: Add KERNEL_IMAGETYPES to build multi types kernel at one time

2016-02-24 Thread zhe.he
From: He Zhe Add KERNEL_IMAGETYPES to support building packaging and installing multi types of kernel images, such as zImage uImage, at one time. KERNEL_IMAGETYPE and KERNEL_ALT_IMAGETYPE work as before. Signed-off-by: He Zhe ---

[OE-core] [PATCH v3 0/2] Yocto Bug #6945

2016-02-24 Thread zhe.he
From: He Zhe v1 to v2: - Change KERNEL_OUTPUT to KERNEL_OUTPUT_DIR and update comments - Update related doc files - Replace all KERNEL_ALT_IMAGETYPEs with KERNEL_IMAGETYPES - Link built vmlinuz to boot directory for reference v2 to v3: - Merge existing

Re: [OE-core] [PATCH 6/7] webkitgtk: update to 2.10.7

2016-02-24 Thread Alexander Kanavin
On 02/16/2016 05:55 PM, akuster808 wrote: Yes, which means that jethro (which has 2.8.5) needs the same update. there is a bug open for that 8877. there are a huge number of CVE's that need fixing. I wrote a comment in that bug, but I think it bears repeating here: Please read this, it's a

Re: [OE-core] [PATCH] base.bbclass wipe ${S} before unpacking source

2016-02-24 Thread Markus Lehtonen
On Tue, 2016-02-23 at 18:23 +, Burton, Ross wrote: > > On 23 February 2016 at 18:01, Christopher Larson > wrote: > > db isn't the only recipe doing that. The fetcher unpack method > > knows where it's unpacking to, I think if anyone should be clearing > > out the

[OE-core] [PATCH 4/4] sanity.bbclass: remove conflict checking for image vm and live

2016-02-24 Thread Robert Yang
[YOCTO #9161] Signed-off-by: Robert Yang --- meta/classes/sanity.bbclass | 12 1 file changed, 12 deletions(-) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 466eb49..edf49da 100644 --- a/meta/classes/sanity.bbclass +++

[OE-core] [PATCH 3/4] syslinux.bbclass: make vm and live can be built together

2016-02-24 Thread Robert Yang
* The vm image(hdddirect, vmdk, qcow2, vdi) and live image (hddimg, iso) couldn't be built together because the following vars settings are conflicted: - SYSLINUX_ROOT (/dev/sda2 vs /dev/ram0) - LABELS (boot vs boot install) - INITRD (None vs live install) - SYSLINUX_CFG (see above)

[OE-core] [PATCH 2/4] boot-directdisk.bbclass: drop IS_VM chechking

2016-02-24 Thread Robert Yang
The IS_VM was used for making menus for vmdk, vdi and qcow2, except hddimg, there is no reason to not make menus for hddimg, so drop it. Signed-off-by: Robert Yang --- meta/classes/boot-directdisk.bbclass | 12 1 file changed, 4 insertions(+), 8

[OE-core] [PATCH 1/4] image-live/boot-directdisk.bbclass: remove AUTO_SYSLINUXCFG

2016-02-24 Thread Robert Yang
No one uses it. Signed-off-by: Robert Yang --- meta/classes/boot-directdisk.bbclass |1 - meta/classes/image-live.bbclass |1 - 2 files changed, 2 deletions(-) diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass

[OE-core] [PATCH 0/4] make vm + live images can build together

2016-02-24 Thread Robert Yang
Hello, These patches can make vm and live images build together, and also make the images easier to use. I'd like to combine the following classes if you are fine with it: * boot-directdisk.bbclass and image-vm.bbclass into image-vm.bbclass. They are used for making vm images. *

Re: [OE-core] [PATCH 1/1] useradd_base.bbclass: fix simultaneous with flock

2016-02-24 Thread Kang Kai
On 2016年02月24日 01:10, Burton, Ross wrote: On 23 February 2016 at 17:01, Burton, Ross > wrote: The *amazing* BB_VERBOSE_LOGS option (set to 1 in local.conf to get all shell scripts to do set -x) tells me this is due to missing