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 > > > > -Mi

[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 --- a/meta-oe/recipes-multimedia/mplay

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 wrote: > --- > meta-oe/recipes-multimedia/mplayer/mplayer2_git.bb | 3 ++- Please send patches against meta-oe to openembedded-devel list. Jussi -- ___ Openembedded-core mailing list Openembedded-core@lis

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

2015-05-27 Thread rongqing.li
From: Roy Li 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 noconfigure.patch 5. Not b

[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 dependen

[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: dis

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 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 Seems this broke f

[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 --- scripts/wic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wic b/scripts/wic index 1e07dfe..90b36c6 100755 --- a/scripts/w

[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 standard

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 wrote: > ping... > > > On 20/05/15 13:44, Aníbal Limón wrote: >> >> From: Ricardo Ribalda Delgado >> >> If reboot was called from inside the Xserver there could happen a race >> condition w

[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 hand

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

2015-05-27 Thread Martin Jansa
From: Robert Yang 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 --- meta/recipes-kernel/perf/perf.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-k

[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 --- .../gnutls/use-pkg-config-to-locate-zlib.patch | 67 ++ meta/recipes-support/gnutls/

[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 --- 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 index 87f275a..e9b13

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 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 > '/buildarea2/chenqi/poky/build-systemd/tmp/deploy/sdk/ > > poky-glib

[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 --- meta/recipes-devtools/binutils/binutils.inc | 2 +- 1 file changed,

[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 --- meta/recipes-devtools/gcc/gcc-source.inc | 2 +- 1 file change

[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 op

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 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 > command to se

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 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 '/buildarea2/chenqi/poky

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 wrote: > On 05/27/2015 11:54 AM, Christopher Larson wrote: > >> On Tue, May 26, 2015 at 11:09 PM, Chen Qi wrote: >> >> If we do `bitbake buildtools-tarball' and then after one day do `bitbake >>> core-image-minimal -c populate_sdk_ext', we would meet

[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 t

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 me

Re: [OE-core] Post USERADD_PARAM action

2015-05-27 Thread Khem Raj
> On May 22, 2015, at 4:37 AM, Laszlo Papp 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 busybox

[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 a431e5aa572358ba61cf3c9e501f83026

[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 --- .../grep/grep/grep-fix-CVE-2015-1345.patch | 154 + meta/recipes-extended

[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 --- meta/recipes-qt/qt4/qt4-4.8.6.inc | 2 + ...Fixes-crash-in-bmp-and-ico-image-decoding.patch | 71 ++ .../0036-Fixes-crash-in-gif-image-decode

[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 --- meta/recipes-multimedia/libav/libav_11.3.bb | 4 1 file changed, 4 insertions(+) c

[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 --- .../gpgme-1.4.3/gpgme-fix-CVE-2014-3564.patch | 56 ++ meta/recipes-support/gpgme/gpgme_1.4.3.bb | 4 +- 2 files changed, 59

[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 --- meta/recipes-multimedia/libav/libav.inc| 2 - .../libav/libav/libav-fix-CVE-2014-9676.patch | 98 ++ meta/recipes-multimedi

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 > 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 pulseaudio-server depends on

[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 --- meta/recipes-multimedia/alsa/alsa-plugins_1.0.29.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/alsa/alsa

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 wrote: > >> On May 23, 2015, at 11:25 PM, Richard Purdie >> 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 depe

[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 --- ...ine-GCC_VERSION-macro-to-cover-upto-gcc-5.patch | 53 -- ...lcl.h-fix-MIPS-specific-gcc-version-check.patch | 30 .../recipes-connec

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 wrote: > On May 22, 2015 9:56:51 PM GMT+02:00, Khem Raj wrote: >>Patch is submitted upstream as well >> >>Signed-off-by: Khem Raj >>--- >>...ine-GCC_VERSION-macro-to-cover-upto-gcc-5.patch | 53 >>++ >> .../recipes-con

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 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 considered read only rootfs case

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 wrote: > we still need nativesdk or native recipes for libc to come > from glibc, but only be ignored for target recipes types > > Change-Id: Ibaf8114f2aef63f1eadf493b264e78cd92853

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

2015-05-27 Thread ChenQi
On 05/28/2015 12:55 PM, Khem Raj wrote: On Tue, May 26, 2015 at 2:15 AM, Paul Eggleton 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 lik