Re: [OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Mario Domenech Goulart
On Mon, 23 Jan 2017 13:05:48 + Richard Purdie <richard.pur...@linuxfoundation.org> wrote: > On Mon, 2017-01-23 at 13:56 +0100, Mario Domenech Goulart wrote: >> >> On Mon, 23 Jan 2017 12:35:52 + Richard Purdie >> <richard.pur...@linuxfoundation.org>

Re: [OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Mario Domenech Goulart
Hi, On Mon, 23 Jan 2017 12:35:52 + Richard Purdie wrote: > On Mon, 2017-01-23 at 12:26 +, Richard Purdie wrote: >> diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes- >> core/busybox/busybox.inc >> index 1f4a48c..f247e8d 100644 >> ---

[OE-core] [PATCH] insane.bbclass: Typo fix in do_qa_unpack's bb.note

2016-07-21 Thread Mario Domenech Goulart
s/Checking has ${S} been created/Checking if ${S} has been created/ Signed-off-by: Mario Domenech Goulart <mario.goul...@bmw-carit.de> --- meta/classes/insane.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.b

Re: [OE-core] [PATCH 2/2] kernel-yocto.bbclass: move do_kernel_link_vmlinux() into kernel.bbclass

2015-12-14 Thread Mario Domenech Goulart
Hello Andre, On Mon, 14 Dec 2015 12:04:50 -0800 Andre McCurdy wrote: > Move do_kernel_link_vmlinux() from kernel-yocto.bbclass into > kernel.bbclass so that it's available to any kernel recipe. > > Note that the task is not enabled by default in kernel-yocto.bbclass, > so

[OE-core] [PATCH] linux-yocto-custom: reference the kernel-yocto class (not linux-yocto)

2015-11-12 Thread Mario Domenech Goulart
The comment that describes the recipe references the linux-yocto class, which doesn't exist. The kernel-yocto class is actually used by linux-yocto.inc, which the recipe requires. Signed-off-by: Mario Domenech Goulart <ma...@ossystems.com.br> --- meta-skeleton/recipes-kernel/linux/linux

[OE-core] [PATCH] cross-canadian.bbclass: typo fix in comments (s/repsonsible/responsible/)

2015-09-03 Thread Mario Domenech Goulart
Signed-off-by: Mario Domenech Goulart <ma...@ossystems.com.br> --- meta/classes/cross-canadian.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass index 65ba457..d30a168 100644 --- a/meta/c

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] distutils.bbclass: consistency between error message and setup.py's command

2015-05-25 Thread Mario Domenech Goulart
setup.py was called with build as argument, but the error message would report build_ext. Signed-off-by: Mario Domenech Goulart ma...@ossystems.com.br --- meta/classes/distutils.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/distutils.bbclass b/meta

Re: [OE-core] [PATCH] README: add Contributing section

2015-05-13 Thread Mario Domenech Goulart
On Wed, 13 May 2015 09:54:39 +0100 Paul Eggleton paul.eggle...@linux.intel.com wrote: On Wednesday 13 May 2015 07:17:01 Anders Darander wrote: * Mario Domenech Goulart ma...@ossystems.com.br [150512 16:58]: +Contributing + + +To contribute to this layer you should submit

[OE-core] [PATCH v2] README: add Contributing section

2015-05-13 Thread Mario Domenech Goulart
Tips on how to submit patches and links to source code and mailing list. Signed-off-by: Mario Domenech Goulart ma...@ossystems.com.br --- README | 14 ++ 1 file changed, 14 insertions(+) diff --git a/README b/README index 665c98f..521916c 100644 --- a/README +++ b/README @@ -13,3

[OE-core] [PATCH] native.bbclass: avoid unintended substring replacement when setting PROVIDES

2015-05-12 Thread Mario Domenech Goulart
-jse-jdk-x86-64-native virtual/java-native virtual/javac-native Change-Id: I8186992dae58e37c2a2364586360ff9b7da9198f Signed-off-by: Mario Domenech Goulart ma...@ossystems.com.br --- meta/classes/native.bbclass |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/classes

[OE-core] [PATCH] README: add Contributing section

2015-05-12 Thread Mario Domenech Goulart
Tips on how to submit patches. Signed-off-by: Mario Domenech Goulart ma...@ossystems.com.br --- README | 21 + 1 file changed, 21 insertions(+) diff --git a/README b/README index 665c98f..bbd7234 100644 --- a/README +++ b/README @@ -13,3 +13,24 @@ which can be found

Re: [OE-core] [PATCH] oeqa/utils: Allow ~ in bblayers

2015-04-30 Thread Mario Domenech Goulart
On Thu, 30 Apr 2015 07:16:28 -0600 Gary Thomas g...@mlbassoc.com wrote: On 2015-04-30 07:08, Mario Domenech Goulart wrote: On Thu, 30 Apr 2015 14:04:50 +0300 Ed Bartosh ed.bart...@linux.intel.com wrote: Bitbake can parse ~ in bblayer's paths. Added this functionality to oeqa code

Re: [OE-core] [PATCH] oeqa/utils: Allow ~ in bblayers

2015-04-30 Thread Mario Domenech Goulart
Hi Ed, On Thu, 30 Apr 2015 14:04:50 +0300 Ed Bartosh ed.bart...@linux.intel.com wrote: Bitbake can parse ~ in bblayer's paths. Added this functionality to oeqa code. Signed-off-by: Ed Bartosh ed.bart...@linux.intel.com --- meta/lib/oeqa/utils/commands.py | 2 ++ 1 file changed, 2

Re: [OE-core] Ownership issue in package contents

2015-04-06 Thread Mario Domenech Goulart
Hi Mark and all, On Tue, 31 Mar 2015 16:47:36 -0500 Mark Hatle mark.ha...@windriver.com wrote: On 3/31/15 4:21 PM, Mario Domenech Goulart wrote: On Tue, 31 Mar 2015 16:09:42 -0500 Mark Hatle mark.ha...@windriver.com wrote: On 3/31/15 4:01 PM, Mario Domenech Goulart wrote: On Tue, 31 Mar

[OE-core] [PATCH] useradd_base.bbclass: typo fixes (s/scucess/success/)

2015-04-01 Thread Mario Domenech Goulart
Signed-off-by: Mario Domenech Goulart ma...@ossystems.com.br --- meta/classes/useradd_base.bbclass | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/meta/classes/useradd_base.bbclass b/meta/classes/useradd_base.bbclass index c47b1eb..4398a25 100644 --- a/meta

Re: [OE-core] Ownership issue in package contents

2015-03-31 Thread Mario Domenech Goulart
Hi Ross, On Tue, 31 Mar 2015 14:50:06 +0100 Burton, Ross ross.bur...@intel.com wrote: On 27 March 2015 at 17:31, Mario Domenech Goulart ma...@ossystems.com.br wrote: Note that, although I run chown -R foo:foo ${D}${libdir}/foo in the recipe, ./usr/lib/foo/ in the package is owned

Re: [OE-core] Ownership issue in package contents

2015-03-31 Thread Mario Domenech Goulart
On Tue, 31 Mar 2015 15:51:50 -0500 Mark Hatle mark.ha...@windriver.com wrote: On 3/31/15 3:33 PM, Mario Domenech Goulart wrote: On Tue, 31 Mar 2015 13:23:00 -0500 Mark Hatle mark.ha...@windriver.com wrote: On 3/31/15 12:20 PM, Mario Domenech Goulart wrote: On Tue, 31 Mar 2015 14:50:06

Re: [OE-core] Ownership issue in package contents

2015-03-31 Thread Mario Domenech Goulart
On Tue, 31 Mar 2015 16:09:42 -0500 Mark Hatle mark.ha...@windriver.com wrote: On 3/31/15 4:01 PM, Mario Domenech Goulart wrote: On Tue, 31 Mar 2015 15:51:50 -0500 Mark Hatle mark.ha...@windriver.com wrote: On 3/31/15 3:33 PM, Mario Domenech Goulart wrote: On Tue, 31 Mar 2015 13:23:00

Re: [OE-core] Ownership issue in package contents

2015-03-31 Thread Mario Domenech Goulart
Hi Mark, On Tue, 31 Mar 2015 13:23:00 -0500 Mark Hatle mark.ha...@windriver.com wrote: On 3/31/15 12:20 PM, Mario Domenech Goulart wrote: On Tue, 31 Mar 2015 14:50:06 +0100 Burton, Ross ross.bur...@intel.com wrote: On 27 March 2015 at 17:31, Mario Domenech Goulart ma...@ossystems.com.br

[OE-core] Ownership issue in package contents

2015-03-27 Thread Mario Domenech Goulart
Hi, I'm observing an issue with directory ownership in package contents. Not sure if I'm overlooking something really basic or if I hit a bug. Here's a minimal recipe to illustrate the problem: $ cat foo.bb LICENSE = CLOSED inherit useradd USERADD_PACKAGES = ${PN} USERADD_PARAM_${PN} = foo

Re: [OE-core] [PATCH V2 1/1] bitbake-layers: add a ability to query layer dependencies from layer index

2015-01-16 Thread Mario Domenech Goulart
Hi, On Mon, 12 Jan 2015 14:48:42 +0800 Chong Lu chong...@windriver.com wrote: It maybe depends on other layers when one layer is added to BBLAYERS. If define LAYERDEPENDS variable in this layer, we will get error from bitbake. But sometimes, we don't have defined. Add a mechanism to extend

Re: [OE-core] [PATCH 2/2] lib/oe/image.py: Handle compressed IMAGE_TYPEDEP values

2014-12-09 Thread Mario Domenech Goulart
On Tue, 9 Dec 2014 18:24:48 -0200 Otavio Salvador ota...@ossystems.com.br wrote: When computing the dependency graph for the image generation, we need to take into account the compression type and identify the base type it relates to. This allow for a more robust graph generation even when

Re: [OE-core] Should lsb rdepends on lsbinitscripts?

2014-09-18 Thread Mario Domenech Goulart
Hi, On Fri, 22 Aug 2014 19:47:22 + Mario Domenech Goulart ma...@ossystems.com.br wrote: The scripts installed by the lsb package (under /etc/core-lsb) source /etc/init.d/functions, but that file is not installed by lsb or by any of its dependencies, as far as I can see. /etc/init.d

[OE-core] Should lsb rdepends on lsbinitscripts?

2014-08-22 Thread Mario Domenech Goulart
Hi, The scripts installed by the lsb package (under /etc/core-lsb) source /etc/init.d/functions, but that file is not installed by lsb or by any of its dependencies, as far as I can see. /etc/init.d/functions is provided by the lsbinitscripts package. Should it be in lsb's RDEPENDS? Best

Re: [OE-core] [PATCH] libxml2: explicitly disable zlib for native builds

2014-08-21 Thread Mario Domenech Goulart
On Thu, 21 Aug 2014 08:50:51 +0100 Richard Purdie richard.pur...@linuxfoundation.org wrote: On Thu, 2014-08-14 at 17:20 -0300, Mario Domenech Goulart wrote: Without this change, meta-openembedded's php recipe (as of 45e62fb8 -- php 5.4.14: use pkg-config for libxml2 detection) breaks

[OE-core] [PATCH] libxml2: explicitly disable zlib for native builds

2014-08-14 Thread Mario Domenech Goulart
is leaking into libxml2's build. Signed-off-by: Mario Domenech Goulart ma...@ossystems.com.br --- meta/recipes-core/libxml/libxml2.inc |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/libxml/libxml2.inc b/meta/recipes-core/libxml/libxml2.inc index 9aa640b

Re: [OE-core] [PATCH] blacklist.bbclass: Avoid blacklist specific handle in base.bbclass

2013-08-03 Thread Mario Domenech Goulart
Hi Otavio, On Sat, 3 Aug 2013 19:30:57 -0300 Otavio Salvador ota...@ossystems.com.br wrote: base.bbclass had code which handled the PNBLACKLIST in case of multilib use. This is better to be done in the blacklist.bbclass so it has all logic in a single place. Signed-off-by: Otavio Salvador

[OE-core] [PATCH] pulseaudio: explicitly set --with-database=simple

2012-12-03 Thread Mario Domenech Goulart
supported databases. Signed-off-by: Mario Domenech Goulart ma...@ossystems.com.br --- meta/recipes-multimedia/pulseaudio/pulseaudio.inc |1 + .../pulseaudio/pulseaudio_2.1.bb |2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/recipes-multimedia

Re: [OE-core] xcursor-transparent-theme-0.1.1: upstream source vanish

2012-06-28 Thread Mario Domenech Goulart
Hi Dennis, On Thu, 28 Jun 2012 14:08:48 +0800 Dennis.Yxun dennis.y...@gmail.com wrote: Hit following error, seems that upstream source vanished either provide with another valid download url, or deprecated this package? any idea? Dennis ARNING: Checksum error encountered with download

Re: [OE-core] [Proof of concept] patch.bbclass: add incredibly naive 'git am' mode

2011-11-30 Thread Mario Domenech Goulart
Hi, On Wed, 30 Nov 2011 16:43:04 +0100 Koen Kooi k...@dominion.thruhere.net wrote: Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/classes/patch.bbclass |1 + meta/lib/oe/patch.py | 14 ++ 2 files changed, 15 insertions(+), 0 deletions(-) diff --git