Re: [OE-core] [PATCH 2/6] gmp: Bring back version 4.2.1 (LGPL 2.1+)

2015-08-28 Thread Jussi Kukkonen
On 28 August 2015 at 10:44, Jussi Kukkonen wrote: > On 28 August 2015 at 09:03, Khem Raj wrote: > > > On Aug 27, 2015, at 6:05 AM, Jussi Kukkonen wrote: > > > > > > gmp 4.2.1 was removed in f181c6ce8b apparently accidentally: It > > > was not noticed that 4.2.1 is LGPL 2.1 (and not GPL) so provi

Re: [OE-core] [PATCH 2/2] oeqa/runtime/multilib: change test case to use glib-2.0-utils

2015-08-28 Thread Burton, Ross
On 29 August 2015 at 00:43, Ross Burton wrote: > Using connman-applet as a multilib test case seems quite heavy due to the > numerous dependencies it has, whereas the same test ("do binaries get > swapped > correctly") can be done with a lower-level library containing binaries, for > example glib

[OE-core] [PATCH] oeqa/runtime/multilib: fix and improve multilib test

2015-08-28 Thread Ross Burton
Replace the previous shell magic with a Python function to parse the readelf output, and fix the package names to include the lib32- prefix. [ YOCTO #8219 ] Signed-off-by: Ross Burton --- meta/lib/oeqa/runtime/multilib.py | 19 --- 1 file changed, 16 insertions(+), 3 deletions(-

[OE-core] [PATCH 2/2] oeqa/runtime/multilib: change test case to use glib-2.0-utils

2015-08-28 Thread Ross Burton
Using connman-applet as a multilib test case seems quite heavy due to the numerous dependencies it has, whereas the same test ("do binaries get swapped correctly") can be done with a lower-level library containing binaries, for example glib-2.0. Signed-off-by: Ross Burton --- meta/lib/oeqa/runti

[OE-core] [PATCH 1/2] oeqa/runtime/multilib: add test for libc

2015-08-28 Thread Ross Burton
Add a basic test to verify that /lib/libc.so.6 and /lib32/libc.so.6 have the right ELF class. Signed-off-by: Ross Burton --- meta/lib/oeqa/runtime/multilib.py | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runtime/multilib.py b/meta/lib/oeq

[OE-core] [PATCH] Fix mode +st on TMPDIR when creating it

2015-08-28 Thread Alex Franco
A sanity check fails when TMPDIR has setuid, setgid set. It was proposed to fix this on TMPDIR creation instead of failing with a sanity test only. This patch handles removal of those special bits (and additonally, the sticky bit) from BUILDDIR and TMPDIR when these directories are created. [YOCTO

[OE-core] [fido] Please backport commit

2015-08-28 Thread Bystricky, Juro
Hello Joshua, please backport the Yocto master commit (cherry-pick) 625e0ec8b5e5f1c39b3bfad0e6adfecaf957d689 :"glibc: Consider adding -Wno-error in cases when not using -O2" to Fido. This is needed in order to fix the Fido bug https://bugzilla.yoctoproject.org/show_bug.cgi?id=8214. Thanks Jur

Re: [OE-core] [RFC PATCH 1/2] android-tools: import android-tools from meta-smartphone into oe-core

2015-08-28 Thread Burton, Ross
On 26 August 2015 at 16:48, Nicolas Dechesne wrote: > The main idea is to keep only what is strictly needed for make_ext4fs tool. > Assuming that make_ext4fs is a tool to create an ext4 file system, what's the difference between that and our mke2fs which is used to create ext4 file systems? Ros

[OE-core] [PATCHv2 3/5] iw: obey our target path variables

2015-08-28 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- meta/recipes-connectivity/iw/iw_4.1.bb | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/iw/iw_4.1.bb b/meta/recipes-connectivity/iw/iw_4.1.bb index 556af2b..8e27862 100644 --- a/

[OE-core] [PATCHv2 5/5] packagegroup-base: pull in iw as well as wireless-tools

2015-08-28 Thread Christopher Larson
From: Christopher Larson As was discussed in the commit which adds iw: iw uses cfg80211/nl80211, which is the way of the future. wireless-tools uses WEXT, which uses ioctl, which is in deep maintenance mode. See http://wireless.kernel.org/en/developers/Documentation/Wireless-Extensions. Also htt

[OE-core] [PATCHv2 2/5] iw: inherit pkgconfig

2015-08-28 Thread Christopher Larson
From: Christopher Larson We want the dep on pkgconfig-native, not pkgconfig, and the convention is to inherit pkgconfig when running pkg-config at build time. Signed-off-by: Christopher Larson --- meta/recipes-connectivity/iw/iw_4.1.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)

[OE-core] [PATCHv2 4/5] iw: support and enable separate build dir

2015-08-28 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- .../iw/iw/separate-objdir.patch| 57 ++ meta/recipes-connectivity/iw/iw_4.1.bb | 4 ++ 2 files changed, 61 insertions(+) create mode 100644 meta/recipes-connectivity/iw/iw/separa

[OE-core] [PATCHv2 1/5] iw: add recipe from meta-networking

2015-08-28 Thread Christopher Larson
From: Christopher Larson iw uses cfg80211/nl80211, which is the way of the future. wireless-tools uses WEXT, which uses ioctl, which is in deep maintenance mode. See http://wireless.kernel.org/en/developers/Documentation/Wireless-Extensions. Also https://wireless.wiki.kernel.org/en/users/Document

[OE-core] [PATCHv2 0/5] Add 'iw' recipe and include in packagegroup-base

2015-08-28 Thread Christopher Larson
From: Christopher Larson iw uses cfg80211/nl80211, which is the way of the future. wireless-tools uses WEXT, which uses ioctl, which is in deep maintenance mode. See http://wireless.kernel.org/en/developers/Documentation/Wireless-Extensions. Also https://wireless.wiki.kernel.org/en/users/Document

[OE-core] [PATCH] qemu-native: Enable temporary debug info as default.

2015-08-28 Thread Aníbal Limón
We recently enable backtrace print rev[1] for address qemu_cpu_kick_thread() issue but without debug information isn't useful. [YOCTO #8143] [1] 73a876e4ff04ebbbcd3bde62efe02146ab601e25 Signed-off-by: Aníbal Limón --- meta/recipes-devtools/qemu/qemu.inc | 3 +++ 1 file changed, 3 insertions(+)

[OE-core] [PATCH 00/15] For Dizzy 1.7.3a v2

2015-08-28 Thread Armin Kuster
Rebased against Dizzy this time. Please consider this changes for Dizzy 1.7.3 The following changes since commit 137f52ac3a3cf6dc9eed27178c37e9ce235341d8: grub-efi: Add backslash lost from previous commit (2015-08-20 21:42:31 +0100) are available in the git repository at: git://git.yoctopr

Re: [OE-core] [PATCH 00/17] For Dizzy 1.7.3a

2015-08-28 Thread akuster808
Martin, I rebased against dizzy-next. It appears dizzy and dizzy-next are out of sync. I will rebase against dizzy. - armin On 08/28/2015 12:20 PM, Martin Jansa wrote: > On Fri, Aug 28, 2015 at 12:16:04PM -0700, Armin Kuster wrote: >> Please consider these addition changes for Dizzy 1.7.3 >> >

Re: [OE-core] [PATCH 00/17] For Dizzy 1.7.3a

2015-08-28 Thread Martin Jansa
On Fri, Aug 28, 2015 at 12:16:04PM -0700, Armin Kuster wrote: > Please consider these addition changes for Dizzy 1.7.3 > > The following changes since commit 86971b5d97645cdbf2e48c39f30afa7c44e81e81: > > oeqa/bbtests: Fix to ensure DL_DIR is set (2015-07-26 07:59:00 +) Some of these change

[OE-core] [PATCH 00/17] For Dizzy 1.7.3a

2015-08-28 Thread Armin Kuster
Please consider these addition changes for Dizzy 1.7.3 The following changes since commit 86971b5d97645cdbf2e48c39f30afa7c44e81e81: oeqa/bbtests: Fix to ensure DL_DIR is set (2015-07-26 07:59:00 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib akuster/d

Re: [OE-core] [PATCH 0/3] Empty-image functionality

2015-08-28 Thread Aníbal Limón
Acked-by: Aníbal Limón On 26/08/15 16:57, Alex Franco wrote: Enable creation of core-empty-image (a recipe that inherits image without any extra packages) or similar empty images, whether RPM, DEB or IPK packaging is selected. [YOCTO #7664] Alex Franco (3): Empty image: core-image-empty re

Re: [OE-core] [oe-commits] Armin Kuster : tzdata: update to 2015f

2015-08-28 Thread Martin Jansa
On Fri, Aug 14, 2015 at 07:31:22AM +, g...@git.openembedded.org wrote: > Module: openembedded-core.git > Branch: master > Commit: 4e0fb630d3bb0250ece6e2071ae49b2601ae3e57 > URL: > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=4e0fb630d3bb0250ece6e2071ae49b2601ae3e57 > > A

Re: [OE-core] [PATCH V3 3/3] runqemu: Define OECORE_MACHINE_SYSROOT on setup_sysroot

2015-08-28 Thread Patrick Ohly
On Fri, 2015-08-28 at 08:34 -0500, Leonardo Sandoval wrote: > Hi Patrick, > > I do not have much time for a V4 set of patches, but now with all your > input I can rework V3 patches on 2.1. What do you mean with "rework on on 2.1"? I have some other runqemu changes pending locally (support booti

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Otavio Salvador
On Fri, Aug 28, 2015 at 11:19 AM, Paul Eggleton wrote: > On Friday 28 August 2015 11:09:19 Otavio Salvador wrote: >> On Fri, Aug 28, 2015 at 11:00 AM, Paul Eggleton >> >> wrote: >> > On Friday 28 August 2015 10:55:41 Otavio Salvador wrote: >> >> On Fri, Aug 28, 2015 at 3:07 AM, Khem Raj wrote: >

Re: [OE-core] [PATCH 1/2][dizzy] license_class: fix license.manifest shows LICENSE field differently to recipe

2015-08-28 Thread akuster808
merged to staging thanks armin On 08/24/2015 10:12 AM, Aníbal Limón wrote: > Drop removal of [|&()*] operators in pkged_lic because this removal is only > needed to validate if license is collected. > > [YOCTO #6757] > > (From OE-Core rev: 57e5f74382d51f2a8df00e18b6008e3d2b44ad1a) > > Signed-o

Re: [OE-core] [PATCH][dizzy] qemu-slirp: CVE-2014-3640

2015-08-28 Thread akuster808
merged to staging thanks - armin On 08/25/2015 02:50 AM, Sona Sarmadi wrote: > Fixes NULL pointer deref in sosendto(). > > Reference: > http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-3640 > > Upstream patch: > http://git.qemu.org/?p=qemu.git;a=commit; > h=9a72433843d912a45046959b1953861

Re: [OE-core] [PATCH] gcc-source: exlude from world

2015-08-28 Thread Khem Raj
> On Aug 28, 2015, at 8:45 AM, Randy MacLeod > wrote: > > On 2015-08-27 11:27 PM, Khem Raj wrote: >> On Thu, Aug 27, 2015 at 8:17 PM, Randy MacLeod >> wrote: >>> >>> I've sent the parent email to fix >>> $ bitbake -c world. >>> I've confirmed that my change works for: >>> $ bitbake -c config

[OE-core] [PATCH] systemd: Increase devices timeout in QEMU machines to avoid failures on serial-getty

2015-08-28 Thread Aníbal Limón
Systemd serial-getty is failing because dev-tty ends with timeout, systemd uses a default timeout of 90 secs that it's reached on AB's production environment due to high I/O loads (nfs). When use QEMU is used without KVM support, the machine code is executed by TCG (software code execution) that

[OE-core] [RFC][PATCH] pulseaudio: improve PACKAGECONFIG for dbus/consolekit dependencies

2015-08-28 Thread Martin Jansa
* the problem is that consolekit module is built whenever dbus is enabled and consolekit is available only in distributions with x11 in DISTRO_FEATURES * many distributions want to enable dbus support (required for bluez support), but without consolekit because they aren't using x11 * allow to

[OE-core] [PATCH] utils/decorators.py: TestNeedsBin, decorator for sending binaries to images

2015-08-28 Thread Costin Constantin
TestNeedsBin is a decorator to help deploy binaries to the running image. It uses no package management system. It gets it's source binaries from the rpm built packages found under DEPLOY_DIR_RPM. As mandatory arguments, it requires only the binary name. The binary is sent by default to the DUT's "

Re: [OE-core] [PATCH 2/8] dpkg: update to 1.18.2

2015-08-28 Thread Khem Raj
> On Aug 28, 2015, at 5:18 AM, Alexander Kanavin > wrote: > > check_snprintf.patch has been dropped, because it seems to fix a problem > that doesn't anymore exist, and doesn't have any description of what the > problem was and how was it fixed. it is redundant. should be fine signature.as

Re: [OE-core] [PATCH 5/5] packagegroup-base: pull in iw as well as wireless-tools

2015-08-28 Thread Christopher Larson
On Thu, Aug 27, 2015 at 10:50 PM, Khem Raj wrote: > > +VIRTUAL-RUNTIME_wireless-tools ?= "iw wireless-tools” > > wouldn’t the define from default-providers.inc be enough ? > Yeah, I guess I'm just paranoid and like to avoid the implicit dependency, but duplicating the value isn't ideal either. I

Re: [OE-core] [PATCH] gcc-source: exlude from world

2015-08-28 Thread Randy MacLeod
On 2015-08-27 11:27 PM, Khem Raj wrote: On Thu, Aug 27, 2015 at 8:17 PM, Randy MacLeod wrote: I've sent the parent email to fix $ bitbake -c world. I've confirmed that my change works for: $ bitbake -c configure world I wasn't sure if I should leave gcc-source as is or change it to be simila

Re: [OE-core] [PATCH 4/5] iw: support and enable separate build dir

2015-08-28 Thread Christopher Larson
On Fri, Aug 28, 2015 at 12:38 AM, Jussi Kukkonen wrote: > On 27 August 2015 at 21:48, Christopher Larson wrote: > >> From: Christopher Larson >> >> Signed-off-by: Christopher Larson >> --- >> .../iw/iw/separate-objdir.patch| 55 >> ++ >> meta/recipes-co

[OE-core] Yocto Project Status WW35

2015-08-28 Thread Jolley, Stephen K
Current Dev Position: 1.9 Milestone 3 (M3) Next Deadline: M3 cut off of August 24th at noon GMT (On hold until most likely late next week) SWAT team rotation: Alejandro -> Jussi https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: * Reminder: The current vers

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Khem Raj
> On Aug 28, 2015, at 1:34 AM, Paul Eggleton > wrote: > > On Thursday 27 August 2015 23:07:44 Khem Raj wrote: >>> On Aug 27, 2015, at 5:36 AM, Paul Eggleton >>> wrote: >>> >>> Allow restricting recipes brought from a layer to a specified list. This >>> is similar in operation to blacklist.bbc

Re: [OE-core] [PATCH 1/3] dbus: merge .bb and .inc

2015-08-28 Thread Andrew Shadura
On 28/08/15 16:23, Khem Raj wrote: > On Fri, Aug 28, 2015 at 5:22 AM, Andrew Shadura > wrote: >>> >> can you send patch generated with -M 1 >> > >> > Gives me exact same patch, hmm. > try -C No changes. -- Cheers, Andrew -- ___ Openembedded-core ma

Re: [OE-core] [PATCH 1/3] dbus: merge .bb and .inc

2015-08-28 Thread Khem Raj
On Fri, Aug 28, 2015 at 5:56 AM, Andrew Shadura wrote: > Hello again, > > By the way, Khem, what's new about your systemd update patches? they are on test branch hopefully landing in master soon I have > more patches for dbus recipe, but they depend on a newer systemd, so I > don't send them in

Re: [OE-core] [PATCH 1/3] dbus: merge .bb and .inc

2015-08-28 Thread Khem Raj
On Fri, Aug 28, 2015 at 5:22 AM, Andrew Shadura wrote: >> can you send patch generated with -M 1 > > Gives me exact same patch, hmm. try -C -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mai

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Paul Eggleton
On Friday 28 August 2015 11:09:19 Otavio Salvador wrote: > On Fri, Aug 28, 2015 at 11:00 AM, Paul Eggleton > > wrote: > > On Friday 28 August 2015 10:55:41 Otavio Salvador wrote: > >> On Fri, Aug 28, 2015 at 3:07 AM, Khem Raj wrote: > >> >> On Aug 27, 2015, at 5:36 AM, Paul Eggleton > >> >> wro

Re: [OE-core] [RFC PATCH 1/2] android-tools: import android-tools from meta-smartphone into oe-core

2015-08-28 Thread Otavio Salvador
On Wed, Aug 26, 2015 at 12:48 PM, Nicolas Dechesne wrote: > The following changes were done to trim down the recipe size: > * removed adbd support > * removed android-tools-conf > > The main idea is to keep only what is strictly needed for make_ext4fs tool. > > Signed-off-by: Nicolas Dechesne Ca

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Otavio Salvador
On Fri, Aug 28, 2015 at 11:00 AM, Paul Eggleton wrote: > On Friday 28 August 2015 10:55:41 Otavio Salvador wrote: >> On Fri, Aug 28, 2015 at 3:07 AM, Khem Raj wrote: >> >> On Aug 27, 2015, at 5:36 AM, Paul Eggleton >> >> wrote: >> >> >> >> Allow restricting recipes brought from a layer to a spec

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Paul Eggleton
On Friday 28 August 2015 10:55:41 Otavio Salvador wrote: > On Fri, Aug 28, 2015 at 3:07 AM, Khem Raj wrote: > >> On Aug 27, 2015, at 5:36 AM, Paul Eggleton > >> wrote: > >> > >> Allow restricting recipes brought from a layer to a specified list. This > >> is similar in operation to blacklist.bbc

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Otavio Salvador
On Fri, Aug 28, 2015 at 3:07 AM, Khem Raj wrote: > >> On Aug 27, 2015, at 5:36 AM, Paul Eggleton >> wrote: >> >> Allow restricting recipes brought from a layer to a specified list. This >> is similar in operation to blacklist.bbclass, but instead specifies a >> per-layer whitelist of recipes (ma

Re: [OE-core] [PATCH V3 3/3] runqemu: Define OECORE_MACHINE_SYSROOT on setup_sysroot

2015-08-28 Thread Leonardo Sandoval
Hi Patrick, I do not have much time for a V4 set of patches, but now with all your input I can rework V3 patches on 2.1. Copying Matt and Ricardo, they helped me when porting these patches into poky. They may have other comments. On 08/28/2015 02:29 AM, Patrick Ohly wrote: On Tue, 2015-07

[OE-core] [PATCH][fido] icu: CVE-2014-8146-CVE-2014-8147

2015-08-28 Thread Sona Sarmadi
CVE-2014-8146 icu: heap overflow via incorrect isolateCount CVE-2014-8147 icu: integer truncation in the resolveImplicitLevels function References: [1] https://github.com/pedrib/PoC/raw/master/generic/i-c-u-fail.7z [2] https://www.kb.cert.org/vuls/id/602540 [3] http://bugs.icu-project.org/trac/cha

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Paul Eggleton
On Friday 28 August 2015 09:34:18 Paul Eggleton wrote: > On Thursday 27 August 2015 23:07:44 Khem Raj wrote: > > > On Aug 27, 2015, at 5:36 AM, Paul Eggleton > > > > > > wrote: > > > > > > Allow restricting recipes brought from a layer to a specified list. This > > > is similar in operation to bl

[OE-core] [PATCH] rt-tests: drop unnecessary added-missing-dependencies.patch

2015-08-28 Thread Josh Cartwright
Neither the hackbench target, or the rt-migrate-test target actually depend on librttest.a; drop this unnecessary patch. Signed-off-by: Josh Cartwright --- .../files/added-missing-dependencies.patch | 42 -- meta/recipes-rt/rt-tests/rt-tests.inc | 1 - 2

Re: [OE-core] [PATCH 1/3] dbus: merge .bb and .inc

2015-08-28 Thread Andrew Shadura
Hello again, By the way, Khem, what's new about your systemd update patches? I have more patches for dbus recipe, but they depend on a newer systemd, so I don't send them in yet. -- Cheers, Andrew signature.asc Description: OpenPGP digital signature -- _

Re: [OE-core] [PATCH 1/3] dbus: merge .bb and .inc

2015-08-28 Thread Andrew Shadura
On 28/08/15 05:53, Khem Raj wrote: > On Thu, Aug 27, 2015 at 2:12 AM, Andrew Shadura > wrote: >> > The split is no longer necessary, and only makes it more complicated to >> > do changes in external layers. >> > >> > Signed-off-by: Andrew Shadura >> > --- >> > meta/recipes-core/dbus/dbus.inc

[OE-core] [PATCH 6/8] package_regex.inc: updates to improve upstream tracking

2015-08-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/conf/distro/include/package_regex.inc | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meta/conf/distro/include/package_regex.inc b/meta/conf/distro/include/package_regex.inc index 0c29ade..df384e2 100644 --- a/meta/conf/distro

[OE-core] [PATCH 1/8] upstream_tracking.inc: deprecate and move contents to recipes

2015-08-28 Thread Alexander Kanavin
No-update reasons and manual version checks should be in the recipes themselves because otherwise they're prone to getting out of date. Signed-off-by: Alexander Kanavin --- meta/conf/distro/include/upstream_tracking.inc | 18 ++ meta/recipes-core/base-passwd/base-passwd_3

[OE-core] [PATCH 8/8] cmake: update to 3.3.1

2015-08-28 Thread Alexander Kanavin
Share tarball checksums between cmake and cmake-native via cmake.inc. Signed-off-by: Alexander Kanavin --- .../cmake/{cmake-native_3.2.2.bb => cmake-native_3.3.1.bb} | 3 --- meta/recipes-devtools/cmake/cmake.inc | 3 +++ meta/recipes-devtools/cmake/{

[OE-core] [PATCH 4/8] libnotify: don't inherit unnecessary distro_features_check

2015-08-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/libnotify/libnotify_0.7.6.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-gnome/libnotify/libnotify_0.7.6.bb b/meta/recipes-gnome/libnotify/libnotify_0.7.6.bb index 5d7b4ce..c5788c8 100644 --- a/meta/reci

[OE-core] [PATCH 7/8] ccache: update to 3.2.3

2015-08-28 Thread Alexander Kanavin
The LICENSE checksum has changed because of updated copyright years. SRC_URI has been changed to git, because upstream tarball is broken (includes configure.ac but not .m4 files it depends on). Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/ccache/ccache.inc | 4 +++- meta/rec

[OE-core] [PATCH 3/8] dropbear: update to 2015.68

2015-08-28 Thread Alexander Kanavin
LICENSE checksum has changed because the copyright year was changed from 2014 to 2015 in it: https://github.com/mkj/dropbear/commit/19e1afbd1ca6d306166ce74bcd6c6889f8d196f3 Signed-off-by: Alexander Kanavin --- meta/recipes-core/dropbear/dropbear.inc| 2 +- meta/recipes-core/dropbear/drop

[OE-core] [PATCH 5/8] e2fsprogs: explain why there is no update for now

2015-08-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb index 70085e3..97e29c8 100644 --- a/meta/recipes-

[OE-core] [PATCH 2/8] dpkg: update to 1.18.2

2015-08-28 Thread Alexander Kanavin
check_snprintf.patch has been dropped, because it seems to fix a problem that doesn't anymore exist, and doesn't have any description of what the problem was and how was it fixed. tarfix.patch has been merged upstream. The rest of the patches have been rebased to the new upstream release Signed-

[OE-core] [PATCH 0/8] Recipe updates

2015-08-28 Thread Alexander Kanavin
This patchset contains various recipe version updates that have accumulated; I have also deprectead upstream_tracking.inc and moved its contents to recipes. The same thing will be done later with package_regex.inc and maintainers.inc. Also no update reasons are added for rpm, db and e2fsprogs. Th

Re: [OE-core] [PATCH 4/6] nettle: Add ptests

2015-08-28 Thread Jussi Kukkonen
On 27 August 2015 at 16:06, Jussi Kukkonen wrote: > > Use the nettle testsuite as ptests. Skip "sha1-huge-test" because > it can take 20 minutes to finish. > > Signed-off-by: Jussi Kukkonen > --- > ...d-target-to-only-build-tests-not-run-them.patch | 43 ++ > meta/recipes-sup

[OE-core] [PATCH] openssh: Upgrade 7.0p1 -> 7.1p1

2015-08-28 Thread Jussi Kukkonen
This is a bugfix release. Signed-off-by: Jussi Kukkonen --- .../openssh/{openssh_7.0p1.bb => openssh_7.1p1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-connectivity/openssh/{openssh_7.0p1.bb => openssh_7.1p1.bb} (97%) diff --git a/meta/r

Re: [OE-core] [PATCH v2 0/4] Sign packages in RPM feeds

2015-08-28 Thread Markus Lehtonen
Hi, On 27/08/15 12:31, "Markus Lehtonen" wrote: >Second iteration of my patchset. I tried to address the issues pointed >out by >Mark: >1. The gpg key is not imported to the (temporary) rpm databases used by > createrepo. Instead, createrepo is patched to ignore signature > verification alto

Re: [OE-core] [PATCH 3/3] package_manager: support for signed RPM package feeds

2015-08-28 Thread Markus Lehtonen
Hi, On 27/08/15 15:03, "Mark Hatle" wrote: >On 8/26/15 11:27 PM, Markus Lehtonen wrote: >> Hi Mark, >> >> On 26/08/15 18:10, "Mark Hatle" wrote: >> >>> On 8/26/15 6:18 AM, Markus Lehtonen wrote: This change makes it possible to create GPG signed RPM package feeds - i.e. package feed

Re: [OE-core] [PATCH] bind: remove dependency on bind in bind-dev

2015-08-28 Thread Paul Eggleton
On Thursday 27 August 2015 09:19:09 Khem Raj wrote: > On Thu, Aug 27, 2015 at 9:01 AM, Ross Burton wrote: > > bind doesn't ship shared libraries only static libraries, so the default > > dependency on PN from PN-dev is pointless and means that an image with > > bind-dev installed (via dhcp-dev's a

Re: [OE-core] [PATCH] selftest/manifest.py: Test to verify rootfs manifest

2015-08-28 Thread Paul Eggleton
On Thursday 27 August 2015 10:50:51 Benjamin Esquivel wrote: > Hey Paul, thanks for looking at this, check the comments below. > > On Thu, 2015-08-27 at 09:34 +0100, Paul Eggleton wrote: > > Hi Benjamin / Mariano, > > > > On Wednesday 26 August 2015 12:26:02 Benjamin Esquivel wrote: > > > Adding

[OE-core] [PATCH 1/1] lib/oe/patch: handle patches that delete files with older git

2015-08-28 Thread Paul Eggleton
When running "git add" on a directory with older git versions, deleted files aren't added to what is to be committed unless you explicitly specify the -A option. The result of this is that when applying a patch from a recipe which doesn't apply with "git am" (and we fall back to applying the patch

[OE-core] [PATCH 0/1] Fix for issue thrown up by devtool QA test

2015-08-28 Thread Paul Eggleton
The following changes since commit f07045fcae859c902434062d1725f1348f42d1dd: oeqa/oetest.py: add better package search for hasPackage() (2015-08-26 08:26:37 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib paule/patchfix http://cgit.open

Re: [OE-core] [PATCH v2 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-28 Thread Paul Eggleton
On Thursday 27 August 2015 23:07:44 Khem Raj wrote: > > On Aug 27, 2015, at 5:36 AM, Paul Eggleton > > wrote: > > > > Allow restricting recipes brought from a layer to a specified list. This > > is similar in operation to blacklist.bbclass, but instead specifies a > > per-layer whitelist of recip

Re: [OE-core] [PATCH V3 0/3] Add UEFI firmware for qemux86*

2015-08-28 Thread Patrick Ohly
On Thu, 2015-08-27 at 14:50 -0500, Leonardo Sandoval wrote: > On 08/27/2015 08:19 AM, Patrick Ohly wrote: > > When I use runqemu, it ends up invoking qemu with "-vga vmware". With > > that, I don't see any output from TianoCore and booting hangs. It boots > > when disabling graphical output ("seria

Re: [OE-core] [PATCH v2 0/1] Add recipe whitelisting class

2015-08-28 Thread Patrick Ohly
On Thu, 2015-08-27 at 13:36 +0100, Paul Eggleton wrote: > Changes since the RFC version: > * Check BPN in addition to PN for matching, to make it easier in the > multilib case > * Use PNWHITELIST_LAYERS to specify which layers to apply whitelisting to, > and consider an empty whitelist value to

Re: [OE-core] [PATCH 2/6] gmp: Bring back version 4.2.1 (LGPL 2.1+)

2015-08-28 Thread Jussi Kukkonen
On 28 August 2015 at 09:03, Khem Raj wrote: > > > > On Aug 27, 2015, at 6:05 AM, Jussi Kukkonen wrote: > > > > gmp 4.2.1 was removed in f181c6ce8b apparently accidentally: It > > was not noticed that 4.2.1 is LGPL 2.1 (and not GPL) so provides > > a useful alternative to the newer "GPLv2 | LGPLv3

Re: [OE-core] [PATCH 4/5] iw: support and enable separate build dir

2015-08-28 Thread Jussi Kukkonen
On 27 August 2015 at 21:48, Christopher Larson wrote: > From: Christopher Larson > > Signed-off-by: Christopher Larson > --- > .../iw/iw/separate-objdir.patch| 55 > ++ > meta/recipes-connectivity/iw/iw_4.1.bb | 4 ++ > 2 files changed, 59 i

Re: [OE-core] [PATCH V3 3/3] runqemu: Define OECORE_MACHINE_SYSROOT on setup_sysroot

2015-08-28 Thread Patrick Ohly
On Tue, 2015-07-14 at 20:07 +, leonardo.sandoval.gonza...@linux.intel.com wrote: > From: Leonardo Sandoval > > At least the OVFM (UEFI Firmware for Qemu and KVM) recipe stores the BIOS > under $OE_TMPDIR/sysroots/$MACHINE, now defined as OECORE_MACHINE_SYSROOT. > The latter is used when searc