[OE-core] [PATCH] busybox: fix upgrade problem with deb packages

2014-10-07 Thread Aníbal Limón
ssing links for utilities tar, find, tail, cut. Busybox syslog prerm script tries to stop the daemon but if already stopped returns 1 then causes that dpkg fails because it expects 0. In order to fix, Added workaround to exit 0 in debian packages. [YOCTO #6768] Signed-off-by: Aníbal

Re: [OE-core] [PATCH] busybox: fix upgrade problem with deb packages

2014-10-07 Thread Aníbal Limón
, Do you have a plan to port them to master? I can help with that. Best regards. On 07/10/14 15:36, Andreas Oberritter wrote: Hello Aníbal, On 07.10.2014 22:00, Aníbal Limón wrote: Busybox prerm scripts create temp directory and fill with symlinks to common utilities in order to upgrade itself

Re: [OE-core] [PATCH] busybox: fix upgrade problem with deb packages

2014-10-08 Thread Aníbal Limón
On 07/10/14 18:39, Andreas Oberritter wrote: On 08.10.2014 00:49, Aníbal Limón wrote: I reviewed the patches and looks good, only i have a comment in this file, http://git.openembedded.org/openembedded-core-contrib/commit/?h=obi/dora&id=a5f18409d1bf2877f898b902cafc317cbf7462e4 I didn&#x

Re: [OE-core] [PATCH] busybox: fix upgrade problem with deb packages

2014-10-09 Thread Aníbal Limón
rget image. Comments? Best regards. On 08/10/14 13:57, Andreas Oberritter wrote: On 08.10.2014 20:00, Aníbal Limón wrote: On 07/10/14 18:39, Andreas Oberritter wrote: On 08.10.2014 00:49, Aníbal Limón wrote: I reviewed the patches and looks good, only i have a comment in this f

[OE-core] [PATCH] package_deb: skip pre/postrm scripts on upgrade, write only one shebang

2014-10-10 Thread Aníbal Limón
: Andreas Oberritter Signed-off-by: Aníbal Limón --- meta/classes/package_deb.bbclass | 17 +++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass index 7bc29df..5b5f7e2 100644 --- a/meta/classes

[OE-core] License manifest OR handling

2014-10-13 Thread Aníbal Limón
Hi everybody, I'm working in one bug [1] related to License manifest creation and i have some concerns about what is expected in License creation more specifically in the OR's handling. I re-implemented license creation function from shell to python for use oe.license module and added support

Re: [OE-core] License manifest OR handling

2014-10-14 Thread Aníbal Limón
Jonathan, I think is possible but i don't know how useful it is, Can you give an example? Regards. On 13/10/14 17:18, Jonathan Liu wrote: On 14/10/2014 8:17 AM, Aníbal Limón wrote: Hi everybody, I'm working in one bug [1] related to License manifest creation and i have some conc

[OE-core] [PATCH 4/4] license_class: Fix remove + trim in license_create_manifest.

2014-10-29 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index a055660..74de364 100644 --- a/meta/classes/license.bbclass +++ b/meta/classes/license.bbclass

[OE-core] [PATCH 2/4] license_class: Added support for INCOMPATIBLE_LICENSE into license_create_manifest

2014-10-29 Thread Aníbal Limón
Now license_create_manifest handle INCOMPATIBLE_LICENSE to avoid put them into license.manifest and copy them into target image. Generalized license_ok(license) to license_ok(bad_licenses, license) to avoid duplicate code. [YOCTO #6765] Signed-off-by: Aníbal Limón --- meta/classes

[OE-core] [PATCH 3/4] license_class: Added LICENSE_PRIORITY support

2014-10-29 Thread Aníbal Limón
Now you can specify LICENSE_PRIORITY for license manifest creation. This means that if you have LICENSE expression with OR's only one license is selected based on LICENSE_PRIORITY and INCOMPATIBLE_LICENSE. [YOCTO #6757] Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass

[OE-core] [PATCH 1/4] license_class: Reimplemented manifest creation in python

2014-10-29 Thread Aníbal Limón
Reimplemented license_manifest_create from shell to python, in order to use oe.license module for handle INCOMPATIBLE_LICENSE and add License prorities into OR's evaluation. Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 161 --- 1

[OE-core] [PATCH 0/4] license_class: Added support for LICENSE_PRIORITY in manifest creation

2014-10-29 Thread Aníbal Limón
e test was done building qemux86/core-image-sato with and without these set of patches and then run diff recursive under common-licenses created directory. You can find a tarball with common-license directories, resulted diff and local.conf at: https://bugzilla.yoctoproject.org/attachment.cgi?id=22

Re: [OE-core] [PATCH 1/4] license_class: Reimplemented manifest creation in python

2014-10-30 Thread Aníbal Limón
/10/14 15:28, Richard Purdie wrote: On Wed, 2014-10-29 at 12:34 -0600, Aníbal Limón wrote: Reimplemented license_manifest_create from shell to python, in order to use oe.license module for handle INCOMPATIBLE_LICENSE and add License prorities into OR's evaluation. Signed-off-by: Aníbal

Re: [OE-core] [PATCH] package_manager: Fix populate_sdk for dpkg packages

2014-11-03 Thread Aníbal Limón
Ricardo, I think the problem isn't related to this, the all_arch_list is set to archs + multilib_archs see the __init__ func. Best regards. On 01/11/14 10:57, Ricardo Ribalda Delgado wrote: Without this patch: ERROR: Unable to install packages. Command '/var/lib/jenkins/jobs/qt5022-cesium/

Re: [OE-core] [PATCH] package_manager: Fix populate_sdk for dpkg packages

2014-11-03 Thread Aníbal Limón
hanks. On 03/11/14 11:27, Aníbal Limón wrote: Ricardo, I think the problem isn't related to this, the all_arch_list is set to archs + multilib_archs see the __init__ func. Best regards. On 01/11/14 10:57, Ricardo Ribalda Delgado wrote: Without this patch: ERROR: Unable to install pa

[OE-core] [PATCH] package_manager: DpkgPM fix populate_sdk

2014-11-03 Thread Aníbal Limón
DpkgPM change all_arch_list variable set from PACKAGE_ARCHS to passed archs variable because is different when is executed from rootfs.py and sdk.py. Credits to: Ricardo Ribalda Signed-off-by: Aníbal Limón --- meta/lib/oe/package_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[OE-core] [PATCH] perl: Fix bug when installs SDK in custom directory

2014-11-03 Thread Aníbal Limón
Add site_perl and vendor_perl directories in create_wrapper this fix bug when searching for libraries in these directories. [YOCTO #6890] Signed-off-by: Aníbal Limón --- meta/recipes-devtools/perl/perl_5.20.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes

[OE-core] [PATCHv2 0/8] license_class: Added support for LICENSE_PRIORITY in manifest creation

2014-11-04 Thread Aníbal Limón
roject.org/attachment.cgi?id=2223 Aníbal Limón (8): license_class: Reimplemented manifest creation in python license_class: Added support for INCOMPATIBLE_LICENSE into license_create_manifest license_class: Added LICENSE_PRIORITY support license_class: Fix remove + trim in license_creat

[OE-core] [PATCHv2 1/8] license_class: Reimplemented manifest creation in python

2014-11-04 Thread Aníbal Limón
Reimplemented license_manifest_create from shell to python, in order to use oe.license module for handle INCOMPATIBLE_LICENSE and add License prorities into OR's evaluation. Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 161 --- 1

[OE-core] [PATCHv2 8/8] glibc-locale: Added LIC_FILES_CHKSUM for avoid warnings in license manifest creation.

2014-11-04 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/recipes-core/glibc/glibc-collateral.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-core/glibc/glibc-collateral.inc b/meta/recipes-core/glibc/glibc-collateral.inc index 85e06da..e9e411d 100644 --- a/meta/recipes-core/glibc/glibc

[OE-core] [PATCHv2 3/8] license_class: Added LICENSE_PRIORITY support

2014-11-04 Thread Aníbal Limón
Now you can specify LICENSE_PRIORITY for license manifest creation. This means that if you have LICENSE expression with OR's only one license is selected based on LICENSE_PRIORITY and INCOMPATIBLE_LICENSE. [YOCTO #6757] Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass

[OE-core] [PATCHv2 4/8] license_class: Fix remove + trim in license_create_manifest.

2014-11-04 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index a055660..74de364 100644 --- a/meta/classes/license.bbclass +++ b/meta/classes/license.bbclass

[OE-core] [PATCHv2 6/8] license_class: license_create_manifest improve package file read

2014-11-04 Thread Aníbal Limón
Improved package file read using oe.packagedata.read_pkgdatafile instead of doing itself. Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 23 +-- 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes

[OE-core] [PATCHv2 5/8] license_class: license_manifest_creation improvment copying licenses to target

2014-11-04 Thread Aníbal Limón
Do a hardlink for license.manifest and licenses instead of copy this helps in reduce disk usage when rootfs is built. Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/meta/classes/license.bbclass b/meta

[OE-core] [PATCHv2 7/8] packagegropups: Added LIC_FILES_CHKSUM with MIT license to avoid warning when create license manifest.

2014-11-04 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb | 1 + meta/recipes-core/packagegroups/packagegroup-base.bb | 1 + meta/recipes-core/packagegroups/packagegroup-core-boot.bb| 1 + meta/recipes-core

[OE-core] [PATCHv2 2/8] license_class: Added support for INCOMPATIBLE_LICENSE into license_create_manifest

2014-11-04 Thread Aníbal Limón
Now license_create_manifest handle INCOMPATIBLE_LICENSE to avoid put them into license.manifest and copy them into target image. Generalized license_ok(license) to license_ok(bad_licenses, license) to avoid duplicate code. [YOCTO #6765] Signed-off-by: Aníbal Limón --- meta/classes

[OE-core] [PATCH][dizzy] package_manager: DpkgPM fix populate_sdk

2014-11-20 Thread Aníbal Limón
DpkgPM change all_arch_list variable set from PACKAGE_ARCHS to passed archs variable because is different when is executed from rootfs.py and sdk.py. Credits to: Ricardo Ribalda (From OE-Core rev: f6fb8c16f49fd9a2b124ad55f5c4fed82d7e6dca) [YOCTO #6976] Signed-off-by: Aníbal Limón Signed-off

[OE-core] [PATCH] dpkg: Upgrade to 1.17.21

2014-11-24 Thread Aníbal Limón
Remove dpkg-1.17.4-CVE-2014-0471, dpkg-1.17.4-CVE-2014-0471-CVE-2014-3127 and ignore_extra_fields patches that are already in upstream. Rebase no-vla-warning patch. Signed-off-by: Aníbal Limón --- meta/recipes-devtools/dpkg/dpkg.inc| 3 +- .../dpkg-1.17.4-CVE-2014-0471-CVE

[OE-core] [PATCH 00/12] Usage bitbake fetcher latest_versionstring in distrodata_class

2014-11-27 Thread Aníbal Limón
s.inc: update maintainers (2014-11-26 17:06:10 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib alimon/fetcher-distrodata http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=alimon/fetcher-distrodata Aníbal Limón (12): distrodata_class: checkpkg make

[OE-core] [PATCH 01/12] distrodata_class: checkpkg make usage of latest_versionstring methods in bitbake fetcher

2014-11-27 Thread Aníbal Limón
] Signed-off-by: Aníbal Limón --- meta/classes/distrodata.bbclass | 492 1 file changed, 43 insertions(+), 449 deletions(-) diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index a890de7..83aa381 100644 --- a/meta/classes

[OE-core] [PATCH 0/3] Upgrades for comply Intel Graphics Stack Release 2014Q3

2014-12-01 Thread Aníbal Limón
t.org/poky-contrib alimon/linux_intel_graphics_2014q3 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=alimon/linux_intel_graphics_2014q3 Aníbal Limón (3): libdrm: Upgrade to 2.4.58. mesa: Upgrade to 10.3.3 xorg-xserver: Upgrade to 1.16.2 .../drm/libdrm/GNU_SOURCE_definition.

[OE-core] [PATCH 1/3] libdrm: Upgrade to 2.4.58.

2014-12-01 Thread Aníbal Limón
Remove GNU_SOURCE_definition patch because is already integrated in upstream. Signed-off-by: Aníbal Limón --- .../drm/libdrm/GNU_SOURCE_definition.patch | 30 -- meta/recipes-graphics/drm/libdrm_2.4.54.bb | 8 -- meta/recipes-graphics/drm/libdrm_2.4.58

[OE-core] [PATCH 2/3] mesa: Upgrade to 10.3.3

2014-12-01 Thread Aníbal Limón
Remove 0002-pipe_loader_sw-include-xlib_sw_winsys.h-only-when-HA, 0003-EGL-Mutate-NativeDisplayType-depending-on-config.patch and 0006-fix-out-of-tree-egl.patch that are already in upstream. Signed-off-by: Aníbal Limón --- .../mesa/{mesa-gl_10.1.3.bb => mesa-gl_10.3.3.bb} | 0 ..._sw-incl

[OE-core] [PATCH 3/3] xorg-xserver: Upgrade to 1.16.2

2014-12-01 Thread Aníbal Limón
Remove crosscompile, mips64-compile and present-module because are already in upstream. Signed-off-by: Aníbal Limón --- .../xorg-xserver/xserver-xorg/crosscompile.patch | 22 .../xserver-xorg/mips64-compiler.patch | 29 -- .../xorg-xserver/xserver-xorg/present

Re: [OE-core] [PATCH 2/3] mesa: Upgrade to 10.3.3

2014-12-02 Thread Aníbal Limón
On 02/12/14 04:07, Nicolas Dechesne wrote: On Mon, Dec 1, 2014 at 11:36 PM, Aníbal Limón wrote: -SRCREV = "0028eb1083e6adc110a23a5f02c993cda217067a" -PV = "10.1.3+git${SRCPV}" +SRCREV = "9cc26056ee13f25c5785fef81b31487f1429baa4" +PV = "10.3.3+git${SRCPV}&qu

Re: [OE-core] [PATCH 1/3] libdrm: Upgrade to 2.4.58.

2014-12-04 Thread Aníbal Limón
I made a patch v2 for this set, https://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=alimon/linux_intel_graphics_2014q3_v2 I'm testing it to send again. Kind regards. alimon On 04/12/14 09:31, Burton, Ross wrote: On 4 December 2014 at 15:23, Nicolas Dechesne mailto:nicolas.deche.

[OE-core] [PATCHv2 1/3] libdrm: Upgrade to 2.4.58.

2014-12-04 Thread Aníbal Limón
Disable man pages creation because it needs to download docbook.xsl from upstream site and sometimes can't (resource unavailable) and this cause build fails. Remove GNU_SOURCE_definition patch it's already integrated in upstream. Signed-off-by: Aníbal Limón --- meta/recipes-gr

[OE-core] [PATCHv2 0/3] Upgrades for comply Intel Graphics Stack Release 2014Q3

2014-12-04 Thread Aníbal Limón
/linux_intel_graphics_2014q3_v2 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=alimon/linux_intel_graphics_2014q3_v2 Aníbal Limón (3): libdrm: Upgrade to 2.4.58. mesa: Upgrade to 10.3.4. xorg-xserver: Upgrade to 1.16.2. meta/recipes-graphics/drm/libdrm.inc | 1 + .../drm

[OE-core] [PATCHv3 3/3] xorg-xserver: Upgrade to 1.16.2.

2014-12-04 Thread Aníbal Limón
because are already in upstream. Signed-off-by: Aníbal Limón --- .../recipes-graphics/xorg-xserver/xserver-xorg.inc | 5 +- .../xorg-xserver/xserver-xorg/crosscompile.patch | 22 .../xserver-xorg/mips64-compiler.patch | 29 -- .../xorg-xserver/xserver-xorg/present

[OE-core] [PATCHv2 2/3] mesa: Upgrade to 10.3.4.

2014-12-04 Thread Aníbal Limón
Remove 0002-pipe_loader_sw-include-xlib_sw_winsys.h-only-when-HA, 0003-EGL-Mutate-NativeDisplayType-depending-on-config.patch and 0006-fix-out-of-tree-egl.patch are already in upstream. Signed-off-by: Aníbal Limón --- .../mesa/{mesa-gl_10.1.3.bb => mesa-gl_10.3.4.bb} | 0 ..._sw-incl

Re: [OE-core] [PATCHv2 0/3] Upgrades for comply Intel Graphics Stack Release 2014Q3

2014-12-09 Thread Aníbal Limón
On 09/12/14 11:20, Kamble, Nitin A wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Aníbal Limón Sent: Thursday, December 04, 2014 3:18 PM To: openembedded-core

Re: [OE-core] [PATCHv2 0/3] Upgrades for comply Intel Graphics Stack Release 2014Q3

2014-12-10 Thread Aníbal Limón
On 10/12/14 02:08, Nicolas Dechesne wrote: On Tue, Dec 9, 2014 at 9:06 PM, Burton, Ross wrote: On 9 December 2014 at 18:14, Aníbal Limón wrote: I don't know, maybe Ross knows?. I ask for Piglit results to verify that approx 95% passes as that's the expected pass rate. I do

[OE-core] [PATCH] license_class: fix license.manifest shows LICENSE field differently to recipe

2014-12-19 Thread Aníbal Limón
Drop removal of [|&()*] operators in pkged_lic because this removal is only needed to validate if license is collected. [YOCTO #6757] Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/meta/cla

[OE-core] [PATCH 0/2] License class fixes

2014-12-22 Thread Aníbal Limón
-devsrc: Ensure we have a dependency on the actual source (2014-12-21 13:52:17 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib alimon/license_fixes http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=alimon/license_fixes Aníbal Limón (2

[OE-core] [PATCH 1/2] license_class: fix license.manifest shows LICENSE field differently to recipe

2014-12-22 Thread Aníbal Limón
Drop removal of [|&()*] operators in pkged_lic because this removal is only needed to validate if license is collected. [YOCTO #6757] Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/meta/cla

[OE-core] [PATCH 2/2] license: Validate if LICENSE is well defined.

2014-12-22 Thread Aníbal Limón
Add check_license_format function that shows warning if LICENSE don't have valid operators and also if have space separated entries without operator, add check_license_format validation into base class. [YOCTO #6758] Signed-off-by: Aníbal Limón --- meta/classes/base.bbclass| 1 +

Re: [OE-core] [PATCH] dpkg: Upgrade to 1.17.21

2014-12-23 Thread Aníbal Limón
Any update? alimon On 24/11/14 15:16, Aníbal Limón wrote: Remove dpkg-1.17.4-CVE-2014-0471, dpkg-1.17.4-CVE-2014-0471-CVE-2014-3127 and ignore_extra_fields patches that are already in upstream. Rebase no-vla-warning patch. Signed-off-by: Aníbal Limón --- meta/recipes-devtools/dpkg

[OE-core] [PATCH 0/5] Package upgrades

2014-12-29 Thread Aníbal Limón
-contrib/log/?h=alimon/package_upgrades Aníbal Limón (5): xrandr: Upgrade to 1.4.3 acpid: Upgrade to 2.0.23 lsof: Upgrade to 4.88 mc: Upgrade to 4.8.13 sqlite3: Upgrade to 3.8.7.4 meta/recipes-bsp/acpid/{acpid_2.0.22.bb => acpid_2.0.23.bb} | 4 ++-- meta/recipes-extended/l

[OE-core] [PATCH 2/5] acpid: Upgrade to 2.0.23

2014-12-29 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/recipes-bsp/acpid/{acpid_2.0.22.bb => acpid_2.0.23.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-bsp/acpid/{acpid_2.0.22.bb => acpid_2.0.23.bb} (55%) diff --git a/meta/recipes-bsp/acpid/acpid_2.0.22.bb b/meta/recip

[OE-core] [PATCH 1/5] xrandr: Upgrade to 1.4.3

2014-12-29 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/recipes-graphics/xorg-app/{xrandr_1.4.2.bb => xrandr_1.4.3.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-app/{xrandr_1.4.2.bb => xrandr_1.4.3.bb} (72%) diff --git a/meta/recipes-graphics/xo

[OE-core] [PATCH 3/5] lsof: Upgrade to 4.88

2014-12-29 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/recipes-extended/lsof/{lsof_4.87.bb => lsof_4.88.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/lsof/{lsof_4.87.bb => lsof_4.88.bb} (91%) diff --git a/meta/recipes-extended/lsof/lsof_4.87.bb b/meta/r

[OE-core] [PATCH 4/5] mc: Upgrade to 4.8.13

2014-12-29 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/recipes-extended/mc/{mc_4.8.12.bb => mc_4.8.13.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/mc/{mc_4.8.12.bb => mc_4.8.13.bb} (93%) diff --git a/meta/recipes-extended/mc/mc_4.8.12.bb b/meta/recipes-exten

[OE-core] [PATCH 5/5] sqlite3: Upgrade to 3.8.7.4

2014-12-29 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- .../recipes-support/sqlite/{sqlite3_3.8.6.0.bb => sqlite3_3.8.7.4.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/sqlite/{sqlite3_3.8.6.0.bb => sqlite3_3.8.7.4.bb} (80%) diff --git a/meta/recipes-support/

Re: [OE-core] [PATCH 3/3] dpkg: fix host contamination

2015-01-15 Thread Aníbal Limón
Hi Dan, Can you explain in the commit message what is this change needed? On 14/01/15 21:51, Dan McGregor wrote: +EXTRA_OECONF_append_class-target = " TAR=tar" Kind regards alimon -- ___ Openembedded-core mailing list Openembedded-core@lists.op

Re: [OE-core] [PATCH 1/1] package_manager.py: fix rootfs failure with multilib enabled

2015-01-29 Thread Aníbal Limón
Hi Chen, I tested the patch and is ok can contain (when merge), Signed-off-by: Aníbal Limón Also the same issue is presented in dizzy and the patch needs to be backported. Best regards, alimon On 28/01/15 20:22, Chen Qi wrote: With the current code, if we use debian package backend

[OE-core] [PATCH][dizzy] package_manager.py: fix rootfs failure with multilib enabled

2015-02-03 Thread Aníbal Limón
: d140d556ae30b6dbd0ffce8882c3e22b17050820) Signed-off-by: Chen Qi Signed-off-by: Ross Burton Signed-off-by: Richard Purdie Signed-off-by: Aníbal Limón --- meta/lib/oe/package_manager.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe

[OE-core] [PATCH] files/toolchain-shar-template.sh: fix replace target_sdk_dir twice in environment setup file

2015-02-04 Thread Aníbal Limón
filter environment-setup file in second replacement. [YOCTO #7032] Signed-off-by: Aníbal Limón --- meta/files/toolchain-shar-template.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/files/toolchain-shar-template.sh b/meta/files/toolchain-shar-template.sh index 0d679a6..4a7fbd5 100644

[OE-core] [dizzy][PATCH] files/toolchain-shar-template.sh: fix replace target_sdk_dir twice in environment setup file

2015-02-09 Thread Aníbal Limón
filter environment-setup file in second replacement. [YOCTO #7032] (From OE-Core rev: 02ecaa69abe97fe2f01cd609e0e59933c0f9ddbf) Signed-off-by: Aníbal Limón Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/files/toolchain-shar-template.sh | 1 + 1 file changed, 1 insertion

[OE-core] [PATCH 1/1] xserver-xorg: Update to 1.16.3

2015-02-10 Thread Aníbal Limón
Add packageconfig for systemd-logind instead of hard disable in EXTRA_OECONF this allows users to use packageconfig. Update checksums. Signed-off-by: Aníbal Limón --- meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | 2 +- .../xorg-xserver/{xserver-xorg_1.16.2.bb

Re: [OE-core] [PATCH 1/1] xserver-xorg: Update to 1.16.3

2015-02-10 Thread Aníbal Limón
2015 at 15:45, Aníbal Limón wrote: +PACKAGECONFIG[systemd-logind] = "--enable-systemd-logind=yes,--enable-systemd-logind=no,dbus,dbus-lib" This adds an explicit runtime dependency on dbus-lib if logind is enabled, which probably isn't what you want as the xserver will add

Re: [OE-core] [PATCH 1/1] xserver-xorg: Update to 1.16.3

2015-02-10 Thread Aníbal Limón
On 10/02/15 09:58, Burton, Ross wrote: On 10 February 2015 at 15:57, Aníbal Limón wrote: When you enable systemd-logind xserver automatically links to dbus causing a QA issue that is the reason of add this dependency. systemd uses dbus for all the communications with applications. That

[OE-core] [PATCHv2] xserver-xorg: Update to 1.16.3

2015-02-10 Thread Aníbal Limón
Add packageconfig for systemd-logind instead of hard disable in EXTRA_OECONF this allows users to use packageconfig also add dependency of dbus because systemd-logind require it for communicate with systemd. Update checksums. Signed-off-by: Aníbal Limón --- meta/recipes-graphics/xorg-xserver

[OE-core] [PATCH 1/2] xserver-xorg: Update to 1.16.3

2015-02-10 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- .../xorg-xserver/{xserver-xorg_1.16.2.bb => xserver-xorg_1.16.3.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-xserver/{xserver-xorg_1.16.2.bb => xserver-xorg_1.16.3.bb} (88%) diff --git a/meta/recipes-gr

[OE-core] [PATCH 0/2] xserver-xorg update and improvments

2015-02-10 Thread Aníbal Limón
-contrib/log/?h=alimon/xserver_xorg Aníbal Limón (2): xserver-xorg: Update to 1.16.3 xserver-xorg: Improvments in systemd-logind disable meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | 2 +- .../xorg-xserver/{xserver-xorg_1.16.2.bb => xserver-xorg_1.16.3.bb}

[OE-core] [PATCH 2/2] xserver-xorg: Improvments in systemd-logind disable

2015-02-10 Thread Aníbal Limón
Add packageconfig for systemd-logind instead of hard disable in EXTRA_OECONF this allows users to use packageconfig also add dependency of dbus because systemd-logind require it for communicate with systemd. Signed-off-by: Aníbal Limón --- meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | 2

Re: [OE-core] [PATCH 0/2] xserver-xorg update and improvments

2015-02-13 Thread Aníbal Limón
ping. On 10/02/15 12:32, Aníbal Limón wrote: The following changes since commit 870323cac1e40e8f95ea7bd6f425a85dcfbab612: linux-yocto/3.14: fix qemumips build error (2015-02-08 08:00:30 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib alimon

[OE-core] [PATCH] meta/classes/meson.bbclass: Add inherit setuptools3

2019-12-03 Thread Aníbal Limón
.6.0-r0/build/meson-logs/meson-log.txt | WARNING: exit code 1 from a shell command. ... Signed-off-by: Aníbal Limón --- meta/classes/meson.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass index efa6234078..90868963b7

[OE-core] [PATCHv2] meta/recipes-graphics/waffle: Add inherit setuptools

2019-12-04 Thread Aníbal Limón
.6.0-r0/build/meson-logs/meson-log.txt | WARNING: exit code 1 from a shell command. ... Signed-off-by: Aníbal Limón --- meta/recipes-graphics/waffle/waffle_1.6.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/waffle/waffle_1.6.0.bb b/meta/recipes-gr

[OE-core] [PATCH] meta/classes/menson.bbclass: Add python3 dependency

2020-01-08 Thread Aníbal Limón
: exit code 1 from a shell command. ... [1] http://git.openembedded.org/openembedded-core/commit/?id=02714c105426b0d687620913c1a7401b386428b6 Signed-off-by: Aníbal Limón --- meta/classes/meson.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/meson.bbclass b

[OE-core] [PATCH 1/3] runqemu: Allow to store more than one lock for network interfaces

2019-06-27 Thread Aníbal Limón
In order to support multiple tap devices in the same qemu virtual machine. Signed-off-by: Aníbal Limón --- scripts/runqemu | 48 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 4079f2b17d

[OE-core] [PATCH 3/3] runqemu: Add QB_KERNEL_NO_NETWORK_CONFIG variable

2019-06-27 Thread Aníbal Limón
To let user choice if wants to have network configured via Kernel cmdline. Signed-off-by: Aníbal Limón --- meta/classes/qemuboot.bbclass | 3 +++ scripts/runqemu | 10 ++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/meta/classes/qemuboot.bbclass b/meta

[OE-core] [PATCH 2/3] runqemu: Add support for multiple tap devices

2019-06-27 Thread Aníbal Limón
fname=@TAP@,script=no,downscript=no" QB_NETWORK_DEVICE = "-device virtio-net-pci,netdev=net0,mac=@MAC@ \ -device virtio-net-pci,netdev=net1,mac=@MAC@" Signed-off-by: Aníbal Limón --- scripts/runqemu | 134 +++- 1 file ch

[OE-core] [PATCHv2 1/3] runqemu: Allow to store more than one lock for network interfaces

2019-07-01 Thread Aníbal Limón
In order to support multiple tap devices in the same qemu virtual machine. Signed-off-by: Aníbal Limón --- scripts/runqemu | 48 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 4079f2b17d

[OE-core] [PATCHv2 2/3] runqemu: Add support for multiple tap devices

2019-07-01 Thread Aníbal Limón
fname=@TAP@,script=no,downscript=no" QB_NETWORK_DEVICE = "-device virtio-net-pci,netdev=net0,mac=@MAC@ \ -device virtio-net-pci,netdev=net1,mac=@MAC@" Signed-off-by: Aníbal Limón --- scripts/runqemu | 146 +++- 1 file ch

[OE-core] [PATCHv2 3/3] runqemu: Add QB_KERNEL_NO_NETWORK_CONFIG variable

2019-07-01 Thread Aníbal Limón
To let user choice if wants to have network configured via Kernel cmdline. Signed-off-by: Aníbal Limón --- meta/classes/qemuboot.bbclass | 3 +++ scripts/runqemu | 10 ++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/meta/classes/qemuboot.bbclass b/meta

[OE-core] [PATCHv3 1/3] runqemu: Allow to store more than one lock for network interfaces

2019-07-01 Thread Aníbal Limón
In order to support multiple tap devices in the same qemu virtual machine. Signed-off-by: Aníbal Limón --- scripts/runqemu | 50 + 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 4079f2b17d

[OE-core] [PATCHv3 2/3] runqemu: Add support for multiple tap devices

2019-07-01 Thread Aníbal Limón
fname=@TAP@,script=no,downscript=no" QB_NETWORK_DEVICE = "-device virtio-net-pci,netdev=net0,mac=@MAC@ \ -device virtio-net-pci,netdev=net1,mac=@MAC@" Signed-off-by: Aníbal Limón --- scripts/runqemu | 134 +++- 1 file ch

[OE-core] [PATCHv3 3/3] runqemu: Add QB_KERNEL_NO_NETWORK_CONFIG variable

2019-07-01 Thread Aníbal Limón
To let user choice if wants to have network configured via Kernel cmdline. Signed-off-by: Aníbal Limón --- meta/classes/qemuboot.bbclass | 3 +++ scripts/runqemu | 10 ++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/meta/classes/qemuboot.bbclass b/meta

[OE-core] [PATCHv4 2/3] runqemu: Add support for multiple tap devices

2019-07-03 Thread Aníbal Limón
fname=@TAP@,script=no,downscript=no" QB_NETWORK_DEVICE = "-device virtio-net-pci,netdev=net0,mac=@MAC@ \ -device virtio-net-pci,netdev=net1,mac=@MAC@" Signed-off-by: Aníbal Limón --- scripts/runqemu | 141 1 file ch

[OE-core] [PATCHv4 3/3] runqemu: Add QB_KERNEL_NO_NETWORK_CONFIG variable

2019-07-03 Thread Aníbal Limón
To let user choice if wants to have network configured via Kernel cmdline. Signed-off-by: Aníbal Limón --- meta/classes/qemuboot.bbclass | 3 +++ scripts/runqemu | 24 +--- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/meta/classes

[OE-core] [PATCHv4 1/3] runqemu: Allow to store more than one lock for network interfaces

2019-07-03 Thread Aníbal Limón
In order to support multiple tap devices in the same qemu virtual machine. Signed-off-by: Aníbal Limón --- scripts/runqemu | 50 + 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 4079f2b17d

[OE-core] [PATCH] meta/conf/bitbake.conf: Add BB_SIGNATURE_LOCAL_DIRS_EXCLUDE with VCS

2020-01-09 Thread Aníbal Limón
The new BB_SIGNATURE_LOCAL_DIRS_EXCLUDE allows you to specify a list of directories to exclude when making taskhash [1], set default as common VCS directories. [1] http://git.openembedded.org/bitbake/commit/?id=923aff060d8aba8456979c35b16d300ba7c13ff9 Signed-off-by: Aníbal Limón --- meta/conf

[OE-core] [PATCHv2] meta/recipes-graphics/waffle: Add python3 dependency

2020-01-14 Thread Aníbal Limón
: exit code 1 from a shell command. ... [1] http://git.openembedded.org/openembedded-core/commit/?id=02714c105426b0d687620913c1a7401b386428b6 Signed-off-by: Aníbal Limón --- meta/recipes-graphics/waffle/waffle_1.6.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-gr

Re: [OE-core] [PATCH 0/4] license_class: Added support for LICENSE_PRIORITY in manifest creation

2015-02-24 Thread Aníbal Limón
class in python - FYI here's an as-yet unmerged patchset from Aníbal that may contain some of that already: On Wednesday 29 October 2014 12:34:12 Aníbal Limón wrote: Now you can specify LICENSE_PRIOTIY that enables the distro to set the license preferences for manifest creation. The major

Re: [OE-core] [PATCH 0/4] license_class: Added support for LICENSE_PRIORITY in manifest creation

2015-02-27 Thread Aníbal Limón
HI Richard, I can do the rebase this change affects documentation that needs to describe LICENSE_PRIORITY feature. Kind regards, alimon On 26/02/15 11:50, Richard Purdie wrote: On Thu, 2015-02-26 at 16:34 +, Flanagan, Elizabeth wrote: Actually, this contains almost exactly what I wa

[OE-core] [PATCH 0/5] license: Add support for handle INCOMPATIBLE_LICENSE

2015-03-14 Thread Aníbal Limón
ebase http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=alimon/license-rebase Aníbal Limón (5): license_class: Reimplemented manifest creation in python license_class: Generalize license_ok function license: Add support for handle INCOMPATIBLE_LICENSE in manifest cre

[OE-core] [PATCH 1/5] license_class: Reimplemented manifest creation in python

2015-03-14 Thread Aníbal Limón
Reimplemented license_manifest_create from shell to python for INCOMPATIBLE_LICENSE handle using oe.license module. Optimizations are made to avoid license copy now uses a hardlink and symbolic link this helps to save space during build. Signed-off-by: Aníbal Limón --- meta/classes

[OE-core] [PATCH 2/5] license_class: Generalize license_ok function

2015-03-14 Thread Aníbal Limón
Add dont_want_licenses as parameter to license_ok function and move it to oe.license module in order to use in other modules. Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 21 - meta/lib/oe/license.py | 14 ++ 2 files changed, 18 insertions

[OE-core] [PATCH 3/5] license: Add support for handle INCOMPATIBLE_LICENSE in manifest creation

2015-03-14 Thread Aníbal Limón
x27;s to target image. [YOCTO #6765] Signed-off-by: Aníbal Limón --- meta/classes/license.bbclass | 29 -- meta/lib/oe/license.py | 70 2 files changed, 96 insertions(+), 3 deletions(-) diff --git a/meta/classes/license.bbclass

[OE-core] [PATCH 4/5] packagegroups: Add LIC_FILES_CHKSUM to avoid warnings in manifest creation

2015-03-14 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/recipes-core/packagegroups/packagegroup-base.bb | 1 + meta/recipes-core/packagegroups/packagegroup-core-boot.bb| 1 + meta/recipes-core/packagegroups/packagegroup-core-buildessential.bb | 1 + meta/recipes-core

[OE-core] [PATCH 5/5] glibc/glibc-collateral.inc: Add LIC_FILES_CHKSUM to avoid warnings in manifest creation

2015-03-14 Thread Aníbal Limón
Add licenses point to COMMON_LICENSE_DIR because glibc-collateral.inc is a recipe that don't provide tarball/repo with LICENSE files. Signed-off-by: Aníbal Limón --- meta/recipes-core/glibc/glibc-collateral.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-core/glibc/

Re: [OE-core] [PATCH 0/5] license: Add support for handle INCOMPATIBLE_LICENSE

2015-03-14 Thread Aníbal Limón
Sorry i forget to put test result url. Cheers, alimon On 14/03/15 04:45, Aníbal Limón wrote: The next changes was made to implement INCOMPATIBLE_LICENSE handling in manifest creation this implies to rewrite license_manifest_creation from shell to python. Tests was made to guarantee

[OE-core] [PATCH 0/3] fixes for x32 ABI build

2015-03-15 Thread Aníbal Limón
:24 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib alimon/x32_time_t_bugs http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=alimon/x32_time_t_bugs Aníbal Limón (3): mdadm: Fix build in x32 ABI systemtap: Fix build in x32 ABI puzzles: Fix

[OE-core] [PATCH 2/3] systemtap: Fix build in x32 ABI

2015-03-15 Thread Aníbal Limón
Add a patch for fix printing of time_t value that is long long int in x32 ABI instead of long int. [YOCTO #7423] Signed-off-by: Aníbal Limón --- .../systemtap/systemtap/x32_abi_time.patch | 32 ++ meta/recipes-kernel/systemtap/systemtap_git.inc| 1 + 2 files

[OE-core] [PATCH 1/3] mdadm: Fix build in x32 ABI

2015-03-15 Thread Aníbal Limón
Add a patch for fix build in x32 ABI, the fail is cause by time_t printf because time_t is long int in x64 and long long int in x32. [YOCTO #7422] Signed-off-by: Aníbal Limón --- .../mdadm/files/mdadm-3.3.2_x32_abi_time_t.patch | 24 ++ meta/recipes-extended/mdadm

[OE-core] [PATCH 3/3] puzzles: Fix build in x32 ABI

2015-03-15 Thread Aníbal Limón
Add patch for make castings to time_t values that are long long int in x32 ABI. [YOCTO #7447] Signed-off-by: Aníbal Limón --- .../puzzles/files/puzzles_x32_abi_time.patch | 28 ++ meta/recipes-sato/puzzles/puzzles_r10116.bb| 1 + 2 files changed, 29

[OE-core] [PATCHv2 2/3] systemtap: Fix build in x32 ABI

2015-03-17 Thread Aníbal Limón
Add a patch for fix printing of time_t value that is long long int in x32 ABI instead of long int. [YOCTO #7423] Signed-off-by: Aníbal Limón --- .../systemtap/systemtap/x32_abi_time.patch | 34 ++ meta/recipes-kernel/systemtap/systemtap_git.inc| 1 + 2 files

[OE-core] [PATCHv2 1/3] mdadm: Fix build in x32 ABI

2015-03-17 Thread Aníbal Limón
Add a patch for fix build in x32 ABI, the fail is cause by time_t printf because time_t is long int in x64 and long long int in x32. [YOCTO #7422] Signed-off-by: Aníbal Limón --- .../mdadm/files/mdadm-3.3.2_x32_abi_time_t.patch | 26 ++ meta/recipes-extended/mdadm

[OE-core] [PATCHv2 0/3] Recipes fix for build in x32 ABI

2015-03-17 Thread Aníbal Limón
(2015-03-16 17:44:13 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib alimon/x32_time_t_bugs http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=alimon/x32_time_t_bugs Aníbal Limón (3): mdadm: Fix build in x32 ABI systemtap: Fix build in x32 ABI

[OE-core] [PATCHv2 3/3] puzzles: Fix build in x32 ABI

2015-03-17 Thread Aníbal Limón
Add patch for make castings to time_t values that are long long int in x32 ABI. [YOCTO #7447] Signed-off-by: Aníbal Limón --- .../puzzles/files/puzzles_x32_abi_time.patch | 30 ++ meta/recipes-sato/puzzles/puzzles_r10116.bb| 1 + 2 files changed, 31

  1   2   3   4   5   6   7   8   9   10   >