Re: [OE-core] How to move a recipe to another directory without invalidating its sstate-cache?

2015-12-17 Thread Mike Looijmans
On 16-12-15 14:33, Richard Purdie wrote: On Wed, 2015-12-16 at 14:18 +0100, Mike Looijmans wrote: On 16-12-15 13:35, Richard Purdie wrote: On Wed, 2015-12-16 at 10:38 +0100, Mike Looijmans wrote: I renamed "recipes-some/foo/bar.bb" to "recipes -some/buzz/bar.bb" Rebuilding bar and its

Re: [OE-core] gobject introspection to oe-core

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 09:16, Chris Trobridge wrote: > I have successfully run my own python3 service, which uses python3 dbus > and GObject from gi.repository. > Thanks for the feedback, it's much appreciated. Ross --

[OE-core] [PATCH] xdg-utils: Do not build the in-script documentation

2015-12-17 Thread Jussi Kukkonen
Building the contents for "--manual" option requires a web browser or java. That's bonkers so let's not do it. [YOCTO #8823] Signed-off-by: Jussi Kukkonen --- .../0001-Don-t-build-the-in-script-manual.patch| 30 ++

Re: [OE-core] [PATCH 4/4] base-files: create typical merged /usr symlinks if the "merged-usr" distro feature is set

2015-12-17 Thread Matthias Schiffer
On 12/16/2015 08:46 PM, Roman Khimov wrote: > В письме от 16 декабря 2015 19:12:00 пользователь Matthias Schiffer написал: >> The following options in a distro configuration create a full Fedora-style >> merged /usr: >> >> DISTRO_FEATURES_DEFAULT += "merged-usr" >> base_bindir =

Re: [OE-core] [PATCH] wic/help.py: document that mountpoint is optional for part command

2015-12-17 Thread Ed Bartosh
Hi Joshua, Thank you for the patch! Acked-by: Ed Bartosh On Thu, Dec 17, 2015 at 12:02:28PM +, Joshua Lock wrote: > If no mountpoint is specified for a partition command the partition > will be created but not mounted — mention this in the kickstart > help text.

Re: [OE-core] [PATCH] wic/utils/partitionedfs.py: assemble .wic images as sparse files

2015-12-17 Thread Joshua Lock
Hi Ed, On 17/12/15 12:21, Ed Bartosh wrote: Thank you for the patch! I like the change. It's a first step towards supporting bmaptool, which is in my TODO list. No problem, I've been playing with bmaptool myself and that's what prompted the change. Would you be willing to write or modify

Re: [OE-core] [PATCH] wic/utils/partitionedfs.py: assemble .wic images as sparse files

2015-12-17 Thread Ed Bartosh
On Thu, Dec 17, 2015 at 01:19:47PM +, Joshua Lock wrote: > Hi Ed, > > On 17/12/15 12:21, Ed Bartosh wrote: > >Thank you for the patch! I like the change. It's a first step towards > >supporting bmaptool, which is in my TODO list. > > No problem, I've been playing with bmaptool myself and

[OE-core] [PATCH 5/7] buildstats: Improve to add getrusage data and corrected IO stats

2015-12-17 Thread Richard Purdie
Add IO stats and getrusage() data to the task statistics. We also drop the CPU percentage calculation since its pretty arbitrary and not very accurate/useful. In particular we can now see the user and sys times as well as the wall clock times. Signed-off-by: Richard Purdie

[OE-core] [PATCH 4/7] buildstats: Separate out the build and task data to allow improvements

2015-12-17 Thread Richard Purdie
The combined build and task data code makes changing things hard, separate out the functions so that changes can be made to the task data whilst the build data remains unchanged. Signed-off-by: Richard Purdie diff --git a/meta/classes/buildstats.bbclass

Re: [OE-core] How to move a recipe to another directory without invalidating its sstate-cache?

2015-12-17 Thread Mike Looijmans
On 17-12-15 07:24, Mike Looijmans wrote: On 16-12-15 14:33, Richard Purdie wrote: On Wed, 2015-12-16 at 14:18 +0100, Mike Looijmans wrote: On 16-12-15 13:35, Richard Purdie wrote: On Wed, 2015-12-16 at 10:38 +0100, Mike Looijmans wrote: I renamed "recipes-some/foo/bar.bb" to "recipes

Re: [OE-core] [PATCHv3 1/2] scripts/oe-selftest: Allow to run tests on random/all architecture

2015-12-17 Thread Istrate, Daniel AlexandruX
Added warning message for tests that override MACHINE previously set by --arch option. 16:40:46 [daniel@fedora-ws poky-build]$ oe-selftest --run-tests-by name test_all_users_can_connect_via_ssh_without_password --arch random 2015-12-17 16:40:55,256 - selftest - INFO - Running bitbake -e to get

Re: [OE-core] [PATCHv3 1/2] scripts/oe-selftest: Allow to run tests on random/all architecture

2015-12-17 Thread Richard Purdie
On Thu, 2015-12-17 at 16:38 +0200, Daniel Istrate wrote: > Add an option for random arch into oe-selftest: > --arch [random/all] > 1. random: will set a random MACHINE for each test > 2. all: will run tests for all architectures > > Custom arch sets only weak default values (??=) for MACHINE in >

[OE-core] [PATCH 1/7] buildstats: Drop disk data from buildstats

2015-12-17 Thread Richard Purdie
The existing diskstats data from buildstats simply isn't useful. It gives stats on the total IO counts on some random disk within the system. This means that the count includes data from all other tasks running at the same time and from any other process running on the system. I've been unable to

[OE-core] [PATCH 2/7] buildstats: Drop get_bn/set_pn and just use BUILDNAME

2015-12-17 Thread Richard Purdie
The current setting and getting of the "name" to use for buildstats is convoluted and not particularly interesting. We only need this for the e.getPkgs()[0] component of the path which is the first target listed on the commandline. This is pretty arbitrary. If we drop that piece, we can assume

[OE-core] [PATCH 3/7] buildstats: Clean up e.data and bb.data references

2015-12-17 Thread Richard Purdie
Rather than bb.data and e.data, cleanup to use 'd' and match the standard coding style. Signed-off-by: Richard Purdie diff --git a/meta/classes/buildstats.bbclass b/meta/classes/buildstats.bbclass index 73e0b2a..4fa6981 100644 ---

[OE-core] [PATCH 7/7] buildinfohelper: Update for buildstats layout change

2015-12-17 Thread Richard Purdie
This updates buildinfo helper for the recent buildstats layout change Signed-off-by: Richard Purdie diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index 04ce23a..279c5c7 100644 ---

[OE-core] [PATCH] combo-layer: Stop using filterdiff

2015-12-17 Thread Richard Purdie
I ran into an issue where a patch just deleting a single file within the repository (meta/recipes-devtools/m4/m4/make.patch) would get skipped by combo-layer. It turns out this has the patch header (commented to avoid breaking scripts): : diff --git a/meta/recipes-devtools/m4/m4/make.patch

[OE-core] [PATCHv3 2/2] selftest: Added MACHINE = "qemux86" to tests that use runqemu

2015-12-17 Thread Daniel Istrate
It makes sense for tests that use runqemu to have MACHINE set as qemu. This also avoid issues when running oe-selftest with --arch random/all option. Signed-off-by: Daniel Istrate --- meta/lib/oeqa/selftest/devtool.py | 7 ---

[OE-core] OE Changelog since 2015-12-06 until 2015-12-13

2015-12-17 Thread cliff . brake
Changelog since 2015-12-06 until 2015-12-13. Projects included in this report: bitbake: git://git.openembedded.org/bitbake openembedded-core: git://git.openembedded.org/openembedded-core meta-openembedded: git://git.openembedded.org/meta-openembedded meta-angstrom:

[OE-core] [PATCH 6/7] toaster: Update for buildstats changes

2015-12-17 Thread Richard Purdie
This updates the toaster class to use the new data format from buildstats. This does mean it will no longer read IO data from older builds, however since that data is completely useless anyway, I don't consider that to be an issue. Signed-off-by: Richard Purdie

Re: [OE-core] [PATCH] wic/utils/partitionedfs.py: assemble .wic images as sparse files

2015-12-17 Thread Ed Bartosh
Hi Joshua, Thank you for the patch! I like the change. It's a first step towards supporting bmaptool, which is in my TODO list. Would you be willing to write or modify wic test case to test this? On Wed, Dec 16, 2015 at 04:33:13PM +, Joshua Lock wrote: > The individual partitions created by

[OE-core] [PATCHv3 1/2] scripts/oe-selftest: Allow to run tests on random/all architecture

2015-12-17 Thread Daniel Istrate
Add an option for random arch into oe-selftest: --arch [random/all] 1. random: will set a random MACHINE for each test 2. all: will run tests for all architectures Custom arch sets only weak default values (??=) for MACHINE in local.conf. This let test cases that require a specific MACHINE to be

Re: [OE-core] [PATCH] wic/utils/partitionedfs.py: assemble .wic images as sparse files

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 13:19, Joshua Lock wrote: > I see meta/lib/oeqa/selftest/wic.py has a bunch of functions with > @testcase decorators but I'm not familiar with how this should all fit > together. > @testcase is just to map from test functions to testopia

[OE-core] [PATCH] oeqa/selftest/wic: add test case for sparse images

2015-12-17 Thread Joshua Lock
Add a testcase to build a directdisk image and check that the used disk size is less than the apparent size, as wic now assembles images as sparse files. Signed-off-by: Joshua Lock --- meta/lib/oeqa/selftest/wic.py | 12 1 file changed, 12 insertions(+)

Re: [OE-core] [dizzy] [PATCH 1/1] glibc: use patch for CVE-2015-1781

2015-12-17 Thread akuster808
merged to staging g...@git.yoctoproject.org/poky-contrib.git akuster/dizzy-next thanks Armin On 11/26/2015 06:15 PM, Tudor Florea wrote: > Patch added to the repo wasn't actually considered due to a > erronously way of specifying the sources. > > Signed-off-by: Tudor Florea

Re: [OE-core] [PATCH] oeqa/selftest/wic: add test case for sparse images

2015-12-17 Thread Joshua Lock
On 17/12/15 16:21, Burton, Ross wrote: On 17 December 2015 at 16:09, Joshua Lock > wrote: +used = int(runCmd("du %s | awk '{print $1}'" % path).output) +apparent = int(runCmd("du --apparent-size %s | awk

[OE-core] [PATCH 14/17] iso-codes: update to 3.63

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../iso-codes/{iso-codes_3.58.bb => iso-codes_3.63.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/iso-codes/{iso-codes_3.58.bb => iso-codes_3.63.bb} (76%) diff

[OE-core] [PATCH 11/17] lighttpd: update to 1.4.38

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../lighttpd/{lighttpd_1.4.36.bb => lighttpd_1.4.38.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/lighttpd/{lighttpd_1.4.36.bb => lighttpd_1.4.38.bb} (94%) diff

[OE-core] [PATCH 10/17] tiff: update to 4.0.6

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/libtiff/{tiff_4.0.4.bb => tiff_4.0.6.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/libtiff/{tiff_4.0.4.bb => tiff_4.0.6.bb} (92%) diff --git

[OE-core] [PATCH 17/17] mobile-broadband-provider-info: update to tagged release 20151214

2015-12-17 Thread Alexander Kanavin
After three years, there is finally a tagged release, so let's start using those instead of updating to latest commit periodically. Signed-off-by: Alexander Kanavin --- .../mobile-broadband-provider-info_git.bb | 4 ++-- 1 file

[OE-core] [PATCH 12/17] kexec-tools: update to 2.0.11

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../kexec/{kexec-tools_2.0.10.bb => kexec-tools_2.0.11.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-kernel/kexec/{kexec-tools_2.0.10.bb => kexec-tools_2.0.11.bb} (87%) diff

[OE-core] [PATCH 13/17] nss: update to 3.21

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-support/nss/{nss_3.19.2.bb => nss_3.21.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-support/nss/{nss_3.19.2.bb => nss_3.21.bb} (97%) diff --git

[OE-core] [PATCH 16/17] icu: fix upstream version check

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-support/icu/icu_56.1.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-support/icu/icu_56.1.bb b/meta/recipes-support/icu/icu_56.1.bb index 90c93e8..db0de10 100644 ---

Re: [OE-core] [PATCHv2 1/2] scripts/oe-selftest: Allow to run tests on random/all architecture

2015-12-17 Thread Burton, Ross
On 16 December 2015 at 16:25, Daniel Istrate < daniel.alexandrux.istr...@intel.com> wrote: > +arch_list = ['qemuarm', 'qemuarm64', 'qemumips', > 'qemuppc', 'qemux86', 'qemux86-64', > + 'beaglebone', 'genericx86', 'genericx86-64', > 'mpc8315e-rdb',

[OE-core] [PATCH 03/17] ifupdown: update to 0.8.2

2015-12-17 Thread Alexander Kanavin
Switch upstream to git, as old versions can disappear from archive.ubuntu.com Signed-off-by: Alexander Kanavin --- .../ifupdown/{ifupdown_0.7.48.1.bb => ifupdown_0.8.2.bb} | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) rename

[OE-core] [PATCH 05/17] python3-pip: update to 7.1.2

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../python/{python3-pip_6.1.1.bb => python3-pip_7.1.2.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/python/{python3-pip_6.1.1.bb => python3-pip_7.1.2.bb} (90%) diff

[OE-core] [PATCH 09/17] libassuan: update to 2.4.2

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../libassuan/{libassuan_2.2.1.bb => libassuan_2.4.2.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/libassuan/{libassuan_2.2.1.bb => libassuan_2.4.2.bb} (86%) diff

[OE-core] [PATCH 02/17] gptfdisk: update to 1.0.1

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/fdisk/{gptfdisk_1.0.0.bb => gptfdisk_1.0.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/fdisk/{gptfdisk_1.0.0.bb => gptfdisk_1.0.1.bb} (86%) diff --git

[OE-core] [PATCH 08/17] msmtp: update to 1.6.3

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-extended/msmtp/{msmtp_1.6.2.bb => msmtp_1.6.3.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/msmtp/{msmtp_1.6.2.bb => msmtp_1.6.3.bb} (86%) diff --git

[OE-core] [PATCH 00/17] Recipe version updates

2015-12-17 Thread Alexander Kanavin
Here's another bunch of version updates; this time everything that is assigned to me has been updated (except the webkit/epiphany related recipes which will be handled separately). I also updated recipes that don't have a listed maintainer. The following changes since commit

[OE-core] [PATCH 04/17] pytnon-pexpect: update to 4.0.1

2015-12-17 Thread Alexander Kanavin
LICENSE checksum changed to an additional copyright attribution line Signed-off-by: Alexander Kanavin --- .../python/{python-pexpect_3.3.bb => python-pexpect_4.0.1.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename

[OE-core] [PATCH 07/17] liburcu: update to 0.9.1

2015-12-17 Thread Alexander Kanavin
Remove all patches: one of them is fixing a problem with gcc 4.8 that is no longer in use, and the other two are backports. LICENSE checksum has changed, but visually the text has stayed the same. Signed-off-by: Alexander Kanavin ---

[OE-core] [PATCH 06/17] trace-cmd: update to 2.6

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-kernel/trace-cmd/trace-cmd.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-kernel/trace-cmd/trace-cmd.inc b/meta/recipes-kernel/trace-cmd/trace-cmd.inc index

[OE-core] [PATCH 01/17] cryptodev: update to 1.8

2015-12-17 Thread Alexander Kanavin
Drop 0001-ioctl.c-Fix-build-on-3.19.patch and 0002-Fix-tests-Makefile-usage-of-LDLIBS-vs.-LDFLAGS.patch, the code has been fixed upstream. Signed-off-by: Alexander Kanavin --- ...yptodev-linux_1.7.bb => cryptodev-linux_1.8.bb} | 2 +- ...todev-module_1.7.bb

[OE-core] [PATCH 15/17] btrfs-tools: update to 4.3.1

2015-12-17 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../btrfs-tools/{btrfs-tools_4.1.2.bb => btrfs-tools_4.3.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_4.1.2.bb => btrfs-tools_4.3.1.bb} (94%)

Re: [OE-core] [PATCH] oeqa/selftest/wic: add test case for sparse images

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 16:09, Joshua Lock wrote: > +used = int(runCmd("du %s | awk '{print $1}'" % path).output) > +apparent = int(runCmd("du --apparent-size %s | awk '{print $1}'" > % path).output) > Surely os.stat() can do this instead? Ross --

Re: [OE-core] [PATCH][dizzy] openssl: CVE-2015-3194, CVE-2015-3195

2015-12-17 Thread akuster808
merged to staging. g...@git.yoctoproject.org/poky-contrib.git akuster/dizzy-next thanks, Armin On 12/14/2015 02:25 AM, Sona Sarmadi wrote: > Fixes following vulnerabilities: > Certificate verify crash with missing PSS parameter (CVE-2015-3194) > X509_ATTRIBUTE memory leak (CVE-2015-3195) > >

Re: [OE-core] [PATCH][dizzy 1/6] glibc/wscanf: CVE-2015-1472

2015-12-17 Thread akuster808
all in series merged to staging. g...@git.yoctoproject.org/poky-contrib.git akuster/dizzy-next thanks, Armin On 12/14/2015 04:24 AM, Sona Sarmadi wrote: > Fixes a heap buffer overflow in glibc wscanf. > > References: > https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-1472 >

[OE-core] [PATCH v2] opkg: upgrade to v0.3.1

2015-12-17 Thread Alejandro del Castillo
* Drop merged patches * Add patch to fix crash when using the libsolv backend * Add patch to add pkgconfig support for libsolv * Add libsolv support via a PACKAGECONFIG option. Signed-off-by: Alejandro del Castillo ---

[OE-core] [PATCH] qemu: upgrade to 2.5.0

2015-12-17 Thread Cristian Iorga
- cpus.c-qemu_mutex_lock_iothread-fix-race-condition-a.patch removed, included upstream; - smc91c111_fix*.patch patches removed, included upstream; - trace-remove-malloc-tracing.patch patch removed, included upstream; - some configure options disappeared or changed name, updated. Signed-off-by:

Re: [OE-core] Demos for FOSDEM 2016

2015-12-17 Thread Philip Balister
On 12/17/2015 05:43 AM, Barros Pena, Belen wrote: > Hi all, > > OpenEmbedded will have a huge 2-table stand at FOSDEM'16, which happens > January 30th and 31st in Brussels. > > We need to fill up those 2 tables with something, so this is a call for > demos. If you have something built with

Re: [OE-core] [PATCH] boost: update to 1.59.0

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 11:45, Lukas Bulwahn wrote: > Due to the version update, the two patches previously backported in > this recipe are now dropped. The actual status of the > arm-intrinsics.patch (reported with Upstream-Status: Backport) > is unknown to the

Re: [OE-core] [PATCH 5/6] systemd: Upgrade to 228

2015-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2015 at 12:42 PM, Burton, Ross wrote: > > On 17 December 2015 at 20:30, Andre McCurdy wrote: >> >> It looks like you have some unresolved merge conflict markers in >> 0015-Revert-udev-remove-userspace-firmware-loading-suppor.patch ? > >

Re: [OE-core] [PATCH 5/6] systemd: Upgrade to 228

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 20:30, Andre McCurdy wrote: > It looks like you have some unresolved merge conflict markers in > 0015-Revert-udev-remove-userspace-firmware-loading-suppor.patch ? > 0016, but yes, well spotted. Clearly nobody - myself included - reads the logs. This

Re: [OE-core] [PATCH 5/6] systemd: Upgrade to 228

2015-12-17 Thread Khem Raj
> On Dec 17, 2015, at 12:30 PM, Andre McCurdy wrote: > > On Sun, Dec 13, 2015 at 10:23 PM, Khem Raj wrote: >> Forward port all patches and format them to be git am'able >> Drop patches specific to uclibc's missing features which now >> are there in

Re: [OE-core] [PATCH 0/3] feature-arm-thumb.inc cleanups

2015-12-17 Thread Andre McCurdy
On Tue, Dec 8, 2015 at 5:09 PM, Andre McCurdy wrote: > Drop legacy interworking over-rides and cflags. Ping. Does anyone see any issues with these changes? > Andre McCurdy (3): > feature-arm-thumb.inc: drop ARM -vs- thumb comments > feature-arm-thumb.inc: drop legacy

[OE-core] [[PATCH v2] oeqa/selftest/wic: add test case for sparse images

2015-12-17 Thread Joshua Lock
Add a testcase to build a directdisk image and check that the used disk size is less than the apparent size, as wic now assembles images as sparse files. Signed-off-by: Joshua Lock --- meta/lib/oeqa/selftest/wic.py | 13 + 1 file changed, 13

Re: [OE-core] [PATCH 0/3] feature-arm-thumb.inc cleanups

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 20:18, Andre McCurdy wrote: > Ping. Does anyone see any issues with these changes? > Manage to mix those up with your more recent ARM fixes, both merged to my staging branch now. Thanks, Ross -- ___

Re: [OE-core] [PATCH 0/2] Debian multilib packaging fixes

2015-12-17 Thread Matt Madison
Anibal, After studying the Debian multi-arch wiki pages, I think I've figured out the right answer to this. Testing now, will send out a V2 patch series when done. -Matt On Wed, Dec 16, 2015 at 8:33 AM, Matt Madison wrote: > On Wed, Dec 16, 2015 at 7:50 AM, Aníbal Limón

[OE-core] [PATCH] systemd: remove merge conflicts accidently left in

2015-12-17 Thread Ross Burton
Signed-off-by: Ross Burton --- .../0016-Revert-udev-remove-userspace-firmware-loading-suppor.patch | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta/recipes-core/systemd/systemd/0016-Revert-udev-remove-userspace-firmware-loading-suppor.patch

[OE-core] [<OE-core][PATCH v2 4/4] packagegroup-core-x11-sato: Remove matchbox for XWayland case.

2015-12-17 Thread Tom Hochstein
Matchbox is redundant when Weston is run. Signed-off-by: Tom Hochstein --- meta/recipes-sato/packagegroups/packagegroup-core-x11-sato.bb | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git

[OE-core] [<OE-core][PATCH v2 2/4] weston: Include weston-launch if Wayland is configured.

2015-12-17 Thread Tom Hochstein
The weston-launch app is required for Wayland. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_1.8.0.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-graphics/wayland/weston_1.8.0.bb

Re: [OE-core] [PATCH] systemd: remove merge conflicts accidently left in

2015-12-17 Thread Khem Raj
> On Dec 17, 2015, at 12:57 PM, Ross Burton wrote: > thanks for fixing it. I was about to send a patch > Signed-off-by: Ross Burton > --- > .../0016-Revert-udev-remove-userspace-firmware-loading-suppor.patch | 5 + > 1 file changed, 1

Re: [OE-core] [PATCH] qemu: upgrade to 2.5.0

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 18:32, Cristian Iorga wrote: > - cpus.c-qemu_mutex_lock_iothread-fix-race-condition-a.patch removed, > included upstream; > - smc91c111_fix*.patch patches removed, included upstream; > - trace-remove-malloc-tracing.patch patch removed, included

[OE-core] [<OE-core][PATCH v2 1/4] weston-init: Handle Weston startup correctly.

2015-12-17 Thread Tom Hochstein
Weston is started in different ways depending on the image configuration and the runtime scenario. Refer to the weston man page for more information. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston-init.bb | 15 ++-

[OE-core] [<OE-core][PATCH v2 3/4] packagegroup-core-x11-base: Remove matchbox for XWayland case.

2015-12-17 Thread Tom Hochstein
Matchbox is redundant when Weston is run. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/packagegroups/packagegroup-core-x11-base.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git

Re: [OE-core] [PATCH 5/6] systemd: Upgrade to 228

2015-12-17 Thread Burton, Ross
On 17 December 2015 at 20:55, Khem Raj wrote: > Ugh yes. but they are harmless fortunately. I will send a refresh update > to fix it > Done already, don't worry. Ross -- ___ Openembedded-core mailing list

[OE-core] [PATCH] Fix connectivity check for BB_FETCH_PREMIRRORONLY case

2015-12-17 Thread dl9pf
From: Jan-Simon Möller BB_FETCH_PREMIRRORONLY sets BB_NO_NETWORK (implicitly in the fetcher). To avoid the sanity check to fail in an offline environment, use the same override mechanism as in the fetcher. Signed-off-by: Jan-Simon Möller ---

Re: [OE-core] [PATCH 3/4 v3] valgrind: don't restrict to armv7a

2015-12-17 Thread Khem Raj
> On Dec 17, 2015, at 9:56 PM, Andre McCurdy wrote: > > On Thu, Dec 17, 2015 at 9:17 PM, Khem Raj wrote: >> >>> On Dec 17, 2015, at 8:42 PM, Andre McCurdy wrote: >>> >>> Valgrind has been tested on armv5te/qemuarm, so it seems

Re: [OE-core] [PATCH 2/4 v3] security_flags.inc: disable -fstack-protector-XXX for valgrind

2015-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2015 at 9:16 PM, Khem Raj wrote: > >> On Dec 17, 2015, at 8:42 PM, Andre McCurdy wrote: >> >> Valgrind (v3.11.0) expects to build with stack protection disabled >> and includes -fno-stack-protector in its default CFLAGS. However, the >>

Re: [OE-core] [PATCH 3/4 v3] valgrind: don't restrict to armv7a

2015-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2015 at 10:00 PM, Khem Raj wrote: > >> On Dec 17, 2015, at 9:56 PM, Andre McCurdy wrote: >> >> On Thu, Dec 17, 2015 at 9:17 PM, Khem Raj wrote: >>> On Dec 17, 2015, at 8:42 PM, Andre McCurdy

Re: [OE-core] [PATCH 3/4 v3] valgrind: don't restrict to armv7a

2015-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2015 at 9:17 PM, Khem Raj wrote: > >> On Dec 17, 2015, at 8:42 PM, Andre McCurdy wrote: >> >> Valgrind has been tested on armv5te/qemuarm, so it seems >> that valgrind's configure check for armv7 is over cautious. >> >> Signed-off-by:

Re: [OE-core] [PATCH 2/4 v3] security_flags.inc: disable -fstack-protector-XXX for valgrind

2015-12-17 Thread Khem Raj
> On Dec 17, 2015, at 9:48 PM, Andre McCurdy wrote: > > On Thu, Dec 17, 2015 at 9:16 PM, Khem Raj wrote: >> >>> On Dec 17, 2015, at 8:42 PM, Andre McCurdy wrote: >>> >>> Valgrind (v3.11.0) expects to build with stack protection

[OE-core] gstreamer 1.6.2

2015-12-17 Thread Andre McCurdy
Hi all, Is anyone already working on updating gstreamer 1.6.1 -> 1.6.2 ? http://gstreamer.freedesktop.org/releases/1.6/ -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

[OE-core] korean/chinese keyboard layout support on yocto

2015-12-17 Thread Bryan
Hi, I am working on yocto poky-dizzy 1.7.1 and have developed some application on top of customized os image. I have a reqirement to support korean/chinese keyboard layout for application. I have added cross complied libraries for ibus-hangul pckages. Can somebody suggest me how can i add

[OE-core] Fwd: korean/chinese keyboard layout support on yocto

2015-12-17 Thread Bryan
-- Forwarded message -- From: "Bryan" Date: Dec 18, 2015 1:03 PM Subject: korean/chinese keyboard layout support on yocto To: Cc: Hi, > I am working on yocto poky-dizzy 1.7.1 and have developed some >

[OE-core] [PATCH] wic/help.py: document that mountpoint is optional for part command

2015-12-17 Thread Joshua Lock
If no mountpoint is specified for a partition command the partition will be created but not mounted — mention this in the kickstart help text. [YOCTO #8820] Signed-off-by: Joshua Lock --- scripts/lib/wic/help.py | 5 - 1 file changed, 4 insertions(+), 1

[OE-core] [PATCH] nativesdk-buildtools-perl-dummy: Bump PR

2015-12-17 Thread Richard Purdie
Recent changes to this recipe caused automated PR increments to break, regressing package feeds. The only way to recover is to bump PR, so do this centrally to fix anyone affected. Signed-off-by: Richard Purdie diff --git

Re: [OE-core] [PATCH][master][RESEND 14/15] arch-armv7ve: add tune include for armv7ve and use it from cortexa7 and cortexa15

2015-12-17 Thread Andre McCurdy
On Thu, Dec 10, 2015 at 5:48 AM, Martin Jansa wrote: > * be aware that this -march value is available only in gcc-4.9 and > newer: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57907 > * -mcpu=cortex15 and -mcpu=cortexa7 conflict with -march=armv7a > We either have

Re: [OE-core] [PATCH] archiver.bbclass: do checkout for kernel

2015-12-17 Thread Jian Liu
Hi Ross, I test this patch. I seem to have no relationship with my issue. This patch just optimizes some tasks. My problem seems to be gotten around by a patch 523e4f6a6913b64453579d27a02467e14f7df42e submitted by Bruce. "bareclone=1" is removed from SRC_URI. So kernel source is not a bare

[OE-core] [PATCH] boost: update to 1.59.0

2015-12-17 Thread Lukas Bulwahn
Due to the version update, the two patches previously backported in this recipe are now dropped. The actual status of the arm-intrinsics.patch (reported with Upstream-Status: Backport) is unknown to the committer, and hence, that patch is kept in the recipe, even if it is possibly not required

[OE-core] Demos for FOSDEM 2016

2015-12-17 Thread Barros Pena, Belen
Hi all, OpenEmbedded will have a huge 2-table stand at FOSDEM'16, which happens January 30th and 31st in Brussels. We need to fill up those 2 tables with something, so this is a call for demos. If you have something built with OpenEmbedded you'd like to show, let me know. Looking forward to

Re: [OE-core] [PATCH 4/4] base-files: create typical merged /usr symlinks if the "merged-usr" distro feature is set

2015-12-17 Thread Roman Khimov
В письме от 17 декабря 2015 10:47:28 пользователь Matthias Schiffer написал: > On 12/16/2015 08:46 PM, Roman Khimov wrote: > > В письме от 16 декабря 2015 19:12:00 пользователь Matthias Schiffer > > написал: > > Also, you probably want to add this symlinks to fs-perms.txt. I don't > > quite > >

Re: [OE-core] [PATCH 5/6] systemd: Upgrade to 228

2015-12-17 Thread Andre McCurdy
On Sun, Dec 13, 2015 at 10:23 PM, Khem Raj wrote: > Forward port all patches and format them to be git am'able > Drop patches specific to uclibc's missing features which now > are there in uclibc-ng It looks like you have some unresolved merge conflict markers in

[OE-core] [PATCH 1/4] valgrind: update to 3.11.0

2015-12-17 Thread Andre McCurdy
From: Alexander Kanavin LICENSE checksums are changed due to a change in FSF address, or copyright years update. Rebased patches: sepbuildfix.patch rebased to 0004-Fix-out-of-tree-builds.patch add-ptest.patch rebased to

[OE-core] [PATCH 4/4] valgrind: include aarch64 in COMPATIBLE_HOST

2015-12-17 Thread Andre McCurdy
Valgrind has supported aarch64 since v3.10.0. Signed-off-by: Andre McCurdy --- meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb

[OE-core] [PATCH 0/4 v2] valgrind: update to 3.11.0 + fixes

2015-12-17 Thread Andre McCurdy
Rebase Alexander's valgrind 3.11.0 update patch to current oe-core master (remove redunant FILES_${PN}-dbg line) plus fix additional issues. This time based on v2 of Alexander's 3.11.0 update patch... Alexander Kanavin (1): valgrind: update to 3.11.0 Andre McCurdy (3): security_flags.inc:

[OE-core] [PATCH 3/4] valgrind: make it explicit that valgrind supports armv7a and above

2015-12-17 Thread Andre McCurdy
Update comments etc and remove usage of the _armv7a over-ride. Signed-off-by: Andre McCurdy --- meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git

[OE-core] [PATCH 2/4] security_flags.inc: disable -fstack-protector-XXX for valgrind

2015-12-17 Thread Andre McCurdy
Valgrind (v3.11.0) expects to build with stack protection disabled and includes -fno-stack-protector in its default CFLAGS. However, the CFLAGS provided by OE are included on the compiler command line after the defaults so any -fstack-protector-all / -fstack-protector-strong option provided by

[OE-core] [PATCH 0/4] valgrind: update to 3.11.0 + fixes

2015-12-17 Thread Andre McCurdy
Rebase Alexander's valgrind 3.11.0 update patch to current oe-core master (remove redunant FILES_${PN}-dbg line) plus fix additional issues. Alexander Kanavin (1): valgrind: update to 3.11.0 Andre McCurdy (3): security_flags.inc: disable -fstack-protector-XXX for valgrind valgrind: make it

[OE-core] [PATCH 1/4 v2] valgrind: update to 3.11.0

2015-12-17 Thread Andre McCurdy
From: Alexander Kanavin LICENSE checksums are changed due to a change in FSF address, or copyright years update. Rebased patches: sepbuildfix.patch rebased to 0004-Fix-out-of-tree-builds.patch add-ptest.patch rebased to

[OE-core] [PATCH 4/4 v2] valgrind: include aarch64 in COMPATIBLE_HOST

2015-12-17 Thread Andre McCurdy
Valgrind has supported aarch64 since v3.10.0. Signed-off-by: Andre McCurdy --- meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb

[OE-core] [PATCH 3/4 v2] valgrind: make it explicit that valgrind supports armv7a and above

2015-12-17 Thread Andre McCurdy
Update comments etc and remove usage of the _armv7a over-ride. Signed-off-by: Andre McCurdy --- meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git

[OE-core] [PATCH 2/4 v2] security_flags.inc: disable -fstack-protector-XXX for valgrind

2015-12-17 Thread Andre McCurdy
Valgrind (v3.11.0) expects to build with stack protection disabled and includes -fno-stack-protector in its default CFLAGS. However, the CFLAGS provided by OE are included on the compiler command line after the defaults so any -fstack-protector-all / -fstack-protector-strong option provided by

Re: [OE-core] [PATCH 3/4 v2] valgrind: make it explicit that valgrind supports armv7a and above

2015-12-17 Thread Khem Raj
> On Dec 17, 2015, at 5:35 PM, Andre McCurdy wrote: > > Update comments etc and remove usage of the _armv7a over-ride. > > Signed-off-by: Andre McCurdy > --- > meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 13 ++--- > 1 file changed, 10

Re: [OE-core] [PATCH 3/4 v2] valgrind: make it explicit that valgrind supports armv7a and above

2015-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2015 at 8:14 PM, Khem Raj wrote: > >> On Dec 17, 2015, at 5:35 PM, Andre McCurdy wrote: >> >> Update comments etc and remove usage of the _armv7a over-ride. >> >> Signed-off-by: Andre McCurdy >> --- >>

[OE-core] [PATCH 0/4 v3] valgrind: update to 3.11.0 + fixes

2015-12-17 Thread Andre McCurdy
Rebase Alexander's valgrind 3.11.0 update patch to current oe-core master (remove redunant FILES_${PN}-dbg line) plus fix additional issues. This time based on v2 of Alexander's 3.11.0 update patch... Alexander Kanavin (1): valgrind: update to 3.11.0 Andre McCurdy (3): security_flags.inc:

[OE-core] [PATCH 2/4 v3] security_flags.inc: disable -fstack-protector-XXX for valgrind

2015-12-17 Thread Andre McCurdy
Valgrind (v3.11.0) expects to build with stack protection disabled and includes -fno-stack-protector in its default CFLAGS. However, the CFLAGS provided by OE are included on the compiler command line after the defaults so any -fstack-protector-all / -fstack-protector-strong option provided by

[OE-core] [PATCH 1/4 v3] valgrind: update to 3.11.0

2015-12-17 Thread Andre McCurdy
From: Alexander Kanavin LICENSE checksums are changed due to a change in FSF address, or copyright years update. Rebased patches: sepbuildfix.patch rebased to 0004-Fix-out-of-tree-builds.patch add-ptest.patch rebased to

[OE-core] [PATCH 4/4 v3] valgrind: include aarch64 in COMPATIBLE_HOST

2015-12-17 Thread Andre McCurdy
Valgrind has supported aarch64 since v3.10.0. Signed-off-by: Andre McCurdy --- meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb

  1   2   >