Re: [OE-core] [PATCH][v2] xmlto: xsltproc is required by both native and target

2015-09-24 Thread Rongqing Li
ping -R On 2015年09月14日 08:32, Rongqing Li wrote: ping -Roy On 2015年09月06日 13:19, Rongqing Li wrote: ping -Roy On 2015年08月26日 13:55, rongqing...@windriver.com wrote: From: Roy Li xsltproc is used to perform the XSL-T transformation by xmlto by default, so it is required by both native an

[OE-core] Cannot apply patches out of meta bsp after applied a kern-tool patch

2015-09-24 Thread LIYONG
Hi all, After applied the below patch, bitbake cannot apply these patches in my app layer. For example, there is a kernel patch in meta-app/recipes-kernel/linux-yocto/linux-yocto, I add the file in linux-yocto_%.bbappend file. bitbake yocto-linux will fail with "do patch error". If I revert th

[OE-core] [PATCH][V2] sstate: run recipe-provided hooks outside of ${B}

2015-09-24 Thread Ross Burton
To avoid races between the sstate tasks/hooks using ${B} as the cwd, and other tasks such as cmake_do_configure which deletes and re-creates ${B}, ensure that all sstate hooks are run in the right directory, and run the prefunc/postfunc in WORKDIR. Signed-off-by: Ross Burton --- meta/classes/ss

[OE-core] [PATCH] oeqa/testimage: Remove absolute path to oeqa from json

2015-09-24 Thread Lucian Musat
In the json file the whole datastore is serialized which contains absolute path to the oeqa folder. This breaks the functionality when trying to run the tests from other machines. Signed-off-by: Lucian Musat --- meta/classes/testimage.bbclass | 11 ++- 1 file changed, 10 insertions(+), 1

Re: [OE-core] [PATCH 0/6] Fixes for mutilib SDK

2015-09-24 Thread Richard Purdie
On Thu, 2015-09-24 at 14:29 +0800, Robert Yang wrote: > > On 09/24/2015 06:00 AM, Richard Purdie wrote: > > On Tue, 2015-09-22 at 10:45 +0800, Robert Yang wrote: > >> Hi RP and Ross, > >> > >> These patches are required by multilib's do_rootfs and do_populate_sdk, > >> otherwise they are broken or

[OE-core] [PATCH 0/1] iproute2: fix the configure process

2015-09-24 Thread Chen Qi
The following changes since commit 2ad7308ee7166641eff99f3b9fe6794de143f6bc: oeqa/utils/qemurunner.py: Remove duplicate message on LoggingThread start (2015-09-22 18:13:02 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib ChenQi/iproute2-con

[OE-core] [PATCH 1/1] iproute2: fix the configure process

2015-09-24 Thread Chen Qi
Previously, the iproute2's configure script is actually run in the do_compile stage. There's a Makefile rule 'all: Config' which makes the configure process run to generate the Config file. However, this makes it hard to fix the dependency problems. We need to generate the Config file in the do_co

[OE-core] [PATCH] oeqa/runexported: Added default json file name as first parameter.

2015-09-24 Thread Lucian Musat
Instead of exiting when no parameter is given the default json file name should be used. Signed-off-by: Lucian Musat --- meta/lib/oeqa/runexported.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeqa/runexported.py index 4213cab..d60

[OE-core] [PATCH] oeqa/runexported: Fix a problem with ssh_target_log existing in folder.

2015-09-24 Thread Lucian Musat
When copying the exported tests to a remote machine ssh_target_log can be transformed from softlink to file. This will recreate the link. Signed-off-by: Lucian Musat --- meta/lib/oeqa/runexported.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeq

[OE-core] [PATCH] gnutls: cleanup buildpaths from gnutls.pc

2015-09-24 Thread wenzong.fan
From: Wenzong Fan * gnutls.pc: -L/path/to/tmp/sysroots/qemux86-64/lib64 -> -L/lib64 Signed-off-by: Wenzong Fan --- meta/recipes-support/gnutls/gnutls.inc | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc

[OE-core] [PATCH] curl: cleanup buildpaths from curl-config

2015-09-24 Thread wenzong.fan
From: Wenzong Fan * curl-config: -L/path/to/tmp/sysroots/qemux86-64/usr/lib64 -> -L/usr/lib64 --sysroot=/path/to/tmp/sysroots/qemux86-64' -> --sysroot= Signed-off-by: Wenzong Fan --- meta/recipes-support/curl/curl_7.44.0.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recip

[OE-core] [PATCH] glib-2.0: cleanup buildpaths from pkgconfig files

2015-09-24 Thread wenzong.fan
From: Wenzong Fan * gio-2.0.pc: -L/path/to/tmp/sysroots/qemux86-64/lib64 -> -L/lib64 * gobject-2.0.pc: -L/path/to/tmp/sysroots/qemux86-64/usr/lib64/../lib64 -> -L/usr/lib64/../lib64 Signed-off-by: Wenzong Fan --- meta/recipes-core/glib-2.0/glib.inc | 6 ++ 1 file changed, 6 insert

Re: [OE-core] [PATCH] gdk-pixbuf: Avoid rebuild failures

2015-09-24 Thread Otavio Salvador
Hello Richard, Thanks for hunting this bug, this was very annoying and hard to figure. It does seem to address the issue in our builder. On Wed, Sep 23, 2015 at 7:32 PM, Richard Purdie wrote: > If gdkpixbuf-native rebuilds and there are stale (broken) modules lying > around, > it can fail to ru

Re: [OE-core] [PATCH 0/6] Fixes for mutilib SDK

2015-09-24 Thread Robert Yang
On 09/24/2015 05:18 PM, Richard Purdie wrote: On Thu, 2015-09-24 at 14:29 +0800, Robert Yang wrote: On 09/24/2015 06:00 AM, Richard Purdie wrote: On Tue, 2015-09-22 at 10:45 +0800, Robert Yang wrote: Hi RP and Ross, These patches are required by multilib's do_rootfs and do_populate_sdk, ot

Re: [OE-core] [PATCH] gnutls: cleanup buildpaths from gnutls.pc

2015-09-24 Thread Jussi Kukkonen
On 24 September 2015 at 14:04, wrote: > From: Wenzong Fan > > * gnutls.pc: > -L/path/to/tmp/sysroots/qemux86-64/lib64 -> -L/lib64 > I'm not seeing this problem and gnutls.pc.in file looks ok to me. Any idea how I could reproduce this? Jussi Signed-off-by: Wenzong Fan > --- > meta/recipes

[OE-core] [PATCH v3 04/10] oe-selftest: devtool: add method for checking srctree repo

2015-09-24 Thread Markus Lehtonen
Removes some code duplication. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/selftest/devtool.py | 49 ++- 1 file changed, 18 insertions(+), 31 deletions(-) diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index b8b872c..

[OE-core] [PATCH v3 06/10] devtool: update-recipe: add new patches in correct order

2015-09-24 Thread Markus Lehtonen
When adding multiple new patches append them to SRC_URI in correct order so that they apply correctly. Signed-off-by: Markus Lehtonen --- scripts/lib/devtool/standard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/stan

[OE-core] [PATCH v3 00/10] devtool: improve handling of local source files

2015-09-24 Thread Markus Lehtonen
Third iteration of the patchset to improve handling of local source files. Functional changes after v2: - name of the subdirectory containing local sources in srctree is now named 'oe-local-files' - oe-local-files directory is not automatically committed into srctree when doing extract operatio

[OE-core] [PATCH v3 09/10] devtool: better support for local source files

2015-09-24 Thread Markus Lehtonen
* extract: Copy all local source files (i.e. non-compressed/non-arcived SRC_URI files that have file:// URI prefix) - excluding patches - to the srctree repository. The files will be placed in a subdirectory called 'oe-local-files'. The oe-local-files directory is not committed to the Git

[OE-core] [PATCH v3 08/10] devtool: file mover function that creates target dir

2015-09-24 Thread Markus Lehtonen
Helper function for replacing a pattern like: target_dir = os.path.dirname(target) bb.utils.mkdirhier(target_dir) shutil.move(source, target) Signed-off-by: Markus Lehtonen --- scripts/lib/devtool/standard.py | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --g

[OE-core] [PATCH v3 02/10] oe.patch.GitApplyTree: add paths argument to extractPatches

2015-09-24 Thread Markus Lehtonen
Makes it possible to define which paths are included in the patches. Signed-off-by: Markus Lehtonen --- meta/lib/oe/patch.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index 7441214..2bf501e 100644 --- a/meta/lib/oe/patch.p

[OE-core] [PATCH v3 10/10] devtool: modify: make bitbake use local files from srctree

2015-09-24 Thread Markus Lehtonen
This change makes it possible to have local files (non-remote SRC_URI files, i.e. files that are located in the "recipe space") under the srctree even if S!=WORKDIR. The files must be placed under the 'local-files' subdirectory. Complements the previous patch that imports local files into srctree.

Re: [OE-core] [PATCH] gnutls: cleanup buildpaths from gnutls.pc

2015-09-24 Thread Burton, Ross
On 24 September 2015 at 12:49, Jussi Kukkonen wrote: > I'm not seeing this problem and gnutls.pc.in file looks ok to me. Any > idea how I could reproduce this? > Also, just sedding them out of the resulting file seems suboptimal compared to finding out where the path is coming from and fixing th

[OE-core] [PATCH v3 01/10] recipeutils: implement get_recipe_local_files()

2015-09-24 Thread Markus Lehtonen
Signed-off-by: Markus Lehtonen --- meta/lib/oe/recipeutils.py | 16 1 file changed, 16 insertions(+) diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py index 35b88d3..56056db 100644 --- a/meta/lib/oe/recipeutils.py +++ b/meta/lib/oe/recipeutils.py @@ -336,6 +33

[OE-core] [PATCH v3 03/10] oe-selftest: devtool: add method for checking workspace dir

2015-09-24 Thread Markus Lehtonen
In order to remove some code duplication. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/selftest/devtool.py | 63 +++ 1 file changed, 24 insertions(+), 39 deletions(-) diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py inde

[OE-core] [PATCH v3 07/10] devtool: update_recipe: refactor patch generation

2015-09-24 Thread Markus Lehtonen
Implement new function that handles patch file generation. The new function also does the discovery of new, updated and deleted patches. Signed-off-by: Markus Lehtonen --- scripts/lib/devtool/standard.py | 119 1 file changed, 72 insertions(+), 47 deletio

[OE-core] [PATCH v3 05/10] oe-selftest: devtool: add method for checking repo status

2015-09-24 Thread Markus Lehtonen
New method for checking the status of the working tree of a repository. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/selftest/devtool.py | 87 --- 1 file changed, 35 insertions(+), 52 deletions(-) diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib

Re: [OE-core] [PATCH] sanity.bbclass: show warning when chmod fails

2015-09-24 Thread Martin Jansa
On Wed, Sep 23, 2015 at 06:13:56PM +0200, Martin Jansa wrote: > From: Alex Franco > > * for some reason this part of: > http://patchwork.openembedded.org/patch/102561/ > wasn't ever merged. I've changed the configuration on my jenkins servers, so that now it doesn't fail. In case someone ne

Re: [OE-core] Cannot apply patches out of meta bsp after applied a kern-tool patch

2015-09-24 Thread Bruce Ashfield
On Thu, Sep 24, 2015 at 4:24 AM, LIYONG wrote: > Hi all, > > After applied the below patch, bitbake cannot apply these patches in my app > layer. For example, there is a kernel patch in > meta-app/recipes-kernel/linux-yocto/linux-yocto, I add the file in > linux-yocto_%.bbappend file. bitbake y

Re: [OE-core] Cannot apply patches out of meta bsp after applied a kern-tool patch

2015-09-24 Thread Bruce Ashfield
On Thu, Sep 24, 2015 at 9:47 AM, Bruce Ashfield wrote: > On Thu, Sep 24, 2015 at 4:24 AM, LIYONG wrote: >> Hi all, >> >> After applied the below patch, bitbake cannot apply these patches in my app >> layer. For example, there is a kernel patch in >> meta-app/recipes-kernel/linux-yocto/linux-yoc

[OE-core] [PATCH] oeqa/decorators: Add timestamp to decorator logs.

2015-09-24 Thread Lucian Musat
To avoid logs being overwriten when running the automated tests multiple times, log files include timestamps in their names and a link is created to point to the latest one. Signed-off-by: Lucian Musat --- meta/lib/oeqa/utils/decorators.py | 17 +++-- 1 file changed, 15 insertions(+)

[OE-core] [PATCH] image types: add hdddirect

2015-09-24 Thread Patrick Ohly
When image-vm.bbclass was introduced, it indirectly also introduced a ".hdddirect" image type based on boot-directdisk.bbclass. However, one could only get that image when also enabling at least one of the virtual machine images. The .hdddirect images are useful by themselves. By registering image

[OE-core] [PATCHv2 1/2] Empty image: core-image-empty recipe

2015-09-24 Thread Alex Franco
Added core-image-empty recipe in meta-selftest/recipes-test/images [YOCTO #7664] Signed-off-by: Alex Franco --- meta-selftest/recipes-test/images/core-image-empty.bb | 7 +++ 1 file changed, 7 insertions(+) create mode 100644 meta-selftest/recipes-test/images/core-image-empty.bb diff --gi

[OE-core] [PATCHv2 2/2] Empty image:rootfs.py:handle empty PACKAGE_INSTALL

2015-09-24 Thread Alex Franco
rootfs.py: added a test in DpkgOpkgRootfs which skips the get package post installs step (get_pkgs_postinsts), when PACKAGE_INSTALL is empty. [YOCTO #7664] Signed-off-by: Alex Franco --- meta/lib/oe/rootfs.py | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/meta/lib/oe/r

[OE-core] [PATCH] runqemu-export-rootfs: update location of unfsd binary

2015-09-24 Thread Maxin B. John
Update the location of unfsd binary from "/usr/sbin" to "/usr/bin" in runqemu-export-rootfs [YOCTO #8315] Signed-off-by: Maxin B. John --- scripts/runqemu-export-rootfs | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-ex

[OE-core] [PATCH] runqemu: don't complain about conflicting machines if they are equal

2015-09-24 Thread Pascal Bach
When the MACHINE variable was set as an environment variable, via "export MACHINE=qemuarm" and runqemu was executed as "runqemu qemuarm" The confusing error message appears: Error: conflicting MACHINE types [qemuarm] and [qemuarm] This checks if the two values are equal, in that case there is no

Re: [OE-core] [PATCH 0/6] Fixes for mutilib SDK

2015-09-24 Thread Burton, Ross
On 24 September 2015 at 12:29, Robert Yang wrote: > Now these patches have fixed the problem, so both connman-gnome > and lib32-connman-gnome have installed, if we want to make sure > /usr/bin/connman-applet is 32bit, we need set: > > RPM_PREFER_ELF_ARCH = "1" > > If we'd like 64bit wins, we need

Re: [OE-core] [PATCH] oeqa/runexported: Fix a problem with ssh_target_log existing in folder.

2015-09-24 Thread Burton, Ross
On 24 September 2015 at 12:00, Lucian Musat wrote: > if os.path.islink(sshloglink): > os.unlink(sshloglink) > +elif os.path.isfile(sshloglink): > +os.remove(sshloglink) > So if sshloglink is a link or a file, delete it. How is this different from j

Re: [OE-core] [oe-commits] Ross Burton : Revert "systemd: disable problematic GCC 5.2 optimizations"

2015-09-24 Thread Richard Purdie
On Thu, 2015-09-24 at 07:55 +0200, Martin Jansa wrote: > On Wed, Sep 23, 2015 at 09:46:27PM +, g...@git.openembedded.org wrote: > > Module: openembedded-core.git > > Branch: master-next > > Commit: e5e69130c3cf20a95bab1561716d7e54db0fe1ee > > URL: > > http://git.openembedded.org/?p=openembe

[OE-core] [PATCH v2 1/3] prserv/serv: Start/Stop daemon using ip instead of host

2015-09-24 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval In cases where hostname is given instead of an IP (i.e. localhost instead of 127.0.0.1) when stopping the server with bitbake-prserv --stop, the server shows a misleading message indicating that the daemon was not found, where it is actually stopped. This patch converts ho

[OE-core] [PATCH v2 2/3] prserv/serv.py: Better messaging when starting/stopping the server with port=0

2015-09-24 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval When starting the server using port=0, the server actually starts with a different port, so print a message with this new value. When stopping the server with port=0, advise the user which ports the server is listening to, so next time it tries to close it, user can pick u

[OE-core] [PATCH v2 0/3] PRServer: Fixes daemon issues

2015-09-24 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval First two patches fix issues when using hostnames instead of IPs. Third patch disconnect the DB manually, not relaying on this task into a __del__ function. Detail is given on each patch. Fixes 8258, 8560 and 8215 Changes from v1: * First patch: No changes

[OE-core] [PATCH v2 3/3] prserv/serv: Close the DB connection out of class destructor

2015-09-24 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval When launching the PR server daemon, the PRData __del__ function was being called (no reason found yet) where the DB connection closed, thus following PR updates were not getting into the DB. This patch closes the connection explicitly, not relaying on the __del__ function

Re: [OE-core] [PATCH] lsb: add lsbinitscripts and util-linux rdepends

2015-09-24 Thread Otavio Salvador
On Wed, Sep 9, 2015 at 4:56 PM, Alex Franco wrote: > Building a base image such as core-image-minimal with lsb and then > attempting to source /lib/lsb/init-functions, then using the start > _daemon function (to start a daemon, such as syslogd) fails, since > /lib/lsb/init-functions use functions

[OE-core] [PATCH] gstreamer1.0-plugins-bad: change glimagesink rank to marginal

2015-09-24 Thread Alexander Kanavin
[YOCTO #7787] Signed-off-by: Alexander Kanavin --- .../0001-glimagesink-Downrank-to-marginal.patch| 32 ++ .../gstreamer/gstreamer1.0-plugins-bad_1.4.5.bb| 4 ++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-multimedia/gstreamer/

Re: [OE-core] Including machine specific mesa-driver

2015-09-24 Thread Nicolas Dechesne
On Wed, Sep 23, 2015 at 11:50 PM, Richard Purdie wrote: > > The idea was that the machine config can nominate the "X11" config it > needs by indicating the drivers that make sense for this piece of > hardware. The XSERVER variable is then used to decide which pieces of X > to pull in and pulling i

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: change glimagesink rank to marginal

2015-09-24 Thread Nicolas Dechesne
On Thu, Sep 24, 2015 at 10:42 AM, Alexander Kanavin wrote: > [YOCTO #7787] > > Signed-off-by: Alexander Kanavin > --- > .../0001-glimagesink-Downrank-to-marginal.patch| 32 > ++ > .../gstreamer/gstreamer1.0-plugins-bad_1.4.5.bb| 4 ++- > 2 files changed, 35 insertio

Re: [OE-core] Including machine specific mesa-driver

2015-09-24 Thread Richard Purdie
On Thu, 2015-09-24 at 11:36 -0700, Nicolas Dechesne wrote: > On Wed, Sep 23, 2015 at 11:50 PM, Richard Purdie > wrote: > > > > The idea was that the machine config can nominate the "X11" config it > > needs by indicating the drivers that make sense for this piece of > > hardware. The XSERVER varia

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: change glimagesink rank to marginal

2015-09-24 Thread Burton, Ross
On 24 September 2015 at 21:03, Nicolas Dechesne wrote: > fwiw... on my platforms (QCOM DragonBoard) I rely on glimagesink, and > we have good OpenGL support.. but I understand that this isn't the > norm for ARM, and more an exception.. I can manage that in my BSP > layer, if that ever gets merged

[OE-core] [PATCH 2/3] initramfs-framework:add virtual reference

2015-09-24 Thread Alejandro Joya
This recipe have a hardcoded dependency to busybox, in order to be able to have a flexible selection, instead of the hardcoded dependency,now is point to virtual reference base-utils. Signed-off-by: Alejandro Joya --- meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb | 2 +- 1 file ch

[OE-core] [PATCH V3 0/3] Dynamic common utilities

2015-09-24 Thread Alejandro Joya
It provide a virtual reference for the common utilities. it replace of the lock to busybox, it will be simple exchange between other common utilities like gnu core utils or toybox among others. The following changes since commit f0189829498e30231d826c9f55aad73e622d076e: qemu: Update to upstream

[OE-core] [PATCH V3 3/3] packagegroup-core-boot:change to virtual reference

2015-09-24 Thread Alejandro Joya
This recipe have a hardcoded dependency to busybox, in order to be able to have a flexible selection, instead of the hardcoded dependency,now is point to virtual reference base-utils. Signed-off-by: Alejandro Joya --- meta/recipes-core/packagegroups/packagegroup-core-boot.bb | 7 +-- 1 fil

[OE-core] [PATCH V3 1/3] core-image-minimal-initramfs: replace dependency

2015-09-24 Thread Alejandro Joya
This recipe have a hardcoded dependency to busybox, in order to be able to have a flexible selection, instead of the hardcoded dependency,now is point to virtual reference. Signed-off-by: Alejandro Joya --- meta/recipes-core/images/core-image-minimal-initramfs.bb | 2 +- 1 file changed, 1 inser

[OE-core] [PATCH][fido] systemd: fix tmpfiles location when multilib in use

2015-09-24 Thread Reinette Chatre
Systemd's configuration files for creation, deletion and cleaning of volatile and temporary files are installed in /usr/lib even when multilib is in use (when /usr/lib64 is available). In this check the systemd.conf file will not be found if libdir is /usr/lib64 so we fix the path to match this fil

Re: [OE-core] [PATCH] gdk-pixbuf: Avoid rebuild failures

2015-09-24 Thread Richard Purdie
On Thu, 2015-09-24 at 08:27 -0300, Otavio Salvador wrote: > Hello Richard, > > Thanks for hunting this bug, this was very annoying and hard to > figure. It does seem to address the issue in our builder. Sadly, whilst I merged it and it does fix that problem, I suspect this causes: https://autobu

[OE-core] [PATCH 0/2] linux-yocto/4.1: -rt and common-pc updates

2015-09-24 Thread Bruce Ashfield
Hi all, During some routine merges over the last weeks, some of the branches in the 4.1 kernel managed to get reset to invalid SRCREVs, which meant that some changes (i.e. arm fixes for gcc5) were dangling within the repo. We've fixed the standard kernel references now .. but a bug report about -r

[OE-core] [PATCH 1/2] linux-yocto/4.1: common-pc-drivers: add CONFIG_PATA_SCH

2015-09-24 Thread Bruce Ashfield
Updating the meta SRCREVs to integrate the following config change: Author: Saul Wold Date: Tue Sep 22 07:23:06 2015 -0700 common-pc-drivers: add CONFIG_PATA_SCH The NUC uses this hardware and should still operate correctly with a genericx86 Signed-off-by: Saul Wold Sign

[OE-core] [PATCH 2/2] linux-yocto/4.1: rt update to 4.1.x-rt8

2015-09-24 Thread Bruce Ashfield
The -rt build suffered the same breakage in master as the standard kernel builds: due to a bad git history merge, existing patches were dropped from branches. This meant that we were missing the -rt changes, which re-introduced some failures with linux-yocto-rt. With these SRCREV updates, we have

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: change glimagesink rank to marginal

2015-09-24 Thread Nicolas Dechesne
On Thu, Sep 24, 2015 at 1:19 PM, Burton, Ross wrote: > Does your platform support Xvideo? If not then glimagesink will likely be > picked anyway. no, it doesn't. i will give this a try, but not before next week. -- ___ Openembedded-core mailing list O

[OE-core] [PATCH] systemd: replace ${exec_prefix}/lib with ${nonarch_libdir}

2015-09-24 Thread Reinette Chatre
In meta/conf/bitbake.conf there is: export nonarch_libdir = "${exec_prefix}/lib" We can thus replace the uses of ${exec_prefix}/lib with ${nonarch_libdir} Suggested-by: Ross Burton Signed-off-by: Reinette Chatre --- meta/recipes-core/systemd/systemd_225.bb | 20 ++-- 1 file cha

Re: [OE-core] Cannot apply patches out of meta bsp after applied a kern-tool patch

2015-09-24 Thread LIYONG
Thanks Bruce! I have created a bug and added the .patch file and the error message I received, BUG ID is 8395. https://bugzilla.yoctoproject.org/show_bug.cgi?id=8395 Thanks, Yong > Date: Thu, 24 Sep 2015 10:01:31 -0400 > Subject: Re: [OE-core] Cannot apply

[OE-core] [PATCH 0/1] cups: fix pam configuration file's permission

2015-09-24 Thread Chen Qi
The following changes since commit 2ad7308ee7166641eff99f3b9fe6794de143f6bc: oeqa/utils/qemurunner.py: Remove duplicate message on LoggingThread start (2015-09-22 18:13:02 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib ChenQi/cups-pam

[OE-core] [PATCH 1/1] cups: fix pam configuration file's permission

2015-09-24 Thread Chen Qi
The files under /etc/pam.d should be 0644. The /etc/pam.d/cups file has 0444 after 'make install'. This patch fixes this problem. Signed-off-by: Chen Qi --- meta/recipes-extended/cups/cups.inc | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/recipes-extended/cups/cups.inc b/meta/re

[OE-core] [PATCH 0/1] Fix ltp build failure with gcc 5

2015-09-24 Thread kai.kang
From: Kai Kang Found and test with configure: SELECTED_OPTIMIZATION="-O0 -fno-omit-frame-pointer -g -pipe" The following changes since commit 5a51fb28dbdfcae8ceb503a5290532dd38aeb09f: bitbake: prserv/serv: Start/Stop daemon using ip instead of host (2015-09-24 17:55:05 +0100) are availab

[OE-core] [PATCH 1/1] ltp: replace 'inline' with 'static inline' for gcc 5.x

2015-09-24 Thread kai.kang
From: Kai Kang gcc 5.x defaults to -std=gnu11 instead of -std=gnu89 which causes semantics for inline functions changes. The standalone 'inline' causes error with gcc 5 such as: git/testcases/kernel/syscalls/kill/kill10.c:355: undefined reference to `k_sigaction' Replace inline with static inl

Re: [OE-core] [PATCH] gnutls: cleanup buildpaths from gnutls.pc

2015-09-24 Thread wenzong fan
On 09/24/2015 07:49 PM, Jussi Kukkonen wrote: On 24 September 2015 at 14:04, mailto:wenzong@windriver.com>> wrote: From: Wenzong Fan mailto:wenzong@windriver.com>> * gnutls.pc: -L/path/to/tmp/sysroots/qemux86-64/lib64 -> -L/lib64 I'm not seeing this problem and gnutls.p

[OE-core] [PATCH 1/4] powertop: Include right headers for timval struct

2015-09-24 Thread Khem Raj
Signed-off-by: Khem Raj --- ...0001-include-rquired-headers-for-typedefs.patch | 45 ++ meta/recipes-kernel/powertop/powertop_2.7.bb | 4 +- 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-kernel/powertop/powertop/0001-include-rquired-

[OE-core] [PATCH V2] busybox: Use CC instead of bare LD to be the Linker

2015-09-24 Thread Khem Raj
This patch was on mailing list, another patch to make sure -r is not passed directly but via -Wl switch is added. This was exposed when using clang and gold linker, clang does not have -r switch to do relocatable objects and problem happens specific to OE becuase we use LD = CC now what happens i

[OE-core] [PATCH 4/4] waffle: Fix build with musl

2015-09-24 Thread Khem Raj
Backport needed patches for compilation fixes on musl Signed-off-by: Khem Raj --- ...-threads-Use-PTHREAD_MUTEX_RECURSIVE-by-d.patch | 54 ++ meta/recipes-graphics/waffle/waffle_1.5.1.bb | 4 +- 2 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 meta

[OE-core] [PATCH 2/4] dhcp: Include sys/types.h for u_int* defs

2015-09-24 Thread Khem Raj
Signed-off-by: Khem Raj --- .../dhcp/0001-include-missing-sys-types.h.patch| 56 ++ meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb | 1 + 2 files changed, 57 insertions(+) create mode 100644 meta/recipes-connectivity/dhcp/dhcp/0001-include-missing-sys-types.h.patch

[OE-core] [PATCH 3/4] blktrace: Include

2015-09-24 Thread Khem Raj
Signed-off-by: Khem Raj --- ...-include-sys-types.h-for-dev_t-definition.patch | 30 ++ meta/recipes-kernel/blktrace/blktrace_git.bb | 4 ++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-kernel/blktrace/blktrace/0001-include-sys-typ

[OE-core] [PATCH] pxz: Add recipe and use it for xz image type

2015-09-24 Thread Khem Raj
pxz results in significant time saving when generating xz filetypes for images due to parallelization support a simple test on ubuntu build host with 16 CPUs time xz -M 50% -f -k -c -e -9 --check=crc32 CX041AEI_PROD_default_2015061105sdy-dbg.rootfs.cpio >CX041AEI_PROD_default_2015061105

Re: [OE-core] [PATCH] pxz: Add recipe and use it for xz image type

2015-09-24 Thread Khem Raj
ignore this one from applying yet. its still premature but if folks can test it out would be appreciated. > On Sep 24, 2015, at 9:59 PM, Khem Raj wrote: > > pxz results in significant time saving when generating xz filetypes for > images due to parallelization support > > a simple test on ubun

Re: [OE-core] [PATCH V2] busybox: Use CC instead of bare LD to be the Linker

2015-09-24 Thread Khem Raj
this is a resend of the very same patch which was send 2-3 weeks ago > On Sep 24, 2015, at 9:59 PM, Khem Raj wrote: > > This patch was on mailing list, another patch to make sure -r is not > passed directly but via -Wl switch is added. > > This was exposed when using clang and gold linker, clan

[OE-core] [PATCH] busybox: fix a ash memory leak

2015-09-24 Thread rongqing.li
From: Roy Li Signed-off-by: Roy Li --- .../busybox/0001-ash-fix-memory-leak-in-ash.patch | 54 ++ meta/recipes-core/busybox/busybox_1.23.2.bb| 1 + meta/recipes-core/busybox/busybox_git.bb | 1 + 3 files changed, 56 insertions(+) create mode 100644 met

Re: [OE-core] [PATCH] busybox: fix a ash memory leak

2015-09-24 Thread ChenQi
This patch has been rejected by upstream as follows. Regards, Chen Qi = Original Email Start = On Wed, Dec 24, 2014 at 6:53 AM, Rich Felker wrote: On Wed, Dec 24, 2014 at 10:32:19AM +0800, yhu2 wrote: The script