Re: [OE-core] [PATCH 2/3] toolchain-shar-extract.sh: better default install path for extensible SDK

2015-08-20 Thread Brendan Le Foll
On Wed, Aug 19, 2015 at 06:52:49PM +0100, Christopher Larson wrote: On Wed, Aug 19, 2015 at 6:32 AM, [1]brendan.le.f...@intel.com wrote: From: Brendan Le Foll [2]brendan.le.f...@intel.com Extensible SDK cannot be installed as root so by default offer to install it in user's

[OE-core] [PATCH V2 0/7] Extensible SDK fixesExtensible SDK fixes

2015-08-20 Thread Chen Qi
The following changes since commit c38acd720b3f6ffbeb544063692eb471dada8593: binconfig-disabled: write an message to stderr to help confused developers (2015-08-19 17:57:58 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib ChenQi/sdktool

[OE-core] Suggestion: sanity check for git branch value

2015-08-20 Thread Carlos Rafael Giani
Hello, several recipes have SRC_URI lines like: git://server.name/repository;branch=${SRCBRANCH}. If for some reason SRCBRANCH is empty, this essentially evaluates to branch=. I think a simple sanity check that outputs an error if the branch value is empty would be useful, since otherwise,

[OE-core] [PATCH V2 7/7] devtool: add sdk.py plugin

2015-08-20 Thread Chen Qi
This plugin is only enabled when devtool is used within the extensible SDK. It is used to update the current SDK from a local or remote server. E.g. devtool sdk-update /mnt/sdk-repo/ devtool sdk-update http://mysdkhost/sdk Signed-off-by: Chen Qi qi.c...@windriver.com ---

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

2015-08-20 Thread ChenQi
On 08/18/2015 09:51 PM, Paul Eggleton wrote: On Monday 10 August 2015 11:17:59 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 |

[OE-core] [PATCH V2 6/7] populate_sdk_ext: record SDK_TARGETS in devtool.conf

2015-08-20 Thread Chen Qi
Record the value of SDK_TARGETS for later use of devtool's sdk plugin for updating SDK. Signed-off-by: Chen Qi qi.c...@windriver.com --- meta/classes/populate_sdk_ext.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/classes/populate_sdk_ext.bbclass

[OE-core] [PATCH V2 5/7] oe-publish-sdk: add script

2015-08-20 Thread Chen Qi
Add a script to publish extensible SDK to a specified destination. e.g. oe-publish-sdk ext-sdk destination Signed-off-by: Chen Qi qi.c...@windriver.com --- scripts/oe-publish-sdk | 143 + 1 file changed, 143 insertions(+) create mode 100755

[OE-core] [PATCH V2 4/7] Extensible SDK: allow for installation without preparing build system

2015-08-20 Thread Chen Qi
When publishing SDK, what we want is basically its metadata and sstate cache objects. We don't want the SDK to be prepared with running bitbake as it takes time which reproduces meaningless output for the published SDK. So this patch adds an option to allow for SDK to be extracted without

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

2015-08-20 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 V2 1/7] copy_buildsystem: make sure bitbake directory is copied

2015-08-20 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

[OE-core] [PATCH V2 3/7] populate_sdk_ext: don't remove the native qemu dependencies

2015-08-20 Thread Chen Qi
These dependencies were deliberately removed because it was assumed that they were provided by nativesdk packages. On the one hand, nativesdk packages in extensible SDK don't have these packages; on the other hand, even if we add these nativesdk packages, they are still not useful because we we

[OE-core] [PATCH 3/5] oe-selftest: replace assertTrue(False, ...) with fail(...)

2015-08-20 Thread Paul Eggleton
I'd somehow missed the existence of fail() when I wrote these. It's preferable here so you don't get the somewhat useless false is not true message in the case of failure. Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com --- meta/lib/oeqa/selftest/devtool.py| 2 +-

[OE-core] [PATCH 1/5] scripts/create-recipe: drop

2015-08-20 Thread Paul Eggleton
We have recipetool create (or devtool add which wraps it) instead which works pretty well now, is written in Python and thus can call into BitBake/OE code easily, and can do things that create-recipe can't; any future improvements should go into recipetool and therefore I think we'd rather people

[OE-core] [PATCH 0/5] Misc fixes

2015-08-20 Thread Paul Eggleton
Generally I prefer to avoid lumping a bunch of unrelated fixes together, but I've been hanging onto these for a couple of weeks now and I'm not sure when I'll have any related changes to send them with, so here they are now. The following changes since commit

[OE-core] [PATCH 2/5] classes/insane: fix QA check message referring to nativesdk

2015-08-20 Thread Paul Eggleton
nativesdk has been a prefix rather than a suffix for some time now. Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com --- meta/classes/insane.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index

[OE-core] [PATCH 5/5] service: tweak example recipe

2015-08-20 Thread Paul Eggleton
* Drop PR = r0 * Reorder lines so that packaging definitions are at the end Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com --- meta-skeleton/recipes-skeleton/service/service_0.1.bb | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git

[OE-core] [PATCH 4/5] hello-mod: drop PV and PR

2015-08-20 Thread Paul Eggleton
* PR = r0 is the default, no need to set it (and most people won't need to set it anyway with the PR service) * PV = 0.1 is already set by virtue of 0.1 being in the filename Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com --- meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb

Re: [OE-core] [PATCH V2] systemd: Upgrade 219 - 224

2015-08-20 Thread alexander . kanavin
MIT licence was unused and dropped in source itself commit 8f1e0c5f38cdf7e401ab4d2bb93ad816d08e7715 Author: Kay Sievers k...@vrfy.org Date: Tue Apr 21 19:21:56 2015 +0200 delete unused LICENSE.MIT libudev API documentation has been converted from gtkdoc into man pages. see commit

[OE-core] [PATCH 1/1] packagegroup-qt*-toolchain-target: fix hard dependency on phonon library

2015-08-20 Thread Paul Eggleton
Having disabled phonon by default in Qt4 we need to ensure this packagegroup is still buildable when it's not available. Signed-off-by: Paul Eggleton paul.eggle...@linux.intel.com --- meta/recipes-qt/packagegroups/packagegroup-qt-toolchain-target.inc | 5 - 1 file changed, 4 insertions(+), 1

[OE-core] [PATCH 0/1] Another fix for phonon being disabled by default in Qt4

2015-08-20 Thread Paul Eggleton
The following changes since commit c38acd720b3f6ffbeb544063692eb471dada8593: binconfig-disabled: write an message to stderr to help confused developers (2015-08-19 17:57:58 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib

Re: [OE-core] [PATCH 2/4 V2] systemd: Upgrade 219 - 224

2015-08-20 Thread Khem Raj
On Thu, Aug 20, 2015 at 6:04 AM, Philip Balister phi...@balister.org wrote: On 08/19/2015 10:21 PM, Khem Raj wrote: On Wed, Aug 19, 2015 at 12:55 PM, Burton, Ross ross.bur...@intel.com wrote: On 17 August 2015 at 16:41, Khem Raj raj.k...@gmail.com wrote: There are many reasons, for me its

[OE-core] [PATCH V3] systemd: Upgrade 219 - 224

2015-08-20 Thread Khem Raj
MIT licence was unused and dropped from systemd sources for more details see https://github.com/systemd/systemd/commit/8f1e0c5f38cdf7e401ab4d2bb93ad816d08e7715 Drop gtkdoc dependency since libudev API documentation has been converted from gtkdoc into man pages Remove packaging gudev as it has

[OE-core] [PATCH 16/17] wic: use bitbake variable ROOTFS_SIZE

2015-08-20 Thread Ed Bartosh
If bitbake image is referenced in .ks file and --size is not used there wic uses ROOTFS_SIZE variable to set minimum partition size. ROOTFS_SIZE is calculated in meta/lib/oe/image.py when rootfs is created. The calculation is done using other image parameters: IMAGE_ROOTFS_SIZE,

[OE-core] [PATCH 02/17] oe-selftest: test generation of image.env

2015-08-20 Thread Ed Bartosh
Added test case to check if image.env file is generated and contains bitbake variables used in wic code. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/lib/oeqa/selftest/wic.py | 20 1 file changed, 20 insertions(+) diff --git a/meta/lib/oeqa/selftest/wic.py

[OE-core] [PATCH] man-pages: update to 4.02

2015-08-20 Thread Maxin B. John
4.01 - 4.02 Signed-off-by: Maxin B. John maxin.j...@enea.com --- .../man-pages/{man-pages_4.01.bb = man-pages_4.02.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/man-pages/{man-pages_4.01.bb = man-pages_4.02.bb} (86%) diff --git

[OE-core] [PATCH v2] openssh: build regression test binaries

2015-08-20 Thread Jussi Kukkonen
ptests were failing and many more were being silently skipped because required binaries were not being built. Build the binaries in regress/ and set SUDO environment variable in run-ptests: after this all tests in regress/ are now run. Continue to skip building binaries in regress/unittests/:

Re: [OE-core] [PATCH 1/2] swig: add package 3.0.2

2015-08-20 Thread Martin Jansa
On Thu, Aug 20, 2015 at 09:31:11AM +0800, wenzong fan wrote: On 08/19/2015 09:12 PM, Martin Jansa wrote: On Wed, Aug 19, 2015 at 03:29:28AM -0400, wenzong@windriver.com wrote: From: Wenzong Fan wenzong@windriver.com Pull package from meta-oe to oe-core: meta-oe commit:

[OE-core] [PATCH 3/3] libical: Upgrade 1.0.0 - 1.0.1

2015-08-20 Thread Jussi Kukkonen
Build system changed to cmake. Signed-off-by: Jussi Kukkonen jussi.kukko...@intel.com --- .../libical/{libical_1.0.0.bb = libical_1.0.1.bb}| 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) rename meta/recipes-support/libical/{libical_1.0.0.bb = libical_1.0.1.bb}

[OE-core] [PATCH 0/3] Upgrade lsof, libical, lsbinitscripts

2015-08-20 Thread Jussi Kukkonen
The following changes since commit 6b8bb442880ef18097e47761f4f3b6f555f2877c: genericx86*: Update BSPs to use 4.1 Kernel (2015-08-19 18:05:56 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib jku/lsof-lsb-libical

[OE-core] [PATCH 1/3] lsof: Upgrade 4.88 - 4.89

2015-08-20 Thread Jussi Kukkonen
Signed-off-by: Jussi Kukkonen jussi.kukko...@intel.com --- meta/recipes-extended/lsof/{lsof_4.88.bb = lsof_4.89.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/lsof/{lsof_4.88.bb = lsof_4.89.bb} (91%) diff --git

[OE-core] [PATCH 2/3] lsbinitscripts: Upgrade 9.63 - 9.64

2015-08-20 Thread Jussi Kukkonen
Signed-off-by: Jussi Kukkonen jussi.kukko...@intel.com --- .../lsb/{lsbinitscripts_9.63.bb = lsbinitscripts_9.64.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-extended/lsb/{lsbinitscripts_9.63.bb = lsbinitscripts_9.64.bb} (81%) diff --git

[OE-core] [PATCH 00/17] Build wic images with bitbake

2015-08-20 Thread Ed Bartosh
Hi Reviewers, This patchset adds new image type 'wic' to the list of image types supported by bitbake. This should allow to build partitioned image the same way as any other images. New image type can be used in image recipes almost the same way as other image types. There is just one difference

[OE-core] [PATCH 05/17] wic: create new method _parse_line

2015-08-20 Thread Ed Bartosh
Moved code that parses one line of 'bitbake -e' output to separate method _parse_line. This method will be also used later to parse lines of .env files. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- scripts/lib/wic/utils/oe/misc.py | 27 +-- 1 file changed, 17

[OE-core] [PATCH 07/17] wic: set default image

2015-08-20 Thread Ed Bartosh
Set BitbakeVars.default_image when wic is called with -e option. This makes get_bitbake_var API to use provided image as a default source of variables. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- scripts/wic | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH 11/17] wic: deferred call of hlp.get_wic_plugins_help()

2015-08-20 Thread Ed Bartosh
If get_wic_plugins_help is called from wic main module it calls git_bitbake_var at some point. This fails when wic is called from bitbake as 'bitbake -e' can't be run. Moved call of this method to help.py in order to call it later, when BitbakeVariables singleton is properly initialized to get

[OE-core] [PATCH 08/17] wic: implement getting variables from .env files

2015-08-20 Thread Ed Bartosh
Added functionality of getting variables from image.env files to BitbakeVars class. env files will be parsed if the directory with env files is known, i.e. when vars_dir attribute is set. Otherwise 'bitbake -e' output will be parsed. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com ---

[OE-core] [PATCH 03/17] wic: remove undescore from function name

2015-08-20 Thread Ed Bartosh
Renamed __exec_cmd - _exec_cmd as double underscores cause strange behaviour when function is called in class method. Python complains that __exec_cmd method(!!!) of the same class doesn't exist. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- scripts/lib/wic/utils/oe/misc.py | 12

[OE-core] [PATCH 14/17] oe-selftest: test building wic image by bitbake

2015-08-20 Thread Ed Bartosh
Added test case to verify building of wic-image-minimal recipe and produced artifacts: manifest and bzipped partitioned image. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/lib/oeqa/selftest/wic.py | 14 ++ 1 file changed, 14 insertions(+) diff --git

[OE-core] [PATCH 12/17] image_types.bbclass: add wic image type

2015-08-20 Thread Ed Bartosh
wic image type is used to produce partitioned images. Image configuration should be stored in either recipe.machine.wks or recipe.wks file. .wks file should be put to the same location as image recipe and have the same name. [YOCTO #7672] Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com ---

[OE-core] [PATCH 15/17] image.py: set bitbake variable ROOTFS_SIZE

2015-08-20 Thread Ed Bartosh
This variable is going to be used by wic to set partition size. Setting it in image.py makes it possible for wic to use it without calculating it again. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/lib/oe/image.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff

[OE-core] [PATCH 17/17] image.py: add script output to the rootfs log

2015-08-20 Thread Ed Bartosh
Let's add output of image creation script to the bitbake log as it can contain useful information. One good example of such an information is wic report about artifacts and .wks file used for image creation. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/lib/oe/image.py | 5 -

[OE-core] [PATCH 13/17] wic-image-minimal: add wic image recipe and .wks

2015-08-20 Thread Ed Bartosh
Added example of recipe and .wks file to create partitioned image. This image is using quite complex partitioning scheme. It uses its own rootfs to populate two partitions in two different ways. It also uses core-image-minimal rootfs to populate another partition. This is how wic reports about

[OE-core] [PATCH 01/17] image.py: write bitbake variables to .env file

2015-08-20 Thread Ed Bartosh
Write set of bitbake variables associated with the image into build/tmp/sysroots/machine/imagedata/image.env This is needed for wic to be able to get bitbake variables without running 'bitbake -e'. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/lib/oe/image.py | 23

[OE-core] [PATCH 09/17] wic: implement --vars option

2015-08-20 Thread Ed Bartosh
This option is used to point wic to the directory with .env files containing list of bitbake variables and their values. If this option is used wic will get bitbake variables from files instead of parsing 'bitbake -e' output. The main reason for this is to support new mode, when bitbake runs wic

[OE-core] [PATCH 06/17] wic: add default_image attribute to BitbakeVars

2015-08-20 Thread Ed Bartosh
New attribute is used when bitbake variable is requested without specifying image name. The attribute should be set from outside, for example when wic is called with '-e image' option. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- scripts/lib/wic/utils/oe/misc.py | 6 ++ 1 file

[OE-core] [PATCH 04/17] wic: add BitbakeVars class

2015-08-20 Thread Ed Bartosh
Moved code of getting bitbake variables into separate class. Created singleton object of this class in the module namespace. Preserved existing API get_bitbake_var. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- scripts/lib/wic/utils/oe/misc.py | 91

[OE-core] [PATCH 10/17] wic: rename variable

2015-08-20 Thread Ed Bartosh
Renamed variable help - hlp as 'help' is a name of Python built-in function. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- scripts/lib/image/help.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index

[OE-core] [FIDO PATCH 1/1] toasterconf: remove master as a branch option from fido release

2015-08-20 Thread brian avery
From: Alexandru DAMIAN alexandru.dam...@intel.com Toaster isn't designed to be forward compatible. As such, a release cannot build releases newer then it. Particularly, fido cannot build master, so we remove master from the list of supported releases in fido [YOCTO #8154] Signed-off-by:

[OE-core] [FIDO PATCH 0/1] toasterconf: remove master as a branch option from fido release

2015-08-20 Thread brian avery
Toaster from FIDO can't reasonably be expected to be able to build master due to unforeseeable incompatibilities. This removes master branch as an option. Alexandru DAMIAN (1): toasterconf: remove master for fido meta/conf/toasterconf.json | 23 --- 1 file changed, 4

[OE-core] [PATCH V2 1/3] qemurunner.py: Move some class variables that should only be local

2015-08-20 Thread Randy Witt
The bootlog and qemusock variables were set in the class as part of the create_socket() routine. However those variables are never used outside of the same function and thus serve no purpose as class variables. This initializes those variables near where they are used. Signed-off-by: Randy Witt

Re: [OE-core] [PATCH 2/4 V2] systemd: Upgrade 219 - 224

2015-08-20 Thread Randy MacLeod
On 2015-08-20 09:17 PM, Khem Raj wrote: On Thu, Aug 20, 2015 at 6:04 AM, Philip Balister phi...@balister.org wrote: On 08/19/2015 10:21 PM, Khem Raj wrote: On Wed, Aug 19, 2015 at 12:55 PM, Burton, Ross ross.bur...@intel.com wrote: On 17 August 2015 at 16:41, Khem Raj raj.k...@gmail.com

Re: [OE-core] [PATCH 2/4 V2] systemd: Upgrade 219 - 224

2015-08-20 Thread Khem Raj
On Thu, Aug 20, 2015 at 6:46 PM, Randy MacLeod randy.macl...@windriver.com wrote: Khem, What testing have you done so far? booted all qemu machines. ARMv7 machines e.g. rpi2 and st2120, and some bcom mips platforms. Any ptest? No What toolchain version are you building with, btw? gcc 5.x

Re: [OE-core] [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used

2015-08-20 Thread Khem Raj
On Thu, Aug 20, 2015 at 5:54 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: +ORCC = ${STAGING_DIR_NATIVE}${bindir}/orcc +export ORCC usual convention is export VAR = val -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH] uclibc: Add SRCBRANCH for use by SRC_URI

2015-08-20 Thread Khem Raj
On Thu, Aug 20, 2015 at 12:32 AM, Yen-Chin Lee coldnew...@gmail.com wrote: -SRC_URI = git://uclibc.org/uClibc.git;branch=master \ +SRCBRANCH ??= master + +SRC_URI = git://uclibc.org/uClibc.git;branch=${SRCBRANCH} \ this is ok. Just call is BRANCH instead of SRCBRANCH --

Re: [OE-core] [PATCHv2 1/1] screen: Upgrade 4.0.3 - 4.3.1

2015-08-20 Thread Radzykewycz, T (Radzy)
I would very much prefer that the GPLv2 license of screen be maintained. What do I need to do to keep a GPLv2 license on it ? (Sorry for taking so long to respond to this, but I didn't see the initial thread.) Enjoy! -- radzy

[OE-core] [PATCH V2 2/3] qemurunner: Make create_socket() return data and use exceptions

2015-08-20 Thread Randy Witt
So that create_socket() can be called more than once to create sockets, it now returns the socket and port rather than setting class variables directly. create_socket() now only uses exceptions for errors, not the return value from the function. Signed-off-by: Randy Witt

[OE-core] [PATCH V2 3/3] qemurunner: Use two serial ports and log console with a thread

2015-08-20 Thread Randy Witt
qemu can freeze and stop responding if the socket buffer connected to a tcp serial connection fills up. This happens of course when the reader of the serial data doesn't actually read it. This happened in the qemurunner code, because after checking for the login: sentinel, data was never again

[OE-core] [PATCH V2 0/3] Try to fix qemu freezing due to full socket buffers

2015-08-20 Thread Randy Witt
Fix copy and pasted error message that had no meaning to the actual timeout. -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

Re: [OE-core] [PATCH V2] systemd: Upgrade 219 - 224

2015-08-20 Thread Khem Raj
On Thu, Aug 20, 2015 at 2:39 AM, alexander.kana...@linux.intel.com wrote: This will help anyone who will make changes to this recipe in the future and will need to find out why certain things were done in the past. yeah, I have added pointers to commits instead. Thanks -Khem --

Re: [OE-core] [PATCH 1/2] swig: add package 3.0.2

2015-08-20 Thread wenzong fan
On 08/20/2015 08:16 PM, Martin Jansa wrote: On Thu, Aug 20, 2015 at 09:31:11AM +0800, wenzong fan wrote: On 08/19/2015 09:12 PM, Martin Jansa wrote: On Wed, Aug 19, 2015 at 03:29:28AM -0400, wenzong@windriver.com wrote: From: Wenzong Fan wenzong@windriver.com Pull package from

[OE-core] [PATCH][Dizzy] grub-efi: Add trailing \ missed in last patch

2015-08-20 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-bsp/grub/grub-efi_2.00.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-bsp/grub/grub-efi_2.00.bb b/meta/recipes-bsp/grub/grub-efi_2.00.bb index 91b0cb6..7674255 100644 ---

[OE-core] Phonon is not available Qt 4.8.7

2015-08-20 Thread Alex M
Hello! I have a piece of my custom software which is depends on Qt4 + Phonon + gstreamer 0.1 and two years ago I had successfully built oe-core image. Recent version of oe-core (19 Aug 2015) contain QT_PHONON ?= -no-phonon option inside qt4.inc file. Why this option banned in default Qt 4

[OE-core] [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used

2015-08-20 Thread Carlos Rafael Giani
Without this, gstreamer configure scripts may choose the host orcc instead Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git

Re: [OE-core] [PATCH 14/17] oe-selftest: test building wic image by bitbake

2015-08-20 Thread Mario Domenech Goulart
Hi Ed, On Thu, 20 Aug 2015 14:56:27 +0300 Ed Bartosh ed.bart...@linux.intel.com wrote: Added test case to verify building of wic-image-minimal recipe and produced artifacts: manifest and bzipped partitioned image. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com ---

[OE-core] [PATCH 2/2] gstreamer1.0-plugins-*: Remove unused GSTREAMER_1_0_ORC variable

2015-08-20 Thread Carlos Rafael Giani
Nobody sets this. The orc packageconfig already does everything we need. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc | 1 - meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc | 1 -

Re: [OE-core] [RFC PATCH 1/1] classes/whitelist: add class to allow whitelisting recipes from a layer

2015-08-20 Thread Patrick Ohly
On Wed, 2015-08-19 at 14:34 +0100, Paul Eggleton wrote: Allow restricting recipes brought from a layer to a specified list. This is similar in operation to blacklist.bbclass, but instead specifies a per-layer whitelist of recipes (matched by BPN) that are able to be built from the layer -

Re: [OE-core] [PATCH 2/4 V2] systemd: Upgrade 219 - 224

2015-08-20 Thread Philip Balister
On 08/19/2015 10:21 PM, Khem Raj wrote: On Wed, Aug 19, 2015 at 12:55 PM, Burton, Ross ross.bur...@intel.com wrote: On 17 August 2015 at 16:41, Khem Raj raj.k...@gmail.com wrote: There are many reasons, for me its overlay support for systemd-nspawn, networkd has got many new features that is

[OE-core] [PATCH 1/2 v2] swig: add package 3.0.6

2015-08-20 Thread wenzong.fan
From: Wenzong Fan wenzong@windriver.com Ackage from meta-oe to oe-core: meta-oe commit: 9cc54e10efa5ca70d9980f833a8e5a310e5ad21d It's required for libcap-ng to build python bindings. With adding it to oe-core, the copies from following layers could be removed: * meta-oe, meta-selinux,

[OE-core] [PATCH 2/2 v2] libcap-ng: add package 0.7.7

2015-08-20 Thread wenzong.fan
From: Wenzong Fan wenzong@windriver.com Pull package from meta-oe to oe-core: meta-oe commit: bce4dba5546480c8e43c6442959ac7d0a4ef32f6 The libcap-ng library is intended to make programming with posix capabilities much easier than the traditional libcap library. It's not a replacement to

[OE-core] [PATCHv2] Use BRANCH to control git branch

2015-08-20 Thread Yen-Chin Lee
Signed-off-by: Yen-Chin Lee coldnew...@gmail.com --- meta/recipes-core/uclibc/uclibc-git.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/uclibc/uclibc-git.inc b/meta/recipes-core/uclibc/uclibc-git.inc index 14a577f..32076cc 100644 ---

[OE-core] [PATCH 0/2 v2] libcap-ng, swig: add packages

2015-08-20 Thread wenzong.fan
From: Wenzong Fan wenzong@windriver.com V2 changes: * add swig 3.0.6 which the latest version from meta-oe The following changes since commit a01a33b17861c227c1c16fbc2d819d86fb9bf893: linux-yocto-3.14: Update to branch HEADs (2015-08-20 15:17:01 +0100) are available in the git

Re: [OE-core] Phonon is not available Qt 4.8.7

2015-08-20 Thread Martin Jansa
On Thu, Aug 20, 2015 at 05:18:47PM +0300, Alex M wrote: Hello! I have a piece of my custom software which is depends on Qt4 + Phonon + gstreamer 0.1 and two years ago I had successfully built oe-core image. Recent version of oe-core (19 Aug 2015) contain QT_PHONON ?= -no-phonon option inside

[OE-core] [PATCH] multilib: let pkg-config find architecture-independent .pc files

2015-08-20 Thread Ross Burton
If a multilib package depends on an allarch recipe that installs an architecture-independent .pc file it will not be able to find the .pc file as the recipe gets installed into the MACHINE sysroot but pkg-config looks in the MLPREFIX-prefixed sysroot. Solve this by extending PKG_CONFIG_PATH in

[OE-core] [PATCH][DIZZY] grub-efi: Use the backport patch from grub

2015-08-20 Thread Saul Wold
This fixes the build error seen on newer distros that use gcc5 such as Fedora22 Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-bsp/grub/grub-efi_2.00.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-bsp/grub/grub-efi_2.00.bb

Re: [OE-core] [PATCH 14/22] iso-codes: add a recipe from meta-oe

2015-08-20 Thread Burton, Ross
On 19 August 2015 at 14:40, Alexander Kanavin alexander.kana...@linux.intel.com wrote: +# inherit gettext cannot be used, because it adds gettext-native to BASEDEPENDS which +# are inhibited by allarch +DEPENDS = gettext-native + +inherit autotools I fixed the problem with allarch /

Re: [OE-core] [PATCHv2 1/1] screen: Upgrade 4.0.3 - 4.3.1

2015-08-20 Thread Radzykewycz, T (Radzy)
I would very much prefer that the GPLv2 license of screen be maintained. What do I need to do to keep a GPLv2 license on it ? (Sorry for taking so long to respond to this, but I didn't see the initial thread.) Enjoy! -- radzy

Re: [OE-core] [PATCH 0/7] Dizzy-next for 1.7.3

2015-08-20 Thread Martin Jansa
On Thu, Aug 20, 2015 at 12:20:31PM -0700, Armin Kuster wrote: Please consider these changes for inclusion to the 1.7.3 update. The following changes since commit e8da5133c2efd3bc4c5f41bb27207c053bc2360d: runqueue: Add message to explain the problem if diffsigs multiple tasks don't exist

Re: [OE-core] [PATCH 3/3] toolchain-shar-extract.sh: explain why we cannot use sudo in extensible SDK

2015-08-20 Thread Randy Witt
On 08/19/2015 06:32 AM, brendan.le.f...@intel.com wrote: From: Brendan Le Foll brendan.le.f...@intel.com Signed-off-by: Brendan Le Foll brendan.le.f...@intel.com --- meta/files/toolchain-shar-extract.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 0/7] Dizzy-next for 1.7.3

2015-08-20 Thread Armin Kuster
Please consider these changes for inclusion to the 1.7.3 update. The following changes since commit e8da5133c2efd3bc4c5f41bb27207c053bc2360d: runqueue: Add message to explain the problem if diffsigs multiple tasks don't exist (2015-08-20 12:11:24 -0700) are available in the git repository

Re: [OE-core] [PATCH 0/7] Dizzy-next for 1.7.3

2015-08-20 Thread akuster808
On 08/20/2015 12:31 PM, Martin Jansa wrote: On Thu, Aug 20, 2015 at 12:20:31PM -0700, Armin Kuster wrote: Please consider these changes for inclusion to the 1.7.3 update. The following changes since commit e8da5133c2efd3bc4c5f41bb27207c053bc2360d: runqueue: Add message to explain the

Re: [OE-core] [PATCHv2 1/1] screen: Upgrade 4.0.3 - 4.3.1

2015-08-20 Thread Burton, Ross
On 20 August 2015 at 21:15, Radzykewycz, T (Radzy) ra...@windriver.com wrote: I would very much prefer that the GPLv2 license of screen be maintained. What do I need to do to keep a GPLv2 license on it ? Basically you need to have a good reason why oe-core should invest the time maintaining

Re: [OE-core] [PATCHv2 1/1] screen: Upgrade 4.0.3 - 4.3.1

2015-08-20 Thread Khem Raj
On Thu, Aug 20, 2015 at 2:34 PM, Burton, Ross ross.bur...@intel.com wrote: Basically you need to have a good reason why oe-core should invest the time maintaining both modern screen and ancient screen (4.0.3 was released in 2008). The easiest solution would be for your distro to maintain a

[OE-core] [PATCH] xf86-video-intel: enable xvmc feature by default and fix dependency

2015-08-20 Thread Reinette Chatre
XvMC extends the X Video extension (Xv) and enables hardware rendered motion compensation support. In a test build enabling this feature increased the size of the xf86-video-intel package from 1386841 to 1847154 bytes. When we enable the xvmc feature in xf86-video-intel we see the following QA

[OE-core] [PATCH V2 3/3] toolchain-shar-extract.sh: explain why we cannot use sudo in extensible SDK

2015-08-20 Thread brendan . le . foll
From: Brendan Le Foll brendan.le.f...@intel.com Signed-off-by: Brendan Le Foll brendan.le.f...@intel.com --- meta/files/toolchain-shar-extract.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh

[OE-core] [PATCH V2 2/3] toolchain-shar-extract.sh: better default install path for extensible SDK

2015-08-20 Thread brendan . le . foll
From: Brendan Le Foll brendan.le.f...@intel.com Extensible SDK cannot be installed as root so by default offer to install it in user's home directory under distro/distro_version replacing the normal SDK version '+' char with a '_' as that's a restricted character for bitbake Signed-off-by:

[OE-core] [PATCH V2 1/3] toolchain-shar-extract.sh: ensure extensible SDK install path obeys restrictions

2015-08-20 Thread brendan . le . foll
From: Brendan Le Foll brendan.le.f...@intel.com There are some characters that cannot appear in the installation path, so we need to check for these Signed-off-by: Brendan Le Foll brendan.le.f...@intel.com --- meta/files/toolchain-shar-extract.sh | 9 ++--- 1 file changed, 6 insertions(+),

[OE-core] [PATCH V2 0/3] Better defaults for extensible toolchain extraction and checks for invalid paths

2015-08-20 Thread brendan . le . foll
You can now set SDKEXTPATH which will change the default extensible SDK install path, as feedback from Christopher and change the error message as suggest by Randy. -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

[OE-core] [PATCH] utils.movefile: specify dest file name

2015-08-20 Thread Benjamin Esquivel
When moving a file via the os.rename function, it was missing the destination file name which caused an OSError [YOCTO#8180] Signed-off-by: Benjamin Esquivel benjamin.esqui...@linux.intel.com --- bitbake/lib/bb/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

Re: [OE-core] [PATCH][resend][v2] dhcp: make dhclient to get configuration for other programs

2015-08-20 Thread Rongqing Li
On 2015年08月10日 10:09, Rongqing Li wrote: On 2015年07月27日 08:55, Rongqing Li wrote: ping -Roy ping -R Ping -Roy On 2015年07月17日 14:31, rongqing...@windriver.com wrote: From: Li Wang li.w...@windriver.com Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the configuration

[OE-core] [PATCH] uclibc: Add SRCBRANCH for use by SRC_URI

2015-08-20 Thread Yen-Chin Lee
Add SRCBRANCH to control git branch. Signed-off-by: Yen-Chin Lee coldnew...@gmail.com --- meta/recipes-core/uclibc/uclibc-git.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/uclibc/uclibc-git.inc b/meta/recipes-core/uclibc/uclibc-git.inc index

Re: [OE-core] [PATCH 2/3] toolchain-shar-extract.sh: better default install path for extensible SDK

2015-08-20 Thread Christopher Larson
On Thu, Aug 20, 2015 at 12:34 AM, Brendan Le Foll brendan.le.f...@intel.com wrote: On Wed, Aug 19, 2015 at 06:52:49PM +0100, Christopher Larson wrote: On Wed, Aug 19, 2015 at 6:32 AM, [1]brendan.le.f...@intel.com wrote: From: Brendan Le Foll [2]brendan.le.f...@intel.com

[OE-core] [PATCH 1/2] tune-octeon.inc: correct packaging suffix

2015-08-20 Thread Dmitry Eremin-Solenikov
Octeon II/III binaries can contain instructions that are not compatible with MIPS64 processors. Thus Octeon II/III packages should go to separate directories. Set MIPSPKGSFX_VARIANT_tune-* to Octeon-specific values and update PACKAGE_EXTRA_ARCHS_tune-* accordingly. Signed-off-by: Dmitry

Re: [OE-core] [PATCH 3/3] libical: Upgrade 1.0.0 - 1.0.1

2015-08-20 Thread Burton, Ross
On 20 August 2015 at 12:39, Jussi Kukkonen jussi.kukko...@intel.com wrote: +inherit cmake perlnative Why perlnative considering it doesn't depend on any native perl modules? Ross -- ___ Openembedded-core mailing list

[OE-core] [PATCH 2/2] tune-octeon.inc: add BASE_LIB settings

2015-08-20 Thread Dmitry Eremin-Solenikov
Provide BASE_LIB settings for octeon* tunes that follow the practice of mips64/mips64-n32 tunes (lib64 for N64 ABI, lib32 for N32 ABI). Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- meta/conf/machine/include/tune-octeon.inc | 4 1 file changed, 4 insertions(+) diff --git

Re: [OE-core] Phonon is not available Qt 4.8.7

2015-08-20 Thread alexander . kanavin
Hello! I have a piece of my custom software which is depends on Qt4 + Phonon + gstreamer 0.1 and two years ago I had successfully built oe-core image. Recent version of oe-core (19 Aug 2015) contain QT_PHONON ?= -no-phonon option inside qt4.inc file. Why this option banned in default Qt 4

[OE-core] [PATCH 1/3] qemurunner.py: Move some class variables that should only be local

2015-08-20 Thread Randy Witt
The bootlog and qemusock variables were set in the class as part of the create_socket() routine. However those variables are never used outside of the same function and thus serve no purpose as class variables. This initializes those variables near where they are used. Signed-off-by: Randy Witt

[OE-core] Try to fix qemu freezing due to full socket buffers

2015-08-20 Thread Randy Witt
The following changes since commit a3d228a484cf471e999b6537987e2897d8a7bd4e: bitbake: main: Handle RuntimeError exception in list_extension_modules (2015-08-20 22:04:43 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib rewitt/logthread for you to fetch

[OE-core] [PATCH 2/3] qemurunner: Make create_socket() return data and use exceptions

2015-08-20 Thread Randy Witt
So that create_socket() can be called more than once to create sockets, it now returns the socket and port rather than setting class variables directly. create_socket() now only uses exceptions for errors, not the return value from the function. Signed-off-by: Randy Witt

[OE-core] [PATCH 3/3] qemurunner: Use two serial ports and log console with a thread

2015-08-20 Thread Randy Witt
qemu can freeze and stop responding if the socket buffer connected to a tcp serial connection fills up. This happens of course when the reader of the serial data doesn't actually read it. This happened in the qemurunner code, because after checking for the login: sentinel, data was never again