[OE-core] [PATCH] piglit: Fix cmake floating dependency on freeglut

2015-07-14 Thread rongqing.li
From: Roy Li 71158fa1a623125[fix floating dependence on freeglut] is incomplete, so continue by removing glut.h header file when not enable freeglut Signed-off-by: Roy Li Signed-off-by: Robert Yang --- meta/recipes-graphics/piglit/piglit_git.bb | 1 + 1 file changed, 1 insertion(+) diff --gi

Re: [OE-core] [PATCH 0/1] Shell message function support (OE-Core side)

2015-07-14 Thread Andre McCurdy
Hi Paul, On Fri, Jul 10, 2015 at 6:56 AM, Paul Eggleton wrote: > I'm finally sending out the patches to support the output of bbwarn, > bberror etc. actually going to the console. This is the OE-Core side > of the changes to implement it (changes are also required to BitBake, > the patch for whic

[OE-core] [PATCH] grep: use internal regex library with musl-libc

2015-07-14 Thread Andre McCurdy
musl does not have the GNU regex API provided by glibc. http://wiki.musl-libc.org/wiki/Functional_differences_from_glibc#Regular_expressions Signed-off-by: Andre McCurdy --- meta/recipes-extended/grep/grep_2.5.1a.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta

[OE-core] [PATCH] oeqa/selftest: [YOCTO #7976] Updated imagefeature testcases.

2015-07-14 Thread Daniel Istrate
Updated testcases that use qemu to not interfere with other qemu instances that might run in parallel. Signed-off-by: Daniel Istrate --- meta/lib/oeqa/selftest/imagefeatures.py | 153 1 file changed, 58 insertions(+), 95 deletions(-) diff --git a/meta/lib/oeqa/s

Re: [OE-core] [PATCH 0/1] Shell message function support (OE-Core side)

2015-07-14 Thread Paul Eggleton
On Tuesday 14 July 2015 00:10:13 Andre McCurdy wrote: > Hi Paul, > > On Fri, Jul 10, 2015 at 6:56 AM, Paul Eggleton > > wrote: > > I'm finally sending out the patches to support the output of bbwarn, > > bberror etc. actually going to the console. This is the OE-Core side > > of the changes to i

Re: [OE-core] [PATCH] oeqa/selftest: [YOCTO #7976] Updated imagefeature testcases.

2015-07-14 Thread Paul Eggleton
Hi Daniel, Comments in-line below. On Tuesday 14 July 2015 11:48:09 Daniel Istrate wrote: > Updated testcases that use qemu to not interfere with other qemu instances > that might run in parallel. The [YOCTO #] reference should go here, not in the shortlog. > Signed-off-by: Daniel Istrate

Re: [OE-core] [PATCH] create-pull-request: Fix error on 2.0 versions of git

2015-07-14 Thread Burton, Ross
On 13 July 2015 at 19:43, Richard Tollerton wrote: > Ben Shelton writes: > > > On 2.0 versions of git, the create-pull-request script exits with the > > warning "No match for commit... Are you sure you pushed 'HEAD' there?". > > > > This is due to a change in behavior where git used to guess the

Re: [OE-core] [PATCH 0/7][RFC][HEREBEDRAGONS] Remove bitbake's knowledge of ${B}

2015-07-14 Thread Burton, Ross
On 13 July 2015 at 15:02, Ross Burton wrote: > Ross Burton (7): > build: don't automatically mkdir/chdir B > build: add remove/mkdir/chdir debugging > ptest: add dirs > boost: add dirs > python: add explicit directory when copying > libc-package: fix path assum

Re: [OE-core] [PATCH 1/1 v2] rpcbind: handle rpcbind options

2015-07-14 Thread Burton, Ross
On 13 July 2015 at 06:25, wrote: > -EnvironmentFile=-@SYSCONFDIR@/rpcbind.conf > +EnvironmentFile=@SYSCONFDIR@/rpcbind.conf > Did you intend to drop the - from the EnvironmentFile statement? I'm guessing not. Ross -- ___ Openembedded-core mailing li

Re: [OE-core] [oe-commits] Khem Raj : ncurses: Upgrade 4.9 stable to latest patchlevel 20150329

2015-07-14 Thread Martin Jansa
On Thu, Jul 02, 2015 at 04:33:31PM +0200, Martin Jansa wrote: > On Fri, Apr 10, 2015 at 05:10:48PM +, g...@git.openembedded.org wrote: > > Module: openembedded-core.git > > Branch: master > > Commit: 47f67fae98faec17087a827eff141e05b0400560 > > URL: > > http://git.openembedded.org/?p=openem

[OE-core] [PATCH 3/3] oeqa/buildoptions: add useful failure messages for all test cases

2015-07-14 Thread Costin Constantin
Signed-off-by: Costin Constantin --- meta/lib/oeqa/selftest/buildoptions.py | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py index 926ffe9..13ec276 100644 --- a/meta/li

[OE-core] [PATCH 2/3] oeqa/bblayers.py: add useful failure messages to all test cases

2015-07-14 Thread Costin Constantin
Signed-off-by: Costin Constantin --- meta/lib/oeqa/selftest/bblayers.py | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/meta/lib/oeqa/selftest/bblayers.py b/meta/lib/oeqa/selftest/bblayers.py index bf3dd1b..20c17e4 100644 --- a/meta/lib/oeqa/selftes

[OE-core] [PATCH 1/3] oeqa/bbtests: add useful failure messages for all test cases

2015-07-14 Thread Costin Constantin
Signed-off-by: Costin Constantin --- meta/lib/oeqa/selftest/bbtests.py | 58 --- 1 file changed, 30 insertions(+), 28 deletions(-) diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index 7df6b2f..3d6860f 100644 --- a/meta/lib/

Re: [OE-core] [PATCH] oeqa/selftest: [YOCTO #7976] Updated imagefeature testcases.

2015-07-14 Thread Istrate, Daniel AlexandruX
Hi Paul, Thank you very much for your feedback. A stylistic thing perhaps, but instead of ... {}".format(str) why not just use ... %s" % str ? -- I don't have strong feelings about using str.format ..I could use "%s %str" instead if that's the style. I like format because I don't have to cast t

[OE-core] [PATCH] connman-conf: fix SRC_URI_append

2015-07-14 Thread Martin Jansa
* add leading space so that it works even with some .bbappend adding additional files to SRC_URI without trailing space Signed-off-by: Martin Jansa --- meta/recipes-connectivity/connman/connman-conf.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-conne

Re: [OE-core] [PATCH] connman-conf: fix SRC_URI_append

2015-07-14 Thread Martin Jansa
On Tue, Jul 14, 2015 at 02:36:45PM +0200, Martin Jansa wrote: > * add leading space so that it works even with some .bbappend adding > additional files to SRC_URI without trailing space This issue exists for long time, please backport also to fido and dizzy. > Signed-off-by: Martin Jansa > ---

Re: [OE-core] [PATCH] oeqa/selftest: [YOCTO #7976] Updated imagefeature testcases.

2015-07-14 Thread Paul Eggleton
On Tuesday 14 July 2015 12:27:11 Istrate, Daniel AlexandruX wrote: > > A stylistic thing perhaps, but instead of ... {}".format(str) why not just > > use ... %s" % str ? > -- I don't have strong feelings about using str.format > ..I could use "%s %str" instead if that's the style. I like format be

[OE-core] dbus-test no longer built for dbus-ptest after last bitbake changes

2015-07-14 Thread Martin Jansa
I'm not 100% sure it's related to recent bitbake variable expansion changes, but my recent builds are failing with errors about dbus-ptest cannot be installed because dbus-test-ptest doesn't exist ERROR: Collected errors: * satisfy_dependencies_for: Cannot satisfy the following dependencies *

[OE-core] [PATCH 1/7] systemd-compat-units: set S correctly

2015-07-14 Thread Ross Burton
This recipe doesn't unpack any source, so set S to ${WORKDIR}. Signed-off-by: Ross Burton --- meta/recipes-core/systemd/systemd-compat-units.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-core/systemd/systemd-compat-units.bb b/meta/recipes-core/systemd/systemd-compat-unit

[OE-core] [PATCH 2/7] opkg-arch-config: set S correctly

2015-07-14 Thread Ross Burton
This recipe doesn't unpack any source, so set S to ${WORKDIR}. Signed-off-by: Ross Burton --- meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb b/meta/recipes-devtools/opkg/opkg-arch-config

[OE-core] [PATCH 7/7] guile: Add explicit directories to guile_cross_config

2015-07-14 Thread Ross Burton
guile_cross_config() was using relative paths which mean it depends on exactly what directory it starts in. To clarify the code, always use absolute paths. Signed-off-by: Ross Burton --- meta/recipes-devtools/guile/guile_2.0.11.bb | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-)

[OE-core] [PATCH 3/7] qemuwrapper-cross: set S correctly

2015-07-14 Thread Ross Burton
This recipe doesn't unpack any source, so set S to ${WORKDIR}. Signed-off-by: Ross Burton --- meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb b/meta/recipes-devtools/qemu/qemuwrapper-cr

[OE-core] [PATCH 4/7] depmodwrapper-cross: set S correctly

2015-07-14 Thread Ross Burton
This recipe doesn't unpack any source, so set S to ${WORKDIR}. Signed-off-by: Ross Burton --- meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb b/meta/recipes-kernel/kmod/depmodwrapper-cr

[OE-core] [PATCH 1/4] classes/useradd: don't read bbnote/bbwarn/bbfatal values

2015-07-14 Thread Paul Eggleton
Since these functions now log through BitBake's message logging system we must have standalone implementations here. Signed-off-by: Paul Eggleton --- meta/classes/useradd.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/classes/useradd.bbclass b/meta/classes

[OE-core] [PATCH 3/4] Use die() or bbfatal_log() where the log should definitely be printed

2015-07-14 Thread Paul Eggleton
Change calls to bbfatal() to either die() or bbfatal_log() where we know we want the full log to be printed by the UI (calling bberror or bbfatal would otherwise suppress it since the change to connect these functions through to the UI.) bbfatal() is still fine to use where there is enough context

[OE-core] [PATCH 2/4] classes/base: fix die() to print the full log

2015-07-14 Thread Paul Eggleton
The recent change to connect through the shell logging functions caused a regression - bb.error() and bb.fatal() cause a flag to be set internally such that BitBake's UI will not print the full task log on failure; unfortunately we have in a lot of places called die() or bbfatal() within shell func

[OE-core] [PATCH 4/4] classes/logging: allow shell message functions to work in devshell

2015-07-14 Thread Paul Eggleton
Fix a regression caused by the shell message changes - if you run a shell task's runfile, the task isn't actually running in BitBake and thus the message FIFO won't exist - so we should just fall back to printing the message with echo as we did before so that the run files are still useful. Signed

[OE-core] [PATCH 5/7] dmidecode: use absolute paths in fixup task

2015-07-14 Thread Ross Burton
The calls to sed use relative paths so they depend on the directory the task starts in. To clarify the code, use absolute paths. Signed-off-by: Ross Burton --- meta/recipes-devtools/dmidecode/dmidecode_2.12.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devt

[OE-core] [PATCH 6/7] chkconfig: use explicit directories in obey_variables()

2015-07-14 Thread Ross Burton
obey_variables() was using relative paths which mean it depends on exactly what directory it starts in. To clarify the code, always use absolute paths. Signed-off-by: Ross Burton --- meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) d

[OE-core] [PATCH 0/4] Fixes for shell message changes (OE-Core side)

2015-07-14 Thread Paul Eggleton
Unfortunately the shell message changes caused a few minor regressions; this is a perfect example of a situation where what seems like a simple and logical change can have unintended consequences that you'll miss if you're not careful. More testing all round would probably be advisable in future. H

[OE-core] [PATCH 0/6] recipetool/devtool/oe-selftest: pull from BBPATH

2015-07-14 Thread Christopher Larson
From: Christopher Larson Ensures that recipetool and devtool pull plugins from layers, and oe-selftest will pull tests from layers. Unrelated to that, also prevents a traceback on parsing failure, and adds a tiny feature to appendsrc to facilitate reuse by other sub-commands. [YOCTO #7625] The

[OE-core] [PATCH 4/6] devtool: also load plugins from BBPATH

2015-07-14 Thread Christopher Larson
From: Christopher Larson This makes it easier to extend, as a layer can add its own sub-commands. tinfoil is now passed into the commands, as we needed to parse the configuration metadata to get BBPATH, and we don't want to construct tinfoil more than once, otherwise we have to deal with startup

[OE-core] [PATCH 6/6] oe-selftest: add libdirs from BBPATH to sys.path

2015-07-14 Thread Christopher Larson
From: Christopher Larson This ensures that oeqa.selftest.* from layers are found. [YOCTO #7625] Signed-off-by: Christopher Larson --- scripts/oe-selftest | 7 +++ 1 file changed, 7 insertions(+) diff --git a/scripts/oe-selftest b/scripts/oe-selftest index c19c692..60f9bb8 100755 --- a/sc

[OE-core] [PATCH 2/6] recipetool.append: add extralines arg to appendsrc

2015-07-14 Thread Christopher Larson
This makes the function more reusable for other sub-commands. Signed-off-by: Christopher Larson --- scripts/lib/recipetool/append.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/recipetool/append.py b/scripts/lib/recipetool/append.py index a2133f7..fb6b090

[OE-core] [PATCH 3/6] recipetool: also load plugins from BBPATH

2015-07-14 Thread Christopher Larson
This makes it easier to extend, as a layer can add its own sub-commands. [YOCTO #7625] Signed-off-by: Christopher Larson --- scripts/recipetool | 52 1 file changed, 32 insertions(+), 20 deletions(-) diff --git a/scripts/recipetool b/scripts

[OE-core] [PATCH 1/6] recipetool: catch BBHandledException from parsing

2015-07-14 Thread Christopher Larson
This ensures that we don't see a traceback on parsing failures. Signed-off-by: Christopher Larson --- scripts/recipetool | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/recipetool b/scripts/recipetool index c68bef4..3063cf7 100755 --- a/scripts/recipetool +++

[OE-core] [PATCH 5/6] oe-selftest: obey oeqa.selftest.__path__

2015-07-14 Thread Christopher Larson
From: Christopher Larson This ensures that all paths that hold selftest tests will be checked (oeqa.selftest is a namespace package). [YOCTO #7625] Signed-off-by: Christopher Larson --- scripts/oe-selftest | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/scripts

Re: [OE-core] [PATCH 0/6] recipetool/devtool/oe-selftest: pull from BBPATH

2015-07-14 Thread Christopher Larson
On Tue, Jul 14, 2015 at 8:57 AM, Christopher Larson wrote: > From: Christopher Larson > > Ensures that recipetool and devtool pull plugins from layers, and > oe-selftest will pull tests from layers. > > Unrelated to that, also prevents a traceback on parsing failure, and adds > a tiny feature to

[OE-core] [OE-Core][PATCH] subversion_1.8.13.bb: Upstream-Status updated to Accepted

2015-07-14 Thread jose . a . lamego
From: Jose Lamego Upstream-Status changed to Accepted due to [1] [1] http://svn.apache.org/viewvc/subversion/trunk/build/ac-macros/serf.m4?r1=1594156&r2=1689824 --- .../serf.m4-Regex-modified-to-allow-D-in-paths.patch| 6 +- 1 file changed, 5 insertions(+), 1 deletion(-)

Re: [OE-core] [yocto] glibc 2.22

2015-07-14 Thread Andre McCurdy
Hi Khem, On Mon, Jul 13, 2015 at 10:37 AM, Khem Raj wrote: > Hi All > > glibc 2.22 will release end of this month. For some time I have put together > the update here > > http://git.openembedded.org/openembedded-core-contrib/commit/?h=kraj/master&id=02e73ea526d94f21c7ef82eb96b062eff8ebb825 > > I

[OE-core] [PATCH 0/1] Fix for recipetool appendfile

2015-07-14 Thread Paul Eggleton
The following changes since commit 6be698b7270f73f40d38713ecf13f12aec0ced61: dpkg: Fix for Fedora22 and new versions of tar (2015-07-13 13:46:45 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib paule/recipetool-selftest-fix http://cgit.o

[OE-core] [PATCH 1/1] lib/oe/recipeutils: fix replace_dir_vars to return the correct variables

2015-07-14 Thread Paul Eggleton
If we sort by length of name here we get the variables we are interested in first. I've tested this with all of the variables we care about (the ones at the top of bitbake.conf) and it returns the right results. This fixes the failures we've been seeing in the oe-selftest test_recipetool_appendfil

[OE-core] [PATCH 1/2] oe/recipeutils.py: get_recipe_upstream_info update to get revision

2015-07-14 Thread Aníbal Limón
Bitbake fetcher latest_versionstring now returns a tuple with (version, revision) that helps SCM's like git to build current upstream version. [YOCTO #7605] Signed-off-by: Aníbal Limón --- meta/lib/oe/recipeutils.py | 28 +++- 1 file changed, 15 insertions(+), 13 deleti

[OE-core] [PATCH 0/2] oe/recipeutils.py: get_recipe_upstream_info improvements

2015-07-14 Thread Aníbal Limón
This patch set uses the new latest_versionstring method that returns the current revision of a version in SCM's this DEPENDS on, http://lists.openembedded.org/pipermail/bitbake-devel/2015-July/006034.html Aníbal Limón (2): oe/recipeutils.py: get_recipe_upstream_info update to get revision rec

[OE-core] [PATCH 2/2] recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv

2015-07-14 Thread Aníbal Limón
Some recipes uses v or r prefixes in versions that makes wrong comparisions over recipes like lz4 r123 > 128. Signed-off-by: Aníbal Limón --- meta/lib/oe/recipeutils.py | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py index f3da864

[OE-core] [PATCHv2 0/3] oe/recipeutils.py: get_recipe_upstream_info improvements

2015-07-14 Thread Aníbal Limón
Sending v2 i forget to include first patch. This patch set uses the new latest_versionstring method that returns the current revision of a version in SCM's this DEPENDS on, http://lists.openembedded.org/pipermail/bitbake-devel/2015-July/006034.html Aníbal Limón (3): oe/recipeutils.py: get_reci

[OE-core] [PATCHv2 3/3] recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv

2015-07-14 Thread Aníbal Limón
Some recipes uses v or r prefixes in versions that makes wrong comparisions over recipes like lz4 r123 > 128. Signed-off-by: Aníbal Limón --- meta/lib/oe/recipeutils.py | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py index f3da864

[OE-core] [PATCHv2 1/3] oe/recipeutils.py: get_recipe_upstream_info only use sfx and pfx when exits

2015-07-14 Thread Aníbal Limón
Don't use pfx and sfx when not exist because cause formatting errors like 2.9HASH instead of 2.9+gitAUTOINC+HASH. Signed-off-by: Aníbal Limón --- meta/lib/oe/recipeutils.py | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe

[OE-core] [PATCHv2 2/3] oe/recipeutils.py: get_recipe_upstream_info update to get revision

2015-07-14 Thread Aníbal Limón
Bitbake fetcher latest_versionstring now returns a tuple with (version, revision) that helps SCM's like git to build current upstream version. [YOCTO #7605] Signed-off-by: Aníbal Limón --- meta/lib/oe/recipeutils.py | 28 +++- 1 file changed, 15 insertions(+), 13 deleti

Re: [OE-core] [yocto] glibc 2.22

2015-07-14 Thread Khem Raj
> On Jul 14, 2015, at 2:56 PM, Andre McCurdy wrote: > > Hi Khem, > > On Mon, Jul 13, 2015 at 10:37 AM, Khem Raj wrote: >> Hi All >> >> glibc 2.22 will release end of this month. For some time I have put together >> the update here >> >> http://git.openembedded.org/openembedded-core-contrib/

[OE-core] [PATCH] sstate.bbclass: remove redundant cd and mkdir commands

2015-07-14 Thread Andre McCurdy
Update sstate_create_package and sstate_unpack_package to remove redundant initial mkdir and cd commands. The working directory is now setup correctly before the shell functions are called. Signed-off-by: Andre McCurdy --- meta/classes/sstate.bbclass | 6 ++ 1 file changed, 2 insertions(+),

[OE-core] [PATCH] u-boot: Upgrade to 2015.07 release

2015-07-14 Thread Otavio Salvador
This upgrades the U-Boot and its related recipes for the 2015.07 release. The following recipes has been upgraded: - u-boot - u-boot-mkimage - u-boot-fw-utils The patches which were applied on top of the 2015.01 release are dropped as those are not needed in this release. Signed-off-by: Otav

Re: [OE-core] [PATCH 1/3] gcc-4.9: Upgrade to 4.9.3

2015-07-14 Thread Khem Raj
> On Jul 13, 2015, at 1:12 AM, Robert Yang wrote: > > > Hi Khem, > > This upgrade breaks linux-yocto 3.14 build on qemumips or qemumips64: > > In local.conf: > MACHINE = "qemumips" > PREFERRED_VERSION_linux-yocto_qemumips = "3.14%" > > $ bitbake linux-yocto -ccompile > > Then errors: > tmp/

[OE-core] [PATCH V3 1/3] iasl: Recipe taken from the luv-yocto repository

2015-07-14 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval Taken from [1]. ACPICA is licensed under two main licenses: 1) An Intel license (Intel-ACPI) and 2) a dual GPL/BSP license. This recipe uses the latter. [1] https://github.com/01org/luv-yocto/tree/master/meta-luv/recipes-extended/iasl Signed-off-by: Leonardo Sandoval -

[OE-core] [PATCH V3 3/3] runqemu: Define OECORE_MACHINE_SYSROOT on setup_sysroot

2015-07-14 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval At least the OVFM (UEFI Firmware for Qemu and KVM) recipe stores the BIOS under $OE_TMPDIR/sysroots/$MACHINE, now defined as OECORE_MACHINE_SYSROOT. The latter is used when searching BIOS, VGA BIOS and keymaps. As a example, to boot a OVFM BIOS, one can run the following c

[OE-core] [PATCH V3 0/3] Add UEFI firmware for qemux86*

2015-07-14 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval These patches include: 1. iasl recipe taken from luv-yocto repository into OE-Core (the only change done was the LICENSE, from Intel-ACPI to BSD | GPLv2) 2. OVMF recipe (taken from luv-yocto repository) into OE-Core 3. Boot script: Instrumenting runqem

[OE-core] [PATCH V3 2/3] ovmf: Recipe taken from luv-yocto repository

2015-07-14 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval OVMF metadata taken from the luv-yocto[1] repository and copied into OE-Core meta/recipes-core folder. [1] https://github.com/01org/luv-yocto/tree/master/meta-luv/recipes-core/ovmf [YOCTO #5654] Signed-off-by: Leonardo Sandoval --- ...s-Force-tools-variables-to-host-t

[OE-core] Query about the toolchian version of Yocto 1.9

2015-07-14 Thread Luo Zhenhua
Hi, I can see that there are recipes of 3 gcc version(4.8, 4.9, 5.1) in master branch of Yocto, may I know which one will be officially supported by Yocto 1.9 release? Will the other versions be tested and supported? Best Regards, Zhenhua -- ___ Op

Re: [OE-core] Query about the toolchian version of Yocto 1.9

2015-07-14 Thread Robert Yang
On 07/15/2015 11:41 AM, Luo Zhenhua wrote: Hi, I can see that there are recipes of 3 gcc version(4.8, 4.9, 5.1) in master branch of Yocto, may I know which one will be officially supported by Yocto 1.9 release? Will the other versions be tested and supported? What I know is, gcc 4.8 is a bac

Re: [OE-core] Query about the toolchian version of Yocto 1.9

2015-07-14 Thread Khem Raj
> On Jul 14, 2015, at 9:51 PM, Robert Yang wrote: > > > > On 07/15/2015 11:41 AM, Luo Zhenhua wrote: >> Hi, >> >> I can see that there are recipes of 3 gcc version(4.8, 4.9, 5.1) in master >> branch of Yocto, may I know which one will be officially supported by Yocto >> 1.9 >> release? Will

Re: [OE-core] [PATCH 1/3] gcc-4.9: Upgrade to 4.9.3

2015-07-14 Thread Robert Yang
On 07/15/2015 12:07 PM, Khem Raj wrote: On Jul 13, 2015, at 1:12 AM, Robert Yang wrote: Hi Khem, This upgrade breaks linux-yocto 3.14 build on qemumips or qemumips64: In local.conf: MACHINE = "qemumips" PREFERRED_VERSION_linux-yocto_qemumips = "3.14%" $ bitbake linux-yocto -ccompile Th

[OE-core] [PATCH v3] rpcbind: handle rpcbind options

2015-07-14 Thread wenzong.fan
From: Li Wang While runing: $ systemctl restart rpcbind $ systemctl status rpcbind There are errors like below: rpcbind[1722]: Cannot open '/tmp/rpcbind.xdr' file for reading, \ errno 2 (No such file or directory) rpcbind[1722]: Cannot open '/tmp/portmap.xdr' file for reading, \ err

Re: [OE-core] [PATCH 1/1 v2] rpcbind: handle rpcbind options

2015-07-14 Thread wenzong fan
On 07/14/2015 07:14 PM, Burton, Ross wrote: On 13 July 2015 at 06:25, mailto:wenzong@windriver.com>> wrote: -EnvironmentFile=-@SYSCONFDIR@/rpcbind.conf +EnvironmentFile=@SYSCONFDIR@/rpcbind.conf Did you intend to drop the - from the EnvironmentFile statement? I'm guessing not.