[OE-core] No recipe for recipes-tweaks/qt5/qtbase_5.2.1.bbappend

2014-06-05 Thread Steffen Sledz
We're currently switching to th daisy branches. According to [1] meta-angstrom depends on openembedded-core, meta-oe, and meta-systemd layers. The angstrom-v2014.06-yocto1.6 branch of meta-angstrom contains recipes-tweaks/qt5/qtbase_5.2.1.bbappend. But there's no qtbase recipe in the required

[OE-core] [PATCH] xorg-font-common.inc: remove shell debug option

2014-06-05 Thread Kai Kang
'set -x' is added to package postinstall scripts. It causes trace information are printed when image first time boots such as core-image-sato. Remove it. Signed-off-by: Kai Kang --- meta/recipes-graphics/xorg-font/xorg-font-common.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/reci

[OE-core] [PATCH] lvm2.inc: EXTRA_OECONF is been overwrited

2014-06-05 Thread Yao Xinpan
EXTRA_OECONF has been assigned before ‘EXTRA_OECONF = "--with-usrlibdir=${libdir}"’. So, ‘EXTRA_OECONF = "--with-usrlibdir=${libdir}"’ should be changed to ‘EXTRA_OECONF += "--with-usrlibdir=${libdir}"’. Signed-off-by: Yao Xinpan --- meta-oe/recipes-support/lvm2/lvm2.inc | 2 +- 1 file changed

[OE-core] [PATCH V3 3/4] grep: upgrade 2.18 to 2.19

2014-06-05 Thread Chen Qi
Upgrade grep from 2.18 to 2.19. Signed-off-by: Chen Qi --- .../grep/{grep_2.18.bb => grep_2.19.bb}|4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/grep/{grep_2.18.bb => grep_2.19.bb} (86%) diff --git a/meta/recipes-extended/grep/grep_2.18.bb

[OE-core] [PATCH V3 2/4] gawk: fix libexec of the old 3.1.5 version

2014-06-05 Thread Chen Qi
${libexec} doesn't necessarily equals to ${libdir}/${BPN}. So fix this problem by using ${libdir}/${BPN} in FILES variable. Signed-off-by: Chen Qi --- meta/recipes-extended/gawk/gawk_3.1.5.bb |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/gawk/ga

[OE-core] [PATCH V3 1/4] gawk: upgrade from 4.0.2 to 4.1.1

2014-06-05 Thread Chen Qi
Upgrade gawk from 4.0.2 to 4.1.1. Signed-off-by: Chen Qi --- .../gawk/{gawk-4.0.2 => gawk-4.1.1}/run-ptest |0 .../gawk/{gawk_4.0.2.bb => gawk_4.1.1.bb} |9 + 2 files changed, 5 insertions(+), 4 deletions(-) rename meta/recipes-extended/gawk/{gawk-4.0.2 => gawk-4.1

[OE-core] [PATCH V3 0/4] Package Upgrades: gawk, grep and shadow

2014-06-05 Thread Chen Qi
This patchset upgrades three packages, gawk, grep and shadow. There's a remaining problem here. After upgrading the shadow package, the 'pwconv' and 'grpconv' commands cannot run successfully in pkg_postinst. I tried to run them in the devshell environment, they succeeded. I digged into the codes

Re: [OE-core] [PATCH V2 1/3] gawk: upgrade from 4.0.2 to 4.1.1

2014-06-05 Thread ChenQi
On 06/05/2014 05:42 PM, Burton, Ross wrote: On 5 June 2014 06:29, Chen Qi wrote: +FILES_gawk-common += "${datadir}/awk/* ${libexecdir}/awk/* ${libexecdir}/*.so" Gawk doesn't install extensions into libexecdir, but $libdir/gawk: AC_SUBST([pkgextensiondir], ['${pkglibdir}']) They may end up in

[OE-core] [PATCH][V2] oprofile: Add PTEST regression testing to oprofile

2014-06-05 Thread Chong Lu
The commit changes the oe-core oprofile recipe by adding the PTEST interface, implementing do_compile_ptest() and do_install_ptest(). The install routine adds several files that only the regression tests require. Also, a patch is necessary to inhibit executing the tests on the build host and to po

Re: [OE-core] [PATCH 1/2] oprofile: Add PTEST regression testing to oprofile

2014-06-05 Thread Chong Lu
On 06/05/2014 11:21 PM, Otavio Salvador wrote: On Thu, Jun 5, 2014 at 5:44 AM, Chong Lu wrote: The commit changes the oe-core oprofile recipe by adding the PTEST interface, implementing do_compile_ptest() and do_install_ptest(). The install routine adds several files that only the regression

Re: [OE-core] [PATCH 1/2] generate-manifest-2.7.py: Add importlib

2014-06-05 Thread Saul Wold
On 06/04/2014 09:10 AM, Matt Fleming wrote: From: Matt Fleming importlib isn't currently included in any of the python packages, so create a new one for recipes that require it. Cc: Paul Eggleton Signed-off-by: Matt Fleming --- meta/recipes-devtools/python/python-2.7-manifest.inc | 13

[OE-core] [PATCH 4/4] fontconfig: enable 64 bit file support

2014-06-05 Thread Saul Wold
When running 32bit code on a large filessytem with 64bit inodes, the fontcache was not being created correctly because an EOVERFLOW was being returned from the fstat when reading the 64 inode on a 32bit system. The fontcache is created at rootfs time on the host system via qemu. [YOCTO #6338] Si

[OE-core] [PATCH 2/4] busybox: put udhcpc in background

2014-06-05 Thread Saul Wold
If the interface is slow to come up udhcpc will continue in the background [YOCTO #6339] Signed-off-by: Saul Wold --- meta/recipes-core/busybox/busybox.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 0c

[OE-core] [PATCH 0/4] 4 Bug fixes!

2014-06-05 Thread Saul Wold
This is a set of patches address 4 bug that need to be addressed in master and daisy. Sau! Saul Wold (4): update-rc.d/useradd: Add additional dependecies busybox: put udhcpc in background freetype: enable 64 bit file support fontconfig: enable 64 bit file support meta/classes/update-r

[OE-core] [PATCH 3/4] freetype: enable 64 bit file support

2014-06-05 Thread Saul Wold
When running 32bit code on a large filessytem with 64bit inodes, the fontcache was not being created correctly because an EOVERFLOW was being returned from the fstat when reading the 64 inode on a 32bit system. The fontcache is created at rootfs time on the host system via qemu. [YOCTO #6338] Si

[OE-core] [PATCH 1/4] update-rc.d/useradd: Add additional dependecies

2014-06-05 Thread Saul Wold
These dependcies are needed to ensure that thier packages are created correctly since these classes have runtime dependiences in their packages but they are not actually created yet at rootfs time. [YOCTO #6072] Signed-off-by: Saul Wold --- meta/classes/update-rc.d.bbclass | 2 ++ meta/classes/

[OE-core] [OE-Core] multi-threaded core dump issues when libc symbols missing

2014-06-05 Thread blloyd
I originally tried to solve this problem a long time ago by changing the gdb package to depend on the selected libc debug packages. That never did get to a state that was accepted for commit. However, even if it did, I've come to realize that it wouldn't really fix the problem. Basically, c

Re: [OE-core] [RFC][PATCH] udev: add udev-utils to RDEPENDS

2014-06-05 Thread Saul Wold
On 06/02/2014 11:58 PM, ChenQi wrote: On 02/03/2014 10:01 PM, David Nyström wrote: On mån 3 feb 2014 14:43:53, Phil Blundell wrote: On Mon, 2014-02-03 at 13:58 +0100, David Nyström wrote: An intended fix for below error message with core-image-lsb, Sending this as an RFC since I dont really k

Re: [OE-core] [PATCH 1/2] oprofile: Add PTEST regression testing to oprofile

2014-06-05 Thread Otavio Salvador
On Thu, Jun 5, 2014 at 5:44 AM, Chong Lu wrote: > The commit changes the oe-core oprofile recipe by adding the PTEST > interface, implementing do_compile_ptest() and do_install_ptest(). > > The install routine adds several files that only the regression tests > require. Also, a patch is necessary

[OE-core] [PATCH v2 1/1] neard: fix for parallel build

2014-06-05 Thread Cristian Iorga
From: Richard Purdie for neard tools/snep-send object might cause a parallel build failure,due to undetected dependency on dbus.h header file. Patch will be submitted upstream. Fixes [YOCTO #6389]. Signed-off-by: Richard Purdie Signed-off-by: Cristian Iorga --- .../neard/neard/Fix-snep-send

[OE-core] [PATCH v2 0/1] neard: fix parallel build

2014-06-05 Thread Cristian Iorga
Second version of the patch, better commit message for the fix patch. The following changes since commit e7114046be6e71fb326477dc882adb814ef6a751: busybox: fix meta-yocto's bbappend's FILESEXTRAPATH (2014-06-03 17:53:13 +0100) are available in the git repository at: git://git.yoctoproject.

Re: [OE-core] [PATCH 1/1] gstreamer1.0-rtsp-server: Add recipe to support gst-rtsp-server

2014-06-05 Thread Otavio Salvador
On Wed, Jun 4, 2014 at 6:53 PM, Alex J Lennon wrote: > A Gstreamer library which provides an API to create an RTSP server (e.g. to > stream RTP to VLC clients and similar). > > Tested, works with GStreamer 1.2.3 + videotestsrc based pipeline on RPi. > > Signed-off-by: Alex J Lennon > --- > .../

[OE-core] [dora][PATCH] gnutls: patch for CVE-2014-3466 backported

2014-06-05 Thread Valentin Popa
Backported patch for CVE-2014-3466. This patch is for dora. Signed-off-by: Valentin Popa --- .../gnutls/gnutls/CVE-2014-3466.patch | 30 ++ meta/recipes-support/gnutls/gnutls_2.12.23.bb | 1 + 2 files changed, 31 insertions(+) create mode 100644 meta/recip

[OE-core] [dylan][PATCH] gnutls: patch for CVE-2014-3466 backported

2014-06-05 Thread Valentin Popa
Backported patch for CVE-2014-3466. This patch is for dylan. Signed-off-by: Valentin Popa --- .../gnutls/gnutls/CVE-2014-3466.patch | 30 ++ meta/recipes-support/gnutls/gnutls_2.12.23.bb | 1 + 2 files changed, 31 insertions(+) create mode 100644 meta/reci

[OE-core] [daisy][PATCH] gnutls: patch for CVE-2014-3466 backported

2014-06-05 Thread Valentin Popa
Backported patch for CVE-2014-3466. This patch is for daisy. Signed-off-by: Valentin Popa --- .../gnutls/gnutls/CVE-2014-3466.patch | 30 ++ meta/recipes-support/gnutls/gnutls_2.12.23.bb | 1 + 2 files changed, 31 insertions(+) create mode 100644 meta/reci

[OE-core] [PATCH] gnutls: upgrade to 3.2.15

2014-06-05 Thread Valentin Popa
Signed-off-by: Valentin Popa --- meta/recipes-support/gnutls/{gnutls_3.2.13.bb => gnutls_3.2.15.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/gnutls/{gnutls_3.2.13.bb => gnutls_3.2.15.bb} (40%) diff --git a/meta/recipes-support/gnutls/gnutls_3.2.13.bb

Re: [OE-core] PR_Service. Sync database only on clean stop?

2014-06-05 Thread Richard Purdie
On Wed, 2014-06-04 at 22:52 +0200, Ricardo Ribalda Delgado wrote: > Hello > > I have been running happily with pr_service for two months. > Unfortunately, due to a power down the computer running the pr server > has stopped. > When I have started the server I have discovered that all the > informa

[OE-core] [PATCH 2/2] libxml2: fix python packaging for nativesdk

2014-06-05 Thread Paul Eggleton
We enable the python module in nativesdk-libxml2, but the python binary used is in the native sysroot and thus you get the module installed in the wrong path. Even with that fixed the python files are still unpackaged, so create an ${PN}-python package and add them to it. (This does not affect the

[OE-core] [PATCH 1/2] libarchive: avoid dependency on e2fsprogs

2014-06-05 Thread Paul Eggleton
libarchive's configure script looks for ext2fs/ext2_fs.h in order to use some defines for file attributes support if present (but doesn't link to any additional libraries.) There is no configure option to disable this, and if e2fsprogs is rebuilding between do_configure and do_compile you can curre

[OE-core] [PATCH 0/2] libarchive / libxml2 fixes

2014-06-05 Thread Paul Eggleton
A patch for a libarchive floating dependency, plus a second patch for a nativesdk-libxml2 build failure that I found when testing the first. The following changes since commit f8125a1e9b6893a12355d55d4df584a8d97f0bff: image_types: Fix ubi filesystem return codes (2014-06-03 16:45:18 +0100) a

Re: [OE-core] [PATCH V2 1/3] gawk: upgrade from 4.0.2 to 4.1.1

2014-06-05 Thread Burton, Ross
On 5 June 2014 06:29, Chen Qi wrote: > +FILES_gawk-common += "${datadir}/awk/* ${libexecdir}/awk/* > ${libexecdir}/*.so" Gawk doesn't install extensions into libexecdir, but $libdir/gawk: AC_SUBST([pkgextensiondir], ['${pkglibdir}']) They may end up in the same location but that can't be guara

[OE-core] [PATCH 2/2] oprofile: Determine the root home directory dynamically

2014-06-05 Thread Chong Lu
This commit detects the root home directory dynamically with changes to the opcontrol script and the oprofile gui app source. The commit replaces an earlier fix that detected and adjusted a 'non-standard' root home directory at build time. The advantage of this patch is that the oprofile tools ar

[OE-core] [PATCH 1/2] oprofile: Add PTEST regression testing to oprofile

2014-06-05 Thread Chong Lu
The commit changes the oe-core oprofile recipe by adding the PTEST interface, implementing do_compile_ptest() and do_install_ptest(). The install routine adds several files that only the regression tests require. Also, a patch is necessary to inhibit executing the tests on the build host and to po

[OE-core] [PATCH 0/2] oprofile: Add PTEST and Determine the root home directory dynamically

2014-06-05 Thread Chong Lu
root@qemux86:/usr/lib/oprofile/ptest# ./run-ptest PASS: libdb/tests db_test PASS: libop/tests alloc_counter_tests PASS: libop/tests cpu_type_tests PASS: libop/tests load_events_files_tests PASS: libop/tests mangle_tests PASS: libop/tests parse_event_tests PASS: libop/tests utf8_checker.sh PASS: li

[OE-core] [PATCH] oeqa/utils/commands.py: add support for postconfig option

2014-06-05 Thread Corneliu Stoicescu
Adding support for postconfig option to the bitbake() and related methods. This enables us to use 'bitbake -R postconfig_file '. Usage: bitbake(cmd, postconfig="some confguration") 'postconfig_file' would contain what we add in 'postconfig' Other methods affected: get_bb_env(), get_bb_var() Si