[OE-core] [PATCH 1/1] waffle: Upgrade 1.3.0 - 1.5.1

2015-05-27 Thread Jussi Kukkonen
* Update SRC_URI to waffle-gl.org * Add new cmake files to -dev package * Inherit lib_package so the new wflinfo binary is packaged properly * Fix PACKAGECONFIG line for gbm * Add the not-found configuration for all PACKAGECONFIG options to make builds reproducible (the default builds if

[OE-core] [PATCH 0/1] Upgrade waffle and fix recipe issues

2015-05-27 Thread Jussi Kukkonen
I've tried to fix the package configuration already in the recipe to do what I think it was trying to do. If there is nowadays a smarter way to set config based on the capabilities of the GL stack, do let me know. The following changes since commit a05663bfa10352fd5af6ca9a9d7b323c1c099f35:

[OE-core] [wic][PATCH] wic: do not strip traceback

2015-05-27 Thread Ed Bartosh
Printing only first 5 levels of wic traceback makes it almost useless as the most valuable part of it is stripped. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- scripts/wic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wic b/scripts/wic index

Re: [OE-core] [PATCH 2/4] alsa-tools: upgrade to version 1.0.29

2015-05-27 Thread Otavio Salvador
On Mon, May 18, 2015 at 10:08 PM, Kai Kang kai.k...@windriver.com wrote: Upgrade alsa-tools from verion 1.0.28 to 1.0.29. * update autotools.patch * add file gitcompile which exists in git repo but missing in release tar ball for sub-directory hdajacksensetest Signed-off-by: Kai Kang

[OE-core] [wic][PATCH] wic: refactored processing of wic exceptions

2015-05-27 Thread Ed Bartosh
All wic exceptions are now inherited from new base exception class WicError. It makes them easy to maintain and catch. Processing of exceptions is done this way: Known wic exceptions cause wic to print error message to stdout. Unknown exceptions are not catched anymore and produce

[OE-core] [PATCH] update-rc.d: Improve RRECOMMENDS handling

2015-05-27 Thread Richard Purdie
Unfortunately the combination of: RRECOMMENDS_${PN} = X UPDATERCPN = ${PN} RRECOMMENDS_${UPDATERCPN}_append = Y is tricky for bitbake to order correctly since RRECOMMENDS_${UPDATERCPN} can become Y which can then completely overwrite RRECOMMENDS_${PN}. Avoid these issues and improve handling in

Re: [OE-core] [PATCHv2] xserver-nodm: Support reboot from inside X

2015-05-27 Thread Ricardo Ribalda Delgado
I tested the proposed change and works also fine. Thanks! On Tue, May 26, 2015 at 11:24 PM, Aníbal Limón anibal.li...@linux.intel.com wrote: ping... On 20/05/15 13:44, Aníbal Limón wrote: From: Ricardo Ribalda Delgado ricardo.riba...@gmail.com If reboot was called from inside the

[OE-core] [dizzy][PATCH] perf: add LIBNUMA_DEFINES

2015-05-27 Thread Martin Jansa
From: Robert Yang liezhi.y...@windriver.com Fixed: WARNING: QA Issue: perf rdepends on numactl, but it isn't a build dependency? [build-deps] The numactl is in meta-oe. Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/recipes-kernel/perf/perf.bb | 4 +++- 1 file changed, 3

[OE-core] [PATCH] qt4: unconditionally disable gstreamer 0.10 support in qt webkit

2015-05-27 Thread Alexander Kanavin
Previously it was auto-detected in a broken way, which was causing build errors for qt-mobility. Qt4 build will fail if some gstreamer 0.10 packages are available at build time, but not all. It will not fail if none of the packages are available or if all of them are available. We can't guarantee

[OE-core] [PATCH 1/2] gnutls: use pkg-config to locate zlib

2015-05-27 Thread Andre McCurdy
AC_LIB_HAVE_LINKFLAGS can sometimes find host libs and is therefore not robust when cross-compiling. Remove it for zlib and use PKG_CHECK_MODULES instead. Signed-off-by: Andre McCurdy armccu...@gmail.com --- .../gnutls/use-pkg-config-to-locate-zlib.patch | 67 ++

[OE-core] [PATCH 2/2] gnutls: control zlib support via PACKAGECONFIG

2015-05-27 Thread Andre McCurdy
Remains enabled by default, no functional change. Signed-off-by: Andre McCurdy armccu...@gmail.com --- meta/recipes-support/gnutls/gnutls.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc

Re: [OE-core] [PATCH 1/3] populate_sdk_ext: install the latest buildtools-tarball

2015-05-27 Thread Christopher Larson
On Tue, May 26, 2015 at 11:09 PM, Chen Qi qi.c...@windriver.com wrote: If we do `bitbake buildtools-tarball' and then after one day do `bitbake core-image-minimal -c populate_sdk_ext', we would meet errors like below. | install: cannot stat

Re: [OE-core] [PATCH v2 1/3] gnu-config: improve detection of perl setup errors

2015-05-27 Thread Andre McCurdy
On Wed, May 27, 2015 at 2:06 PM, Andre McCurdy armccu...@gmail.com wrote: Read 'autoconf --trace' output via a temp file to improve error detection. If the command's output is read via a pipe to Autom4te::XFile then perl setup errors (e.g. mixing host and OE perl libs) which cause the autoconf

Re: [OE-core] [PATCH 1/3] populate_sdk_ext: install the latest buildtools-tarball

2015-05-27 Thread Randy Witt
On 05/27/2015 11:54 AM, Christopher Larson wrote: On Tue, May 26, 2015 at 11:09 PM, Chen Qi qi.c...@windriver.com wrote: If we do `bitbake buildtools-tarball' and then after one day do `bitbake core-image-minimal -c populate_sdk_ext', we would meet errors like below. | install: cannot stat

[OE-core] [PATCH v2 2/3] gcc-source.inc: make gnu-configize ignore errors from autoconf

2015-05-27 Thread Andre McCurdy
Recent changes to gnu-configize mean that errors returned when running autoconf are now reported by default. gcc-source do_preconfigure seems to be a special case which relies on errors being ignored. Signed-off-by: Andre McCurdy armccu...@gmail.com --- meta/recipes-devtools/gcc/gcc-source.inc |

[OE-core] [PATCH v2 1/3] gnu-config: improve detection of perl setup errors

2015-05-27 Thread Andre McCurdy
Read 'autoconf --trace' output via a temp file to improve error detection. If the command's output is read via a pipe to Autom4te::XFile then perl setup errors (e.g. mixing host and OE perl libs) which cause the autoconf command to segfault may go undetected. Add a -k / --continue command line

[OE-core] [PATCH v2 3/3] binutils.inc: make gnu-configize ignore errors from autoconf

2015-05-27 Thread Andre McCurdy
Recent changes to gnu-configize mean that errors returned when running autoconf are now reported by default. bintils do_configure seems to be a special case which relies on errors being ignored. Signed-off-by: Andre McCurdy armccu...@gmail.com --- meta/recipes-devtools/binutils/binutils.inc | 2

[OE-core] [PATCH 0/3] Extensible SDK: 3 fixes

2015-05-27 Thread Chen Qi
The first two have been sent before. The following changes since commit 7ffe10df73cc20d10fcd41b121074445273bd60e: license_class: license_create_manifest improvment (2015-05-09 22:26:02 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib

[OE-core] [PATCH 2/3] populate_sdk_ext: consider custom configuration in local.conf

2015-05-27 Thread Chen Qi
Copy the contents of local.conf under TOPDIR into the final generated local.conf. In this way, custom settings are also made into the final local.conf like IMAGE_INSTALL, DISTRO_FEATURES, VIRTUAL-RUNTIME_xxx, etc. Before this change, installing extensible SDK would usually report failure when

[OE-core] [PATCH 1/3] populate_sdk_ext: install the latest buildtools-tarball

2015-05-27 Thread Chen Qi
If we do `bitbake buildtools-tarball' and then after one day do `bitbake core-image-minimal -c populate_sdk_ext', we would meet errors like below. | install: cannot stat '/buildarea2/chenqi/poky/build-systemd/tmp/deploy/sdk/

[OE-core] [PATCH 3/3] copy_buildsystem: make sure bitbake directory is copied

2015-05-27 Thread Chen Qi
The previous code assumes that bitbake/ directory is under the core layer. This is the case for Yocto project. But users might clone oe-core and bitbake separately. So we use bb.__file__ to locate the bitbake directory to make sure it's copied into the extensible SDK. Signed-off-by: Chen Qi

Re: [OE-core] [PATCH] buildhistory: set commit user name and email for the new git repo

2015-05-27 Thread Mikko.Rapeli
On Tue, May 26, 2015 at 06:39:18PM +0100, Paul Eggleton wrote: Hi Mikko, On Tuesday 26 May 2015 14:58:02 mikko.rap...@bmw.de wrote: Already fixed by merged commit: http://git.openembedded.org/openembedded-core/commit/?id=f62255bfa6c5a322c86 7b7c4ea5686ea7bfab3fe -Mikko My

Re: [OE-core] Post USERADD_PARAM action

2015-05-27 Thread Khem Raj
On May 22, 2015, at 4:37 AM, Laszlo Papp lp...@kde.org wrote: Hi, is it possible to do some post action after useradd_param is executed? I would like to modify the created user's home directory, in this special case the profile. I see that the useradd util has this on desktop, but

Re: [OE-core] [PATCH 1/3] openssl: Fix build with gcc5 on mips64

2015-05-27 Thread Khem Raj
On Mon, May 25, 2015 at 12:22 PM, Bernhard Reutner-Fischer rep.dot@gmail.com wrote: On May 22, 2015 9:56:51 PM GMT+02:00, Khem Raj raj.k...@gmail.com wrote: Patch is submitted upstream as well Signed-off-by: Khem Raj raj.k...@gmail.com --- ...ine-GCC_VERSION-macro-to-cover-upto-gcc-5.patch |

[OE-core] [PATCH 5/5] libav: add recipe for 11 release series

2015-05-27 Thread Kai Kang
Add recipe for libav 11 release series. According to release log, Libav 11 is API-, but not ABI-compatible with the previous major release. So make series 11 as default recipe. Signed-off-by: Kai Kang kai.k...@windriver.com --- meta/recipes-multimedia/libav/libav_11.3.bb | 4 1 file

[OE-core] [PATCH 1/5] gpgme: fix CVE-2014-3564

2015-05-27 Thread Kai Kang
Backport patch to fix CVE-2014-3564. http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=commit;h=2cbd76f Signed-off-by: Kai Kang kai.k...@windriver.com --- .../gpgme-1.4.3/gpgme-fix-CVE-2014-3564.patch | 56 ++ meta/recipes-support/gpgme/gpgme_1.4.3.bb | 4

[OE-core] [PATCH 4/5] libav: upgrade to 9.18

2015-05-27 Thread Kai Kang
Upgrade libav from version 9.16 to 9.18. Remove unused var INC_PR and backport patch to fix CVE-2014-9676. Signed-off-by: Kai Kang kai.k...@windriver.com --- meta/recipes-multimedia/libav/libav.inc| 2 - .../libav/libav/libav-fix-CVE-2014-9676.patch | 98 ++

Re: [OE-core] [PATCH v3 1/5] alsa-plugins: initial recipe

2015-05-27 Thread Khem Raj
On Wed, May 27, 2015 at 9:19 PM, Khem Raj raj.k...@gmail.com wrote: On May 23, 2015, at 11:25 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Fri, 2015-05-22 at 21:51 +0300, Tanu Kaskinen wrote: When PulseAudio is installed, alsa-plugins is needed to provide compatibility

[OE-core] [PATCH 2/5] grep: fix CVE-2015-1345

2015-05-27 Thread Kai Kang
Backport patch to fix CVE-2015-1345. The issue was introduced with v2.18-90-g73893ff, and version 2.5.1a is not affected. Replace tab with spaces in SRC_URI as well. Signed-off-by: Kai Kang kai.k...@windriver.com --- .../grep/grep/grep-fix-CVE-2015-1345.patch | 154 +

[OE-core] [PATCH 3/5] qt4: fix CVE issues

2015-05-27 Thread Kai Kang
Backport patches to fix qt4 CVE issues: * CVE-2015-1858 * CVE-2015-1859 * CVE-2015-1860 Signed-off-by: Kai Kang kai.k...@windriver.com --- meta/recipes-qt/qt4/qt4-4.8.6.inc | 2 + ...Fixes-crash-in-bmp-and-ico-image-decoding.patch | 71 ++

[OE-core] [PATCH 0/5] Fix CVE issues and add new libav recipe

2015-05-27 Thread Kai Kang
* Fix CVE issues for severial packages * Upgrade libav 9.61 -- 9.18 * Add recipe for libav series 11 Build world for x86-64 and qemuarm are fine except some textrel warnings for qemuarm. Should I open new defects that? --Kai The following changes since commit

Re: [OE-core] [PATCH v3 1/5] alsa-plugins: initial recipe

2015-05-27 Thread Khem Raj
On May 23, 2015, at 11:25 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Fri, 2015-05-22 at 21:51 +0300, Tanu Kaskinen wrote: When PulseAudio is installed, alsa-plugins is needed to provide compatibility for ALSA applications. The dependencies are set up so that

Re: [OE-core] [PATCH 2/3] glibc: ignore for musl/uclibc but only for target recipes

2015-05-27 Thread Khem Raj
any issues with this patch, why was it dropped from last pull request ? On Fri, May 22, 2015 at 12:56 PM, Khem Raj raj.k...@gmail.com wrote: we still need nativesdk or native recipes for libc to come from glibc, but only be ignored for target recipes types Change-Id:

[OE-core] [PATCH] alsa-plugins: Install 99-pulseaudio-default.conf when pulseaudio is enabled

2015-05-27 Thread Khem Raj
The source file does not exist when pluseaudio is disabled Change-Id: I78e0b9f4b8e66d8f41415c8672c1cb62c8fc5dc6 Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-multimedia/alsa/alsa-plugins_1.0.29.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

Re: [OE-core] [PATCH 0/4] Support persistent /var/log

2015-05-27 Thread Khem Raj
On Tue, May 26, 2015 at 2:15 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: Randy, Khem, Otavio - this area was the subject of a discussion involving you around the 1.8 release, if you could review this set and comment that would be great. Looked at it but it didnt sound like it

Re: [OE-core] [PATCH v2][2/2] image.bbclass/rootfs.py: use PREFERRED_RPROVIDER to select package

2015-05-27 Thread Jate Sujjavanich
I have taken a look at the code, and there two places that I have found so far that contain the RPROVIDES_* for each package. One is the taskdata at the bitbake level, and the other is the pkgdata directory within the sysroot for the machine's build. The taskdata seems more readily accessible in

[OE-core] [PATCH] openssl: Backport upstreamed version of patch to fix build on mips64

2015-05-27 Thread Khem Raj
Previous patch had a concern as well and this is a direct backport of the patch fixing the problem. Signed-off-by: Khem Raj raj.k...@gmail.com --- ...ine-GCC_VERSION-macro-to-cover-upto-gcc-5.patch | 53 -- ...lcl.h-fix-MIPS-specific-gcc-version-check.patch | 30

[OE-core] RFC: update_data removal

2015-05-27 Thread Richard Purdie
Removing the need for finalization or update_data is something we've idly thought about for a long time. Basically, the whole idea of a specific finalization phase to the data store causes a lof of issues and horrible corner cases. For example, should bitbake call update_data, then expandKeys, or

Re: [OE-core] [PATCH 1/3] populate_sdk_ext: install the latest buildtools-tarball

2015-05-27 Thread Christopher Larson
On Wed, May 27, 2015 at 2:26 PM, Randy Witt randy.e.w...@linux.intel.com wrote: On 05/27/2015 11:54 AM, Christopher Larson wrote: On Tue, May 26, 2015 at 11:09 PM, Chen Qi qi.c...@windriver.com wrote: If we do `bitbake buildtools-tarball' and then after one day do `bitbake

[OE-core] [PATCH] Adding support for directFB to mplayer2 recipe

2015-05-27 Thread Hector Roussille
--- meta-oe/recipes-multimedia/mplayer/mplayer2_git.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-multimedia/mplayer/mplayer2_git.bb b/meta-oe/recipes-multimedia/mplayer/mplayer2_git.bb index 5b0e1de..b208144 100644 ---

Re: [OE-core] [PATCH] Adding support for directFB to mplayer2 recipe

2015-05-27 Thread Jussi Kukkonen
Hi, On 27 May 2015 at 10:41, Hector Roussille hroussi...@adeneo-embedded.com wrote: --- meta-oe/recipes-multimedia/mplayer/mplayer2_git.bb | 3 ++- Please send patches against meta-oe to openembedded-devel list. Jussi -- ___ Openembedded-core

[OE-core] [PATCH][V4] apt: upgrade to 1.0.9.9

2015-05-27 Thread rongqing.li
From: Roy Li rongqing...@windriver.com 1. Upgrade to fix the several CVEs: CVE-2014-0488, CVE-2014-0490 2. Remove apt-0.9.9.4-CVE-2014-0478.patch, which was backport. 3. Romve no-ko-translation.patch, apt-1.0.9.9 has ko translation 4. Update use-host.patch no-curl.patch db_linking_hack.patch and