[OE-core] [PATCH 1/1] qemu: upgrade to 2.1

2014-08-06 Thread Cristian Iorga
QEMU 2.1 comes with fixes and improvements. See http://wiki.qemu.org/ChangeLog/2.1 for details. - Add gnutls as a build dependency, because this can be a runtime dependency for VNC support. - pcie_better_hotplug_support.patch removed, integrated upstream. -

[OE-core] [PATCH 0/1] qemu: upgrade to 2.1

2014-08-06 Thread Cristian Iorga
The following changes since commit 870bb8d35547b8313b3a487d7e8b914ab9470e64: local.conf.sample.extended: fix example for EXTRA_USERS_PARAMS (2014-08-04 17:38:24 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ciorga/qemu_upg

[OE-core] [PATCH 3/3] bbclass/sstate approach 3: add checking in the return path of sstate_checkhashes

2014-08-06 Thread Hongxu Jia
In the sstate-cache code, add a checking in the return path of sstate_checkhashes. If read-only sstate-cache enable, and the recipe's ${PN} not in the ${SSTATECACHE_WHITELIST}, it trigered an instant error. Flaws: 1. We should manually unlock the bitbake lock which the instant error msg will

[OE-core] [PATCH 2/3] bbclass/sstate_readonly_2 approach 2: add event handler at TaskStarted time

2014-08-06 Thread Hongxu Jia
Add event handler at TaskStarted time to handle the sstate-cache read-only cheking. If read-only sstate-cache enable, and the building recipe not in the ${SSTATECACHE_WHITELIST}, it trigered an instant error. Flaws: 1. For every task, there is a read-only sstate-cache checking, it increased

[OE-core] [PATCH 0/3][RFC] only allowed sstate-cache objects are allowed in a build (read-only sstate-cache?)

2014-08-06 Thread Hongxu Jia
Issue description: The issue is that the developer who demand only the new software they write is allowed to be compiled from source, they only want to reuse binaries from an existed sstate-cache, if the developer makes a change that triggers a rebuild, it should be an instant error. The

[OE-core] [PATCH 1/3] bbclass/sstate_readonly approach 1: add prefuncs to SSTATETASKS

2014-08-06 Thread Hongxu Jia
Add prefuncs to SSTATETASKS to handle the sstate-cache read-only cheking. If read-only sstate-cache enable, and the building recipe not in the ${SSTATECACHE_WHITELIST}, it trigered an instant error. Flaws: 1. For each SSTATETASKS task, there is a read-only sstate-cache checking, it increased

[OE-core] [PATCH v2 1/1] qemu: upgrade to 2.1

2014-08-06 Thread Cristian Iorga
QEMU 2.1 comes with fixes and improvements. See http://wiki.qemu.org/ChangeLog/2.1 for details. - Added config for quorum support, depending on gnutls. - pcie_better_hotplug_support.patch removed, integrated upstream. - Qemu-Arm-versatilepb-Add-memory-size-checking.patch updated to 2.1 source

[OE-core] [PATCH v2 0/1] qemu: upgrade to 2.1

2014-08-06 Thread Cristian Iorga
Adding a build dependency on gnutls was not the proper fix for QA warning, but a config on Quorum support. This created the need for v2. Commit message chaged accordingly. The following changes since commit 870bb8d35547b8313b3a487d7e8b914ab9470e64: local.conf.sample.extended: fix example for

[OE-core] comment trails off in archiver.bbclass

2014-08-06 Thread Robert P. J. Day
currently doing more proofreading and note-taking, and there's this in archiver.bbclass: # The libtool-native's do_configure will remove the # ${STAGING_DATADIR}/aclocal/libtool.m4, so we can't re-run the # do_configure, we archive the already configured ${S} to

Re: [OE-core] comment trails off in archiver.bbclass

2014-08-06 Thread Richard Purdie
On Wed, 2014-08-06 at 03:56 -0400, Robert P. J. Day wrote: currently doing more proofreading and note-taking, and there's this in archiver.bbclass: # The libtool-native's do_configure will remove the # ${STAGING_DATADIR}/aclocal/libtool.m4, so we can't re-run the #

Re: [OE-core] comment trails off in archiver.bbclass

2014-08-06 Thread Robert P. J. Day
On Wed, 6 Aug 2014, Richard Purdie wrote: On Wed, 2014-08-06 at 03:56 -0400, Robert P. J. Day wrote: currently doing more proofreading and note-taking, and there's this in archiver.bbclass: # The libtool-native's do_configure will remove the #

Re: [OE-core] [PATCH] util-linux: create an all encompassing package group

2014-08-06 Thread Martin Jansa
On Tue, Aug 05, 2014 at 01:26:12PM -0400, Paul Gortmaker wrote: Currently util-linux is fragmented into lots of small chunks, and if one is looking to avoid using busybox wholesale, there is currently no easy way to say I want all of it. Here we create a packagegroup for all of the util-linux

Re: [OE-core] [PATCH 1/1] gmp: uprev it to 6.0.0

2014-08-06 Thread ChenQi
On 08/04/2014 02:05 PM, rongqing...@windriver.com wrote: From: Roy Li rongqing...@windriver.com Uprev gmp from 5.1.1 to 6.0.0, and remove the 4.2.1 version which is GPLv2, since gmp-6.0.0 is dual-licensing, LGPLv3 or GPLv2; Signed-off-by: Roy Li rongqing...@windriver.com ---

Re: [OE-core] [PATCH v2] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-06 Thread Martin Jansa
On Wed, Aug 06, 2014 at 12:37:30AM +0500, Yasir Khan wrote: From: Yasir-Khan yasir_k...@mentor.com Select between openssl or gnutls as ssl implementation via PACKAGECONFIG instead of explicitly adding both via DEPENDS. Signed-off-by: Yasir-Khan yasir_k...@mentor.com ---

[OE-core] what is the proper way to define a blacklist?

2014-08-06 Thread Robert P. J. Day
from blacklist.bbclass: # To use the blacklist, a distribution should include this # class in the INHERIT_DISTRO the only way i see that class being inherited is with the simpler form: INHERIT += blacklist even in distro conf files, except in defaultsetup.conf, which uses:

Re: [OE-core] what is the proper way to define a blacklist?

2014-08-06 Thread Martin Jansa
On Wed, Aug 06, 2014 at 04:39:29AM -0400, Robert P. J. Day wrote: from blacklist.bbclass: # To use the blacklist, a distribution should include this # class in the INHERIT_DISTRO the only way i see that class being inherited is with the simpler form: INHERIT += blacklist

[OE-core] [PATCH] systemd: Adding RRECOMMENDS for os-release

2014-08-06 Thread Sujith H
From: Sujith H sujith_harida...@mentor.com Systemd depends on the os-release hence adding RRECOMMENDS for the systemd package. Signed-off-by: Christopher Larson kerg...@gmail.com Signed-off-by: Sujith H sujith_harida...@mentor.com --- meta/recipes-core/systemd/systemd_213.bb | 2 +- 1 file

Re: [OE-core] [PATCH] systemd: Adding RRECOMMENDS for os-release

2014-08-06 Thread sujith h
Hi, This patch is in addition to the os-release patch I had posted earlier. Because systemd wants os-release file and uses it. On Wed, Aug 6, 2014 at 3:34 PM, Sujith H sujit...@gmail.com wrote: From: Sujith H sujith_harida...@mentor.com Systemd depends on the os-release hence adding

Re: [OE-core] [PATCH v2] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-06 Thread Andreas Oberritter
Hello Yasir, On 05.08.2014 21:37, Yasir Khan wrote: From: Yasir-Khan yasir_k...@mentor.com Select between openssl or gnutls as ssl implementation via PACKAGECONFIG instead of explicitly adding both via DEPENDS. Signed-off-by: Yasir-Khan yasir_k...@mentor.com ---

[OE-core] [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc

2014-08-06 Thread Martin Jansa
* building with libav-9 fails with: | checking for POSTPROC... configure: error: Package requirements (libpostproc libavcodec libavutil) were not met: | | No package 'libpostproc' found Signed-off-by: Martin Jansa martin.ja...@gmail.com ---

[OE-core] [PATCH 2/2] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11

2014-08-06 Thread Martin Jansa
* standalone libpostproc recipe depends on libav, but current PACKAGES_DYNAMIC indicated that libav-9.13 also provides libpostproc Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta/recipes-multimedia/libav/libav.inc | 5 - meta/recipes-multimedia/libav/libav_0.8.11.bb | 2

Re: [OE-core] [PATCH 2/4] recipes: add x11 to required DISTRO_FEATURES

2014-08-06 Thread Martin Jansa
On Mon, Jul 28, 2014 at 02:18:30PM +0100, Richard Purdie wrote: On Thu, 2014-07-24 at 17:22 +0200, Martin Jansa wrote: On Thu, Jul 24, 2014 at 02:52:45PM +0100, Burton, Ross wrote: On 24 July 2014 14:42, Martin Jansa martin.ja...@gmail.com wrote: +REQUIRED_DISTRO_FEATURES = x11

[OE-core] [PATCH] bbclass files: Fix typos/grammar in numerous .bbclass comments.

2014-08-06 Thread Robert P. J. Day
Various non-functional changes to a number of .bbclass files: * Spelling * Grammar * Ridiculously long lines Signed-off-by: Robert P. J. Day rpj...@crashcourse.ca --- while perusing numerous .bbclass files to document a few things for myself, i figured i might as well do some

[OE-core] [PATCH] opkg-utils: allow disabling update-alternatives

2014-08-06 Thread Sujith H
From: Sujith H sujith_harida...@mentor.com This is needed to deal with the situation where we're using ipk packaging, so opkg-utils must be built regardless of what update-alternatives provider we prefer. The downside to the current implementation is the need to adjust PACKAGECONFIG as well as

[OE-core] [PATCH] opkg-utils: allow disabling update-alternatives

2014-08-06 Thread Sujith H
From: Sujith H sujith_harida...@mentor.com This is needed to deal with the situation where we're using ipk packaging, so opkg-utils must be built regardless of what update-alternatives provider we prefer. The downside to the current implementation is the need to adjust PACKAGECONFIG as well as

Re: [OE-core] [PATCH] bbclass files: Fix typos/grammar in numerous .bbclass comments.

2014-08-06 Thread Martin Jansa
On Wed, Aug 06, 2014 at 07:51:55AM -0400, Robert P. J. Day wrote: Various non-functional changes to a number of .bbclass files: Looks good to me Acked-by: Martin Jansa martin.ja...@gmail.com * Spelling * Grammar * Ridiculously long lines Signed-off-by: Robert P. J. Day

Re: [OE-core] [PATCH] opkg-utils: allow disabling update-alternatives

2014-08-06 Thread Paul Eggleton
On Wednesday 06 August 2014 17:34:09 Sujith H wrote: From: Sujith H sujith_harida...@mentor.com This is needed to deal with the situation where we're using ipk packaging, so opkg-utils must be built regardless of what update-alternatives provider we prefer. The downside to the current

Re: [OE-core] [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc

2014-08-06 Thread Paul Eggleton
On Wednesday 06 August 2014 13:41:56 Martin Jansa wrote: * building with libav-9 fails with: | checking for POSTPROC... configure: error: Package requirements | (libpostproc libavcodec libavutil) were not met: | | No package 'libpostproc' found Does gst-ffmpeg actually work with

Re: [OE-core] [PATCH v2] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-06 Thread Khan, Yasir
Hello Andreas, +PACKAGECONFIG ??= gnutls +PACKAGECONFIG[gnutls] = ,,gnutls I think libgcrypt should be added here and removed above. At least it doesn't appear to be a runtime dependency when building with openssl, so I suppose it's a gnutls thing. As per commit 1fe8f631f, gnutls doesn't

[OE-core] [PATCH v3] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-06 Thread Yasir Khan
From: Yasir-Khan yasir_k...@mentor.com Select between openssl or gnutls as ssl implementation via PACKAGECONFIG instead of explicitly adding both via DEPENDS. Signed-off-by: Yasir-Khan yasir_k...@mentor.com --- .../wpa-supplicant/wpa-supplicant.inc | 20 +---

Re: [OE-core] [PATCH] opkg-utils: allow disabling update-alternatives

2014-08-06 Thread sujith h
On Wed, Aug 6, 2014 at 6:08 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Wednesday 06 August 2014 17:34:09 Sujith H wrote: From: Sujith H sujith_harida...@mentor.com This is needed to deal with the situation where we're using ipk packaging, so opkg-utils must be built

Re: [OE-core] [PATCH v2] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-06 Thread Andreas Oberritter
Hello Yasir, On 06.08.2014 14:51, Khan, Yasir wrote: +PACKAGECONFIG ??= gnutls +PACKAGECONFIG[gnutls] = ,,gnutls I think libgcrypt should be added here and removed above. At least it doesn't appear to be a runtime dependency when building with openssl, so I suppose it's a gnutls thing. As

Re: [OE-core] [PATCH] opkg-utils: allow disabling update-alternatives

2014-08-06 Thread Paul Eggleton
On Wednesday 06 August 2014 18:58:11 sujith h wrote: On Wed, Aug 6, 2014 at 6:08 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Wednesday 06 August 2014 17:34:09 Sujith H wrote: From: Sujith H sujith_harida...@mentor.com This is needed to deal with the situation where

Re: [OE-core] [PATCH] util-linux: create an all encompassing package group

2014-08-06 Thread Paul Gortmaker
On 14-08-06 04:21 AM, Martin Jansa wrote: On Tue, Aug 05, 2014 at 01:26:12PM -0400, Paul Gortmaker wrote: Currently util-linux is fragmented into lots of small chunks, and if one is looking to avoid using busybox wholesale, there is currently no easy way to say I want all of it. Here we

Re: [OE-core] [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc

2014-08-06 Thread Martin Jansa
On Wed, Aug 06, 2014 at 01:41:58PM +0100, Paul Eggleton wrote: On Wednesday 06 August 2014 13:41:56 Martin Jansa wrote: * building with libav-9 fails with: | checking for POSTPROC... configure: error: Package requirements | (libpostproc libavcodec libavutil) were not met: | |

Re: [OE-core] [PATCH] util-linux: create an all encompassing package group

2014-08-06 Thread Martin Jansa
On Wed, Aug 06, 2014 at 10:20:09AM -0400, Paul Gortmaker wrote: On 14-08-06 04:21 AM, Martin Jansa wrote: On Tue, Aug 05, 2014 at 01:26:12PM -0400, Paul Gortmaker wrote: Currently util-linux is fragmented into lots of small chunks, and if one is looking to avoid using busybox wholesale,

Re: [OE-core] [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc

2014-08-06 Thread Paul Eggleton
On Wednesday 06 August 2014 16:37:34 Martin Jansa wrote: On Wed, Aug 06, 2014 at 01:41:58PM +0100, Paul Eggleton wrote: On Wednesday 06 August 2014 13:41:56 Martin Jansa wrote: * building with libav-9 fails with: | checking for POSTPROC... configure: error: Package requirements |

[OE-core] [oe-core][PATCH] lz4: update to 120

2014-08-06 Thread Armin Kuster
Update package to version 120 Add Makefile to LIC_FILES_CHKSUM check as it changes with every rev. Signed-off-by: Armin Kuster akus...@mvista.com --- meta/recipes-support/lz4/lz4_svn.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/lz4/lz4_svn.bb

[OE-core] [PATCH 1/1] boot-directdisk.bbclass: use local HDDDIR

2014-08-06 Thread Robert Yang
Use $HDDDIR rather than ${HDDDIR} in build_boot_dd(), otherwise may errors: - Set these in local.conf: IMAGE_FSTYPES += live IMAGE_FSTYPES += vmdk AUTO_SYSLINUXMENU = 1 NOHDD = 1 $ bitbake core-image-sato DEBUG: Executing shell function build_boot_dd install: cannot create regular

[OE-core] [PATCH 0/1] boot-directdisk.bbclass: use local HDDDIR

2014-08-06 Thread Robert Yang
The following changes since commit 1fafe7ccc563d5ac9e41f5c1de93d2736745b512: ghostscript: Remove bogus gsfonts reference from DESCRIPTION (2014-08-06 11:14:21 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/hdd

[OE-core] [PATCH] Remove remnants of deleted do_package_write task.

2014-08-06 Thread Robert P. J. Day
As the do_package_write() task is listed as deleted, remove the few remaining references. Signed-off-by: Robert P. J. Day rpj...@crashcourse.ca --- i'm not sure this is a valid patch, but since the ref manual insists this task has been removed, it *seems* reasonable, but i'll let someone

[OE-core] [PATCH] remake: fix build error

2014-08-06 Thread Maxin B. John
Fix build error: ... unknown command `colophon' unknown command `cygnus' Signed-off-by: Maxin B. John maxin.j...@enea.com --- ...ve-errors-about-colophon-and-cygnus-comma.patch | 39 ++ meta/recipes-devtools/remake/remake_git.bb | 4 ++- 2 files changed, 42

[OE-core] [PATCH] trace-cmd: Update to version 2.3.2

2014-08-06 Thread Yasir Khan
From: Yasir-Khan yasir_k...@mentor.com Current trace-cmd version 1.2 throws recorder error in splice input error while recording a trace on kernel version 3.10. Update the trace-cmd version to latest 2.3.2 to resolve this error. Signed-off-by: Yasir-Khan yasir_k...@mentor.com ---

[OE-core] [PATCH] 2/2] tzdata: update to 2014f

2014-08-06 Thread Armin Kuster
md5sum on asia file changed do to severel tzone updates Signed-off-by: Armin Kuster akus...@mvista.com --- meta/recipes-extended/tzdata/tzdata.inc | 2 +- meta/recipes-extended/tzdata/tzdata_2014e.bb | 6 -- meta/recipes-extended/tzdata/tzdata_2014f.bb | 6 ++ 3 files changed, 7

[OE-core] [PATCH] 0/2] Update tzcode and data to 2014f

2014-08-06 Thread Armin Kuster
http://mm.icann.org/pipermail/tz-announce/2014-August/23.html Armin Kuster (2): tzcode: update to 2014f tzdata: update to 2014f meta/recipes-extended/tzcode/tzcode-native_2014e.bb | 11 --- meta/recipes-extended/tzcode/tzcode-native_2014f.bb | 11 +++

[OE-core] [PATCH] 1/2] tzcode: update to 2014f

2014-08-06 Thread Armin Kuster
Signed-off-by: Armin Kuster akus...@mvista.com --- meta/recipes-extended/tzcode/tzcode-native_2014e.bb | 11 --- meta/recipes-extended/tzcode/tzcode-native_2014f.bb | 11 +++ 2 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644

[OE-core] OE Changelog since 2014-07-27 until 2014-08-03

2014-08-06 Thread cliff . brake
Changelog since 2014-07-27 until 2014-08-03. 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] coreutils: drop patch that unconditionally mangles manpages

2014-08-06 Thread Paul Gortmaker
commit 841ec528ec04e64bd09ff10f8d9ad2d6e3aac05d (coreutils: update to upstream version 9.21) added a patch which bypassed the check for perl and hence defaults to using the dummy man page for all of the coreutils manpages. This results in all manpages looking like: NAME chmod - a GNU

Re: [OE-core] [PATCH] trace-cmd: Update to version 2.3.2

2014-08-06 Thread Saul Wold
On 08/06/2014 10:23 AM, Yasir Khan wrote: From: Yasir-Khan yasir_k...@mentor.com Current trace-cmd version 1.2 throws recorder error in splice input error while recording a trace on kernel version 3.10. Update the trace-cmd version to latest 2.3.2 to resolve this error. Signed-off-by:

[OE-core] [PATCH] busybox: Add Upstream-Status to patch

2014-08-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-core/busybox/busybox/recognize_connmand.patch | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/recipes-core/busybox/busybox/recognize_connmand.patch b/meta/recipes-core/busybox/busybox/recognize_connmand.patch index

[OE-core] [PATCH] gstreamer1.0-plugins-good: fix the bug for gstrtpmp4gpay

2014-08-06 Thread Wang Zidan
set dafault value for MPEG4 without codec data in caps https://bugzilla.gnome.org/show_bug.cgi?id=734263 Signed-off-by: Wang Zidan b50...@freescale.com --- ...ay-set-dafault-value-for-MPEG4-without-co.patch | 62 .../gstreamer/gstreamer1.0-plugins-good_1.4.0.bb |4

Re: [OE-core] [PATCH] coreutils: drop patch that unconditionally mangles manpages

2014-08-06 Thread Koen Kooi
Op 6 aug. 2014, om 22:38 heeft Paul Gortmaker paul.gortma...@windriver.com het volgende geschreven: commit 841ec528ec04e64bd09ff10f8d9ad2d6e3aac05d (coreutils: update to upstream version 9.21) added a patch which bypassed the check for perl and hence defaults to using the dummy man page for