Re: [OE-core] Review request 0/21: ltp: add libwww-perl-perl to RDEPENDS

2016-08-29 Thread Yu, Mingli
On 2016年08月29日 19:52, Alexander Kanavin wrote: On 08/29/2016 05:16 AM, mingli...@windriver.com wrote: The series add libwww-perl-perl to RDEPENDS for ltp as STPfailure_report.pl provided by ltp depends on LWP/Simple.pm which is provided by libwww-perl-perl You are adding 20 new recipes, just

[OE-core] [PATCH] image_types: check COMPRESS_DEPENDS for backwards compatibility

2016-08-29 Thread Mikko Ylinen
To complete the transition/renaming to chained image type CONVERSION while maintaining bacwards compatibility to COMPRESS(ION), make sure also COMPRESS_DEPENDS is checked. Without this, the dependencies for legacy COMPRESSIONTYPES do not get built. Signed-off-by: Mikko Ylinen --- meta/classes/im

Re: [OE-core] [PATCH] init-install*: only pick root mmc devices

2016-08-29 Thread Saul Wold
On Wed, 2016-08-10 at 13:14 +0500, Awais Belal wrote: > Some eMMC devices show special sub-devices such as mmcblk0boot0 > etc. The installation script currently pick all of them up and > displays it to the user which makes some confusions because these > sub-devices are pretty small and complete in

[OE-core] [PATCH 1/1] init-install: Fixes the install script failing when not finding any mmcblk devices

2016-08-29 Thread Alejandro Hernandez
The init-install.sh and init-install-efi.sh scripts perform a check to see which devices are available on a booted system for installation. Recently, the way we check for these devices changed on 993bfb, greping for devices found on /sys/block/, this change caused the installer to fail (at least)

[OE-core] [PATCH V1] unzip: fixes strange output

2016-08-29 Thread Edwin Plauchu
From: Edwin Plauchu This fixes commit 763a3d424bccf559a8d6add3dc1f2746c82f2933 Output was strange when using unzip to extract zip file. This patch fixed so. [YOCTO #9551] Signed-off-by: Edwin Plauchu --- .../unzip/unzip/fix-security-format.patch | 198 - 1 file c

Re: [OE-core] [PATCH 1/1] gcc-runtime.inc: add CPP support for mips64-n32 tune

2016-08-29 Thread Mark Hatle
On 8/30/16 6:45 AM, Juro Bystricky wrote: > This patch fixes the problem where the CPP compiler cannot find include files. > The compiler is configured to look for the files in places that do not exist. > When querying the CPP for search paths, we observe messages such as these: > > multilib confi

[OE-core] [PATCH 1/1] gcc-runtime.inc: add CPP support for mips64-n32 tune

2016-08-29 Thread Juro Bystricky
This patch fixes the problem where the CPP compiler cannot find include files. The compiler is configured to look for the files in places that do not exist. When querying the CPP for search paths, we observe messages such as these: multilib configuration: MACHINE="qemumips64" require conf/multili

[OE-core] [PATCH 0/1] MIPS tune mips64-n32

2016-08-29 Thread Juro Bystricky
This patch fixes the issue where a mips CPP compiler configured with n32 cannot find c++ include files: #include int main() { return 0; } error: bits/c++config.h: No such file or directory | #include Although the file c++config.h does exist, CPP cannot find it as the file is not in the di

[OE-core] [PATCH] provide better error message when runqemu-ifup fails

2016-08-29 Thread Stephano Cetola
If runqemu-ifup fails hen running testimage, a rather cryptic error regarding "no tty present" is displayed. If this step fails, we should at least point the user at runqemu-gen-tapdevs. A quick search of this term in the manual will lead them to "Enabling Runtime Tests on QEMU" which should give t

Re: [OE-core] [PATCH RFC 1/1] kernel.bbclass: Add kernel_version_sanity_check function

2016-08-29 Thread Cal Sullivan
On 08/25/2016 07:54 AM, Bruce Ashfield wrote: On Wed, Aug 17, 2016 at 1:25 AM, California Sullivan > wrote: The kernel being built should match what the recipe claims it is building. This function ensures that happens for anyone using LIN

[OE-core] [PATCH 11/12] oeqa.buildperf: include buildstats file name in results.json

2016-08-29 Thread Markus Lehtonen
No need to do lsdir magic for finding buildstats when reading results. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 18 ++ meta/lib/oeqa/buildperf/test_basic.py | 7 +++ 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/meta/lib/oe

[OE-core] [PATCH 07/12] oeqa.buildperf: don't use Gnu time

2016-08-29 Thread Markus Lehtonen
Use Python standard library functionality instead of the time utility for measuring elapsed (wall clock) time of commands. The time.* log files are also ditched. However, the same detailed resource usage data, previously found in time.* logs is now provided in results.json file. This data is collec

[OE-core] [PATCH 10/12] oeqa.buildperf: show skipped tests in results, too

2016-08-29 Thread Markus Lehtonen
Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index c716220..49da8f6 100644 --- a/meta/lib/oeqa/buildperf/base.py +++ b/meta/lib/oeqa/buildp

[OE-core] [PATCH 09/12] oeqa.buildperf: convert buildstats into json format

2016-08-29 Thread Markus Lehtonen
Instead of archiving buildstats in raw text file format convert all buildstats into one json-formatted file. Some redundant information, i.e. 'Event:', 'utime:', 'stime:', 'cutime:' and 'cstime:' fields, are dropped. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 69 +++

[OE-core] [PATCH 04/12] oeqa.buildperf: strip date from buildstats directory path

2016-08-29 Thread Markus Lehtonen
Archive buildstats in a directory like 'buildstats' instead of something like 'buildstats/2016051312'. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/b

[OE-core] [PATCH 05/12] oeqa.buildperf: separate output dir for each test

2016-08-29 Thread Markus Lehtonen
Store the output data of each test in an individual subdirectory instead of storing everything in the root output directory. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/buildperf/base.py b/

[OE-core] [PATCH 03/12] oe-build-perf-test: rename log file and implement --log-file

2016-08-29 Thread Markus Lehtonen
Rename the (main) log file of the oe-build-perf-test script from 'output.log' to 'oe-build-perf-test.log'. Also, add a new command line option --log-file which makes it possible to use an alternative log file name/path, if needed. Note that the file name/path is relative to the output directory.

[OE-core] [PATCH 12/12] oeqa.buildperf: include commands log file name in results.json

2016-08-29 Thread Markus Lehtonen
Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 14 +- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index 0b2c0f8..be3a946 100644 --- a/meta/lib/oeqa/buildperf/base.py +++ b/meta/li

[OE-core] [PATCH 08/12] oeqa.buildperf: measure io stat

2016-08-29 Thread Markus Lehtonen
Add data from /proc//io to system resource measurements. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index 5987bfb..95a0abf 100

[OE-core] [PATCH 06/12] oeqa.buildperf: rename buildstats directories

2016-08-29 Thread Markus Lehtonen
Change directory name from 'buildstats-' to just 'buildstats'. However, this patch adds the possibility to label buildstats directory name with a postfix which makes it possible to save multiple buildstats per test, for example. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py

[OE-core] [PATCH 01/12] oeqa.buildperf: add 'product' to test result data

2016-08-29 Thread Markus Lehtonen
This defaults to 'oe-core' but can be defined using the OE_BUILDPERF_PRODUCT environment variable. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index dbc534

[OE-core] [PATCH 02/12] oeqa.buildperf: enable json-formatted results

2016-08-29 Thread Markus Lehtonen
Automatically create a json.formatted file (results.json) in the results directory that contains results from all tests. Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/buildperf/base.py | 40 1 file changed, 40 insertions(+) diff --git a/meta/lib/oeqa/

[OE-core] [PATCH 00/12] oe-build-perf-test: new format for test output data

2016-08-29 Thread Markus Lehtonen
This patchset changes the structure and format of the test output data. The goal is to make the test result format more consolidated and easier to consume. The major change is that the test results are stored in JSON format, in addition to the (optional) csv-formatted "globalres file". Also, builds

Re: [OE-core] [PATCH v2] python-3.5-manifest.inc: the core module RDEPENDS on misc

2016-08-29 Thread Alejandro Hernandez
Hello Ricardo, On 08/26/2016 10:30 AM, Ricardo Ribalda Delgado wrote: Fixes: root@qt5022:~# python3 Python 3.5.1 (default, Aug 5 2016, 13:25:54) [GCC 5.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. import collections Traceback (most recent call last):

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Bruce Ashfield
On Mon, Aug 29, 2016 at 11:34 AM, Ioan-Adrian Ratiu wrote: > On Mon, 29 Aug 2016, Bruce Ashfield wrote: > > On Mon, Aug 29, 2016 at 10:05 AM, Ioan-Adrian Ratiu > > > wrote: > > > >> On Mon, 29 Aug 2016, Bruce Ashfield wrote: > >> > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu < > adrian.

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Ioan-Adrian Ratiu
On Mon, 29 Aug 2016, Bruce Ashfield wrote: > On Mon, Aug 29, 2016 at 10:05 AM, Ioan-Adrian Ratiu > wrote: > >> On Mon, 29 Aug 2016, Bruce Ashfield wrote: >> > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu >> > wrote: >> > >> >> do_kernel_configme calls merge_config.sh (installed in the sys

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Bruce Ashfield
On Mon, Aug 29, 2016 at 10:46 AM, Bruce Ashfield wrote: > > > On Mon, Aug 29, 2016 at 10:05 AM, Ioan-Adrian Ratiu > wrote: > >> On Mon, 29 Aug 2016, Bruce Ashfield wrote: >> > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu > > >> > wrote: >> > >> >> do_kernel_configme calls merge_config.sh

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Bruce Ashfield
On Mon, Aug 29, 2016 at 10:05 AM, Ioan-Adrian Ratiu wrote: > On Mon, 29 Aug 2016, Bruce Ashfield wrote: > > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu > > wrote: > > > >> do_kernel_configme calls merge_config.sh (installed in the sysroot by > >> the kern-tools-native recipe) which calls

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Bruce Ashfield
On Mon, Aug 29, 2016 at 9:51 AM, Ioan-Adrian Ratiu wrote: > On Mon, 29 Aug 2016, Bruce Ashfield wrote: > > On Mon, Aug 29, 2016 at 9:14 AM, Ioan-Adrian Ratiu > > wrote: > > > >> On Mon, 29 Aug 2016, Bruce Ashfield wrote: > >> > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu < > adrian.ra..

[OE-core] [PATCH 15/15] webkitgtk: fix racy double build of WebKit2-4.0.gir

2016-08-29 Thread Alexander Kanavin
This occasionally triggered autobuilder errors where the .gir file appeared truncated to introspection tools. Signed-off-by: Alexander Kanavin --- ...ix-racy-parallel-build-of-WebKit2-4.0.gir.patch | 48 ++ meta/recipes-sato/webkit/webkitgtk_2.12.4.bb | 1 + 2 files ch

[OE-core] [PATCH 14/15] webkitgtk: upgrade to 2.12.4

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-sato/webkit/{webkitgtk_2.12.3.bb => webkitgtk_2.12.4.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-sato/webkit/{webkitgtk_2.12.3.bb => webkitgtk_2.12.4.bb} (97%) diff --git a/meta/recipes-sato/webkit/webkitgt

[OE-core] [PATCH 13/15] asciidoc: fix upstream version check

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb b/meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb index 7597c0e..2091eec 100644 --- a/meta/recipes-extended/

[OE-core] [PATCH 03/15] iso-codes: upgrade to 3.69

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../iso-codes/{iso-codes_3.68.bb => iso-codes_3.69.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/iso-codes/{iso-codes_3.68.bb => iso-codes_3.69.bb} (76%) diff --git a/meta/recipes-support/iso-codes/

[OE-core] [PATCH 12/15] nss: update to 3.25

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-support/nss/{nss_3.24.bb => nss_3.25.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-support/nss/{nss_3.24.bb => nss_3.25.bb} (97%) diff --git a/meta/recipes-support/nss/nss_3.24.bb b/meta/recipes-support/nss

[OE-core] [PATCH 07/15] gobject-introspection: odd versions are development snapshots

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../recipes-gnome/gobject-introspection/gobject-introspection_1.48.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.48.0.bb b/meta/recipes-gnome/gobject-introspection/go

[OE-core] [PATCH 10/15] lighttpd: update to 1.4.41

2016-08-29 Thread Alexander Kanavin
Rebase pkgconfig.patch Signed-off-by: Alexander Kanavin --- ...fig-for-pcre-dependency-instead-of-config.patch | 37 ++ .../lighttpd/lighttpd/pkgconfig.patch | 33 --- .../{lighttpd_1.4.39.bb => lighttpd_1.4.41.bb} | 6 ++-- 3 files changed,

[OE-core] [PATCH 08/15] gnutls: update to 3.5.3

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-support/gnutls/{gnutls_3.5.1.bb => gnutls_3.5.3.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/gnutls/{gnutls_3.5.1.bb => gnutls_3.5.3.bb} (60%) diff --git a/meta/recipes-support/gnutls/gnutls_3.5.1.bb

[OE-core] [PATCH 11/15] mpg123: update to 1.23.6

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/mpg123/{mpg123_1.23.5.bb => mpg123_1.23.6.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/mpg123/{mpg123_1.23.5.bb => mpg123_1.23.6.bb} (95%) diff --git a/meta/recipes-multimedia/mpg123/mp

[OE-core] [PATCH 06/15] ffmpeg: update to 3.1.2

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/ffmpeg/{ffmpeg_3.1.1.bb => ffmpeg_3.1.2.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/ffmpeg/{ffmpeg_3.1.1.bb => ffmpeg_3.1.2.bb} (97%) diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg

[OE-core] [PATCH 09/15] kexec-tools: update to 2.0.13

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../kexec/{kexec-tools_2.0.12.bb => kexec-tools_2.0.13.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-kernel/kexec/{kexec-tools_2.0.12.bb => kexec-tools_2.0.13.bb} (88%) diff --git a/meta/recipes-kernel/kexec/ke

[OE-core] [PATCH 05/15] bdwgc: update to 7.6.0

2016-08-29 Thread Alexander Kanavin
Remove backported NIOS2 patch. README.QUICK checksum updated; the license part of the file is unchaged. Signed-off-by: Alexander Kanavin --- .../bdwgc/bdwgc/0002-Altera-NIOS2-support.patch| 71 -- .../bdwgc/{bdwgc_7.4.4.bb => bdwgc_7.6.0.bb} | 7 +-- 2 files change

[OE-core] [PATCH 04/15] bash-completion: update to 2.4

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../{bash-completion_2.3.bb => bash-completion_2.4.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/bash-completion/{bash-completion_2.3.bb => bash-completion_2.4.bb} (88%) diff --git a/meta/recipes-su

[OE-core] [PATCH 00/15] Version updates and webkitgtk build race fix

2016-08-29 Thread Alexander Kanavin
A bunch of version updates patches; I've also added a fix for the build race in webkit that was occasionally seen on autobuilders. The following changes since commit 2fedd226c3385f1ac160b3aa0bfadbded85e288c: ref-manual: Fixed small wording in PKGR in the glossary (2016-08-25 23:09:29 +0100) a

[OE-core] [PATCH 01/15] libwebp: upgrade to 0.5.1

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/webp/{libwebp_0.5.0.bb => libwebp_0.5.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/webp/{libwebp_0.5.0.bb => libwebp_0.5.1.bb} (92%) diff --git a/meta/recipes-multimedia/webp/libwebp_

[OE-core] [PATCH 02/15] btrfs-tools: update to 4.7.1

2016-08-29 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../btrfs-tools/{btrfs-tools_4.6.1.bb => btrfs-tools_4.7.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_4.6.1.bb => btrfs-tools_4.7.1.bb} (94%) diff --git a/meta/recipes-devtools/bt

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Ioan-Adrian Ratiu
On Mon, 29 Aug 2016, Bruce Ashfield wrote: > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu > wrote: > >> do_kernel_configme calls merge_config.sh (installed in the sysroot by >> the kern-tools-native recipe) which calls make to fill in any missing >> symbols from the resulting merged config.

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Ioan-Adrian Ratiu
On Mon, 29 Aug 2016, Bruce Ashfield wrote: > On Mon, Aug 29, 2016 at 9:14 AM, Ioan-Adrian Ratiu > wrote: > >> On Mon, 29 Aug 2016, Bruce Ashfield wrote: >> > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu >> > wrote: >> > >> >> do_kernel_configme calls merge_config.sh (installed in the sysr

Re: [OE-core] [yocto] [yocto-kernel-tools][PATCH] merge_configs.sh: fail loudly if make also fails

2016-08-29 Thread Bruce Ashfield
On 2016-08-29 09:22 AM, Ioan-Adrian Ratiu wrote: On Mon, 29 Aug 2016, Bruce Ashfield wrote: On 2016-08-29 08:07 AM, Bruce Ashfield wrote: On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu mailto:adrian.ra...@ni.com>> wrote: merge_configs.sh calls make on the generated kernel config fro

Re: [OE-core] [yocto] [yocto-kernel-tools][PATCH] merge_configs.sh: fail loudly if make also fails

2016-08-29 Thread Ioan-Adrian Ratiu
On Mon, 29 Aug 2016, Bruce Ashfield wrote: > On 2016-08-29 08:07 AM, Bruce Ashfield wrote: >> >> >> On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu > > wrote: >> >> merge_configs.sh calls make on the generated kernel config from >> the defconfig + fragments t

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Bruce Ashfield
On Mon, Aug 29, 2016 at 9:14 AM, Ioan-Adrian Ratiu wrote: > On Mon, 29 Aug 2016, Bruce Ashfield wrote: > > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu > > wrote: > > > >> do_kernel_configme calls merge_config.sh (installed in the sysroot by > >> the kern-tools-native recipe) which calls

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Ioan-Adrian Ratiu
On Mon, 29 Aug 2016, Bruce Ashfield wrote: > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu > wrote: > >> do_kernel_configme calls merge_config.sh (installed in the sysroot by >> the kern-tools-native recipe) which calls make to fill in any missing >> symbols from the resulting merged config.

Re: [OE-core] [yocto-kernel-tools][PATCH] merge_configs.sh: fail loudly if make also fails

2016-08-29 Thread Ioan-Adrian Ratiu
On Mon, 29 Aug 2016, Bruce Ashfield wrote: > On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu > wrote: > >> merge_configs.sh calls make on the generated kernel config from >> the defconfig + fragments to fill in any missing symbols. make >> can fail and this can lead to nasty errors further on

Re: [OE-core] [yocto] [yocto-kernel-tools][PATCH] merge_configs.sh: fail loudly if make also fails

2016-08-29 Thread Bruce Ashfield
On 2016-08-29 08:07 AM, Bruce Ashfield wrote: On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu mailto:adrian.ra...@ni.com>> wrote: merge_configs.sh calls make on the generated kernel config from the defconfig + fragments to fill in any missing symbols. make can fail and this can

Re: [OE-core] [PATCH] ruby: ensure that .ext/rdoc is gone in compile

2016-08-29 Thread Alexander Kanavin
On 08/29/2016 03:47 PM, Sujith H wrote: From: Christopher Larson rdoc gets unhappy if this already exists, so remove it before building. Without this, it's possible to hit this error: Directory .ext/rdoc already exists, but it looks like it isn't an RDoc directory. + +do_compile_pr

[OE-core] [PATCH] ruby: ensure that .ext/rdoc is gone in compile

2016-08-29 Thread Sujith H
From: Christopher Larson rdoc gets unhappy if this already exists, so remove it before building. Without this, it's possible to hit this error: Directory .ext/rdoc already exists, but it looks like it isn't an RDoc directory. Signed-off-by: Christopher Larson Signed-off-by: Sujith Har

Re: [OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Bruce Ashfield
On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu wrote: > do_kernel_configme calls merge_config.sh (installed in the sysroot by > the kern-tools-native recipe) which calls make to fill in any missing > symbols from the resulting merged config. That's not what it does ... but that isn't import

Re: [OE-core] [yocto-kernel-tools][PATCH] merge_configs.sh: fail loudly if make also fails

2016-08-29 Thread Bruce Ashfield
On Mon, Aug 29, 2016 at 5:19 AM, Ioan-Adrian Ratiu wrote: > merge_configs.sh calls make on the generated kernel config from > the defconfig + fragments to fill in any missing symbols. make > can fail and this can lead to nasty errors further on in the > build like generating an unbootable kernel

[OE-core] [PATCH v2 3/3] boost: fix MIPS16e compilation

2016-08-29 Thread André Draszik
use g++ 4.1+ __sync intrinsics instead of incompatible hand-written assembly Signed-off-by: André Draszik --- ...ips-assembly-doesn-t-compile-in-mips16e-m.patch | 57 ++ meta/recipes-support/boost/boost_1.61.0.bb | 1 + 2 files changed, 58 insertions(+) create mode

[OE-core] [PATCH v2 1/3] boost: fix a musl compilation warning

2016-08-29 Thread André Draszik
Signed-off-by: André Draszik --- ...detail-socket_types.hpp-fix-poll.h-includ.patch | 46 ++ meta/recipes-support/boost/boost_1.61.0.bb | 1 + 2 files changed, 47 insertions(+) create mode 100644 meta/recipes-support/boost/boost/0001-boost-asio-detail-socket_types.h

[OE-core] [PATCH v2 0/3] boost mips16e and soft-float fixes

2016-08-29 Thread André Draszik
An error crept into the previous series :-(, fixed now. -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

[OE-core] [PATCH v2 2/3] boost: fix compilation using soft float toolchains

2016-08-29 Thread André Draszik
In particular mips*-nf Signed-off-by: André Draszik --- .../boost/0002-config-gcc-BOOST_NO_FENV_H.patch| 75 ++ meta/recipes-support/boost/boost_1.61.0.bb | 1 + 2 files changed, 76 insertions(+) create mode 100644 meta/recipes-support/boost/boost/0002-config-g

Re: [OE-core] Review request 0/21: ltp: add libwww-perl-perl to RDEPENDS

2016-08-29 Thread Alexander Kanavin
On 08/29/2016 05:16 AM, mingli...@windriver.com wrote: The series add libwww-perl-perl to RDEPENDS for ltp as STPfailure_report.pl provided by ltp depends on LWP/Simple.pm which is provided by libwww-perl-perl You are adding 20 new recipes, just to support something in a single perl script in

Re: [OE-core] [PATCH 2/3] boost: fix compilation using soft float toolchains

2016-08-29 Thread André Draszik
Khem, I expect that http://git.openembedded.org/openembedded-core/tree/meta/recipe s-support/boost/boost/consider-hardfp.patch won't be needed for arm any more with this patch applied (but am not in a position to test) Cheers, Andre' On Mo, 2016-08-29 at 12:03 +0100, André Draszik wrote: > In pa

[OE-core] [PATCH 3/3] boost: fix MIPS16e compilation

2016-08-29 Thread André Draszik
use g++ 4.1+ __sync intrinsics instead of incompatible hand-written assembly Signed-off-by: André Draszik --- ...ips-assembly-doesn-t-compile-in-mips16e-m.patch | 57 ++ meta/recipes-support/boost/boost_1.61.0.bb | 1 + 2 files changed, 58 insertions(+) create mode

[OE-core] [PATCH 1/3] boost: fix a musl compilation warning

2016-08-29 Thread André Draszik
Signed-off-by: André Draszik --- ...detail-socket_types.hpp-fix-poll.h-includ.patch | 46 ++ meta/recipes-support/boost/boost_1.61.0.bb | 1 + 2 files changed, 47 insertions(+) create mode 100644 meta/recipes-support/boost/boost/0001-boost-asio-detail-socket_types.h

[OE-core] [PATCH 2/3] boost: fix compilation using soft float toolchains

2016-08-29 Thread André Draszik
In particular mips*-nf Signed-off-by: André Draszik --- .../boost/0002-config-gcc-BOOST_NO_FENV_H.patch| 75 ++ meta/recipes-support/boost/boost_1.61.0.bb | 1 + 2 files changed, 76 insertions(+) create mode 100644 meta/recipes-support/boost/boost/0002-config-g

[OE-core] [PATCH 0/3] boost mips16e and soft-float fixes

2016-08-29 Thread André Draszik
Hi, These patches fix a few issues, see patches for details. All patches have been submitted upstream. Cheers, André -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembe

Re: [OE-core] pointercal-xinput?

2016-08-29 Thread Maxin B. John
Hi Gary, On Sat, Aug 27, 2016 at 12:30:23PM +0200, Gary Thomas wrote: > Is this recipe relevant any more (since pointercal was removed)? > ${Poky}/meta/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb Yes, it is still used by the xinput_calibrator binary. If there is a pointercal

[OE-core] [PATCH v2] gstreamer1.0-plugins-bad: add packageconfig for egl

2016-08-29 Thread Nicolas Dechesne
In commit 9c3a94aea1d (gstreamer1.0-plugins-bad: Move EGL requirement for Wayland), --enable-egl was explicitely added to the wayland packageconfig. While this is correct that enabling wayland requires egl, it should be possible to enable egl without wayland, even when using X11. For example, glima

[OE-core] [PATCH] kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error

2016-08-29 Thread Ioan-Adrian Ratiu
do_kernel_configme calls merge_config.sh (installed in the sysroot by the kern-tools-native recipe) which calls make to fill in any missing symbols from the resulting merged config. This errors out on my system because of sysroot poisoning [1]. Here is a partial output from my .kernel-meta/cfg/mer

[OE-core] [yocto-kernel-tools][PATCH] merge_configs.sh: fail loudly if make also fails

2016-08-29 Thread Ioan-Adrian Ratiu
merge_configs.sh calls make on the generated kernel config from the defconfig + fragments to fill in any missing symbols. make can fail and this can lead to nasty errors further on in the build like generating an unbootable kernel image. Check the make return code and fail loudly if non-zero. Sig

Re: [OE-core] [krogoth] systemd network service fails to start on boot

2016-08-29 Thread Kristian Amlie
On 15/08/16 22:55, akuster808 wrote: > > > On 08/15/2016 02:24 AM, Burton, Ross wrote: >> On 15 August 2016 at 07:38, Kristian Amlie wrote: >> >>> So, I did what you asked. Is there anything else missing? >>> >> >> No, just wait for the krogoth maintainer to pick up the patches. > > pulling to

[OE-core] [PATCH 1/1] lib/oe/patch: commit with a dummy user/email when PATCHTOOL=git

2016-08-29 Thread Paul Eggleton
When using PATCHTOOL = "git", the user of the system is not really the committer - it's the build system itself. Thus, specify "dummy" values for username and email instead of using the user's configured values. Various parts of the devtool code that need to make commits have also been updated to u

[OE-core] [PATCH 0/1] lib/oe/patch: commit with a dummy user/email when PATCHTOOL=git

2016-08-29 Thread Paul Eggleton
The following changes since commit 00027aee12f4bbc9a4ba607c91fcc1e0e8257fa2: core-image-kernel-dev.bb: Standardize use of _append and leading space. (2016-08-25 23:03:26 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib paule/patch-git ht

[OE-core] [PATCH 0/1] oe-selftest: devtool: fix test after recent change

2016-08-29 Thread Paul Eggleton
The following changes since commit 00027aee12f4bbc9a4ba607c91fcc1e0e8257fa2: core-image-kernel-dev.bb: Standardize use of _append and leading space. (2016-08-25 23:03:26 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib paule/oe-selftest-de

[OE-core] [PATCH 1/1] oe-selftest: devtool: fix test after recent change

2016-08-29 Thread Paul Eggleton
OE-Core commit d3057cba0b01484712fcee3c52373c143608a436 fixed handling of wildcard bbappends, which means that this test's expectations about the bbappend file name are no longer met. devtool finish is meant to use wildcard bbappends so fix the test accordingly. Signed-off-by: Paul Eggleton ---