Re: [OE-core] [RFC][PATCH] wic: use part_name when defined

2023-04-06 Thread Diego
; > part.part_name was defined. > > Fix the code to use part.part_name whenever available, as it makes sense > > to have a GPT partition label which is different from the contained > > filesystem label. > > > > Signed-off-by: Dit Kozmaj > > Signed-off-by: Dieg

[OE-core] [langdale][PATCH] kernel.bbclass: Include randstruct seed assets in STAGING_KERNEL_BUILDDIR

2022-11-21 Thread Diego Sueiro
rev: b36303158b2e0273ff415bdedefb379f680b30fc) Signed-off-by: Diego Sueiro Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- meta/classes-recipe/kernel.bbclass | 16 1 file changed, 16 insertions(+) diff --git a/meta/classes-recipe/kernel.bbclass b/meta

[OE-core] [master,langdale][PATCH] kernel.bbclass: Include randstruct seed assets in STAGING_KERNEL_BUILDDIR

2022-11-03 Thread Diego Sueiro
-by: Diego Sueiro --- meta/classes-recipe/kernel.bbclass | 16 1 file changed, 16 insertions(+) diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass index 7bb3449223..559718cc70 100644 --- a/meta/classes-recipe/kernel.bbclass +++ b/meta/classes-recipe

[OE-core] [PATCH] grub-efi: Add option to include all available modules

2022-03-11 Thread Diego Sueiro
Include all available modules If 'all' is present in GRUB_BUILDIN variable. To achieve this we need to search for all .mod files in ${B}/grub-core/ and pass them to grub-mkimage command. Also, add the verbose option to grub-mkimage. Signed-off-by: Diego Sueiro --- meta/recipes-bsp/grub/grub

Re: [OE-core] [PATCH] package_manager/rpm: conditional remove package manager database

2022-01-19 Thread Diego Santa Cruz via lists.openembedded.org
f runtime data" for d in /var/lib/dnf /var/cache/dnf; do [ -d ${IMAGE_ROOTFS}$d ] || continue dirsize=`du -ks ${IMAGE_ROOTFS}/$d | awk '{ print $1 }'` bbnote "Removing $d with $dirsize KiB" rm -rf ${IMAGE_ROOTFS}$d/* done } I hope this helps -- Di

[OE-core] [PATCH] sstate: import errno module in sstate_package function

2021-08-10 Thread Diego Sueiro
e read-only file systems gracefully *** 0708:if e.errno != errno.EROFS: 0709:raise e 0710: 0711:return 0712: Exception: NameError: name 'errno' is not defined Signed-off-by: Diego Sueiro --- meta/classes/sstate.bbclass | 1 + 1 file chan

Re: [OE-core] SDK question: does "-c populate_sdk" build SDK based on entire image?

2021-05-12 Thread Diego Santa Cruz via lists.openembedded.org
SDK as well. > > i checked the recipe for fubar and, to my chagrin, it contained the > snippet: > > do_install_append() { > rm -rf ${D}/usr/bin/fubar > } > > well, that explained it, so as a first test, i'm just going to dump > that snippet from the recipe, which

Re: [OE-core] Unihash warning building kernels in Yocto 3.1.7

2021-05-06 Thread Diego Santa Cruz via lists.openembedded.org
> -Original Message- > From: Steve Sakoman > Sent: 06 May 2021 16:14 > To: Diego Santa Cruz > Cc: Steve Sakoman ; openembedded- > c...@lists.openembedded.org; Mark Hatle > > Subject: Re: [OE-core] Unihash warning building kernels in Yocto 3.1.7 > > On Tue,

Re: [OE-core] Unihash warning building kernels in Yocto 3.1.7

2021-05-05 Thread Diego Santa Cruz via lists.openembedded.org
Hi Steve, Mark, Any news on this one? I have been doing our own builds with the equivalent of that patch for our BSPs with a linux-intel derived kernel recipe plus another internal kernel recipe (both using kernel.bbclass) and I have not found any issues with it. Best, Diego -- Diego Santa

[OE-core] Unihash warning building kernels in Yocto 3.1.7

2021-04-30 Thread Diego Santa Cruz via lists.openembedded.org
lags a production build as bad if there is a warning, so this is kind of annoying. Best, Diego -- Diego Santa Cruz, PhD Technology Architect spinetix.com -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#151152): https://lists.openembedded.org/g/op

[OE-core] [PATCH] oeqa/selftest/bblayers: Add test case for bitbake-layers layerindex-show-depends

2021-04-21 Thread Diego Sueiro
Signed-off-by: Diego Sueiro --- meta/lib/oeqa/selftest/cases/bblayers.py | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/lib/oeqa/selftest/cases/bblayers.py b/meta/lib/oeqa/selftest/cases/bblayers.py index f131d9856c..7d74833f61 100644 --- a/meta/lib/oeqa/selftest/cases

[OE-core] [dunfell][PATCH] iputils: fix various arping regressions

2021-03-18 Thread Diego Santa Cruz via lists.openembedded.org
arping in iputils s20190709 has several problems, this backports the fixes from s20200821. - -D, duplicate address detection, always returns failure - -w -f does not behave correctly - -w option hangs arping - -U option returns failure Signed-off-by: Diego Santa Cruz --- ...rtially-fix-sent

[OE-core] [PATCH] sstate-diff-machines.sh: support rpm, deb and tar package types in analysis

2021-03-09 Thread Diego Santa Cruz via lists.openembedded.org
packaging was not enabled. Signed-off-by: Diego Santa Cruz --- scripts/sstate-diff-machines.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/sstate-diff-machines.sh b/scripts/sstate-diff-machines.sh index 1d721eb87d..8b64e11be1 100755 --- a/scripts/sstate-diff

[OE-core] [PATCH] rpm: split build and extra functionality into separate packages

2021-03-03 Thread Diego Santa Cruz via lists.openembedded.org
, but are not necessarily wanted in target images when rpm is included. Signed-off-by: Diego Santa Cruz --- meta/recipes-devtools/rpm/rpm_4.16.1.2.bb | 39 --- 1 file changed, 35 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/rpm/rpm_4.16.1.2.bb b/meta/recipes-devtools

[OE-core] [PATCH] createrepo-c: set path to magic database for native and nativesdk

2021-02-26 Thread Diego Santa Cruz via lists.openembedded.org
files. Signed-off-by: Diego Santa Cruz --- .../createrepo-c/createrepo-c_0.17.0.bb| 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.0.bb b/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.0.bb

[OE-core] [PATCH 1/2] packagegroup-base: use amixer instead of alsamixer

2021-02-25 Thread Diego Santa Cruz via lists.openembedded.org
Including alsamixer, which is an ncurses based interactive program, does not seem to make sense as a base package in embedded systems, replace it by the command line mixer utility amixer instead; it is scriptable and has no ncurses dependencies. Signed-off-by: Diego Santa Cruz --- meta/recipes

[OE-core] [PATCH 2/2] packagegroup-base: do not force hdparm and e2fsprogs

2021-02-25 Thread Diego Santa Cruz via lists.openembedded.org
The hdparm and (base) e2fsprogs are not always useful in all machines having ext2 in MACHINE_FEATURES, so do not force them to b installed, make them recommendations instead. Signed-off-by: Diego Santa Cruz --- meta/recipes-core/packagegroups/packagegroup-base.bb | 6 -- 1 file changed, 4

[OE-core] [PATCH] sysklogd: do not open any network sockets by default

2021-02-25 Thread Diego Santa Cruz via lists.openembedded.org
overridden in /etc/default/syslogd. Signed-off-by: Diego Santa Cruz --- meta/recipes-extended/sysklogd/files/sysklogd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-extended/sysklogd/files/sysklogd b/meta/recipes-extended/sysklogd/files/sysklogd index 2a356a637a..050772b

Re: [OE-core] [PATCH] [RFC] openssl: Enable cryptodev-linux by default

2021-01-29 Thread Diego Santa Cruz via lists.openembedded.org
script ptest > > MULTILIB_SCRIPTS = "${PN}-bin:${bindir}/c_rehash" > > > > -PACKAGECONFIG ?= "" > > +PACKAGECONFIG ?= "cryptodev-linux" > > PACKAGECONFIG_class-native = "" > > PACKAGECONFIG_class-nativesdk = "&quo

[OE-core] [PATCH] staging: Introduce /sysroot-only to SYSROOT_DIRS

2021-01-15 Thread Diego Sueiro
recipes to share non-target filesystem artifacts without needing to use the DEPLOY_DIR and keep it tidy. Signed-off-by: Diego Sueiro --- meta/classes/package.bbclass | 6 ++ meta/classes/staging.bbclass | 1 + 2 files changed, 7 insertions(+) diff --git a/meta/classes/package.bbclass b/meta

Re: [OE-core] [PATCH 1/2] classes: Introduce intermediate-deploy.bbclass

2021-01-14 Thread Diego Sueiro
>-Original Message- >From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Richard Purdie via >lists.openembedded.org >Sent: 14 January 2021 12:04 >To: Diego Sueiro ; openembedded- >c...@lists.openembedded.org >Subject: Re: [OE-c

Re: [OE-core] [PATCH 1/2] classes: Introduce intermediate-deploy.bbclass

2021-01-14 Thread Diego Sueiro
>-Original Message- >From: Otavio Salvador >Sent: 14 January 2021 11:57 >To: Diego Sueiro >Cc: Patches and discussions about the oe-core layer c...@lists.openembedded.org>; Purdie, Richard > >Subject: Re: [OE-core] [PATCH 1/2] classes: Introduce intermediate- &

[OE-core] [PATCH 2/2] u-boot: Use intermediate-deploy.bbclass to share artifacts

2021-01-14 Thread Diego Sueiro
By inheriting the intermediate-deploy.bbclass the installed binaries in /boot can be used by dependant recipes for post-processing via DEPENDS and ${RECIPE_SYSROOT}/intermediate-deploy/boot/u-boot.bin instead of task[depends]= "u-boot:do_deploy" and ${DEPLOY_DIR_IMAGE}/u-boot.bin. Change-Id:

[OE-core] [PATCH 1/2] classes: Introduce intermediate-deploy.bbclass

2021-01-14 Thread Diego Sueiro
The intermediate-deploy class is to be inherited by recipes that install intermediate artifacts which are not present in the filesystem to be further processed by other recipes. The INTERMEDIATE_DEPLOY_DIRS variable is a space separated list of dirnames from ${D} which include the intermediate

Re: [OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to SYSROOT_DIRS

2021-01-13 Thread Diego Sueiro
>-Original Message- >From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Richard Purdie via >lists.openembedded.org >Sent: 04 January 2021 13:41 >To: Diego Sueiro ; openembedded- >c...@lists.openembedded.org >Cc: nd >Subject:

Re: [OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to SYSROOT_DIRS

2021-01-04 Thread Diego Sueiro
>-Original Message- >From: Richard Purdie >Sent: 04 January 2021 13:23 >To: Diego Sueiro ; openembedded- >c...@lists.openembedded.org >Cc: nd >Subject: Re: [OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to >SYSROOT_DIRS > >On Mon, 2021-01-04 at 1

Re: [OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to SYSROOT_DIRS

2021-01-04 Thread Diego Sueiro
>-Original Message- >From: Richard Purdie >Sent: 04 January 2021 11:32 >To: Diego Sueiro ; openembedded- >c...@lists.openembedded.org >Cc: nd >Subject: Re: [OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to >SYSROOT_DIRS > >On Mon, 2021-01-04 at 1

Re: [OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to SYSROOT_DIRS

2021-01-04 Thread Diego Sueiro
>-Original Message- >From: Richard Purdie >Sent: 04 January 2021 10:28 >To: Diego Sueiro ; openembedded- >c...@lists.openembedded.org >Cc: nd >Subject: Re: [OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to >SYSROOT_DIRS > >On Mon, 2021-01-04 at 0

[OE-core] [PATCH v2] u-boot: add /boot and ${sysconfdir} to SYSROOT_DIRS

2021-01-04 Thread Diego Sueiro
Since do_install is shipping files to /boot and ${sysconfdir}, we can include these dirs to SYSROOT_DIRS and allow recipes which depend on u-boot to use its installed artifacts from RECIPE_SYSROOT instead of DEPLOY_DIR_IMAGE. Signed-off-by: Diego Sueiro --- meta/recipes-bsp/u-boot/u-boot.inc

Re: [OE-core] [PATCH] u-boot: set SYSROOT_DIRS to /boot and ${sysconfdir}

2021-01-04 Thread Diego Sueiro
Hi, >-Original Message- >From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Max Krummenacher via >lists.openembedded.org >Sent: 18 December 2020 09:52 >To: Diego Sueiro ; openembedded- >c...@lists.openembedded.org >Cc: nd

[OE-core] Changed kernel dependencies cause on target kernel update woes

2020-12-22 Thread Diego Santa Cruz via lists.openembedded.org
E}-base ?= "${KERNEL_PACKAGE_NAME}-image" That solves the issue for me and it kind of makes sense that the "kernel", "kernel-${KERNEL_VERSION_PKG_NAME}" and "kernel-image-${KERNEL_VERSION_PKG_NAME}" packages always be at the same exact version,

[OE-core] [PATCH] u-boot: set SYSROOT_DIRS to /boot and ${sysconfdir}

2020-12-17 Thread Diego Sueiro
Since do_install is shipping files to /boot and ${sysconfdir}, we can set SYSROOT_DIRS to these dirs and allow recipes which depend on u-boot to use its installed artifacts from RECIPE_SYSROOT instead of DEPLOY_DIR_IMAGE. Signed-off-by: Diego Sueiro --- meta/recipes-bsp/u-boot/u-boot.inc | 2

[OE-core] [PATCH] modutils-initscripts: Use depmod -a when modules.dep is empty

2020-12-08 Thread Diego Sueiro
-off-by: Diego Sueiro --- meta/recipes-kernel/modutils-initscripts/files/modutils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/modutils-initscripts/files/modutils.sh b/meta/recipes-kernel/modutils-initscripts/files/modutils.sh index 3274c25a69

[OE-core] [PATCH v2] wic: Introduce empty plugin to create unformatted empty partitions

2020-12-08 Thread Diego Sueiro
dds a selftest for this plugin where the 'Fstype' column from 'wic ls' should be empty for the second partition as listed in test_empty_plugin.wks. Signed-off-by: Diego Sueiro --- meta-selftest/wic/test_empty_plugin.wks | 4 meta/lib/oeqa/selftest/cases/wic.py | 20

Re: [OE-core] [PATCH] wic: Introduce empty plugin to create unformatted empty partitions

2020-12-08 Thread Diego Sueiro
>-Original Message- >From: Richard Purdie >Sent: 03 December 2020 22:58 >To: Diego Sueiro ; openembedded- >c...@lists.openembedded.org >Cc: nd >Subject: Re: [OE-core] [PATCH] wic: Introduce empty plugin to create >unformatted empty partitions > >On Thu, 20

[OE-core] [PATCH] wic: Introduce empty plugin to create unformatted empty partitions

2020-12-03 Thread Diego Sueiro
The empty wic plugin is used to create unformatted empty partitions for wic images. To use it you must pass "empty" as argument for the "--source" parameter in the wks file. For example: part foo --source empty --ondisk sda --size="1024" --align 1024 Signed-off-

[OE-core] [PATCH 2/2] initscripts: Change execution order between checkroot and modutils

2020-12-03 Thread Diego Sueiro
it and the '/' needs to be writable. Signed-off-by: Diego Sueiro --- meta/recipes-core/initscripts/initscripts_1.0.bb| 2 +- .../recipes-kernel/modutils-initscripts/modutils-initscripts.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/initscripts

[OE-core] [PATCH 1/2] modutils-initscripts: Fix modules.dep creation when USE_DEPMOD="0"

2020-12-03 Thread Diego Sueiro
les-load.d directories exist. Signed-off-by: Diego Sueiro --- .../recipes-kernel/modutils-initscripts/files/modutils.sh | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/meta/recipes-kernel/modutils-initscripts/files/modutils.sh b/meta/recipes-kernel/modutils-initscr

[OE-core] [dunfell][PATCH] freetype: fix CVE-2020-15999, backport from 2.10.4

2020-11-11 Thread Diego Santa Cruz via lists.openembedded.org
Signed-off-by: Diego Santa Cruz --- ...-sfnt-Fix-heap-buffer-overflow-59308.patch | 51 +++ .../freetype/freetype_2.10.1.bb | 1 + 2 files changed, 52 insertions(+) create mode 100644 meta/recipes-graphics/freetype/freetype/0001-sfnt-Fix-heap-buffer-overflow

[OE-core] [gatesgarth][PATCH] freetype: fix CVE-2020-15999, backport from 2.10.4

2020-11-11 Thread Diego Santa Cruz via lists.openembedded.org
Signed-off-by: Diego Santa Cruz --- ...-sfnt-Fix-heap-buffer-overflow-59308.patch | 51 +++ .../freetype/freetype_2.10.2.bb | 1 + 2 files changed, 52 insertions(+) create mode 100644 meta/recipes-graphics/freetype/freetype/0001-sfnt-Fix-heap-buffer-overflow

Re: [OE-core] FreeType CVE-2020-15999

2020-11-11 Thread Diego Santa Cruz via lists.openembedded.org
> -Original Message- > From: Ross Burton > Sent: 11 November 2020 11:46 > To: Diego Santa Cruz > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] FreeType CVE-2020-15999 > > On Wed, 11 Nov 2020 at 08:06, Diego Santa Cruz via > list

Re: [OE-core] FreeType CVE-2020-15999

2020-11-11 Thread Diego Santa Cruz via lists.openembedded.org
> -Original Message- > From: mikko.rap...@bmw.de > Sent: 11 November 2020 10:06 > To: Diego Santa Cruz > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] FreeType CVE-2020-15999 > > Hi, > > On Wed, Nov 11, 2020 at 08:06:44

[OE-core] FreeType CVE-2020-15999

2020-11-11 Thread Diego Santa Cruz via lists.openembedded.org
ate freetype to 2.10.4 in both branches or backport the fix for the buffer overrun? Also, how should one report problems in the NVD database? Thanks, Diego -- Diego Santa Cruz, PhD Technology Architect spinetix.com -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Re

[OE-core] [PATCH] license_image.bbclass: Fix symlink to the image license manifest dir creation

2020-09-11 Thread Diego Sueiro
If IMAGE_LINK_NAME is empty don't try to create the symlink. [YOCTO #14042] Signed-off-by: Diego Sueiro --- meta/classes/license_image.bbclass | 18 ++ 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/meta/classes/license_image.bbclass b/meta/classes

Re: [OE-core] [PATCH 6/8] dhcp: remove from core

2020-09-01 Thread Diego Sueiro
>-Original Message- >From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Khem Raj via >lists.openembedded.org >Sent: 01 September 2020 19:11 >To: akuster >Cc: Patches and discussions about the oe-core layer c...@lists.openembedded.org> >Subject: Re:

[OE-core] [PATCH] license_image.bbclass: Create symlink to the image license manifest dir

2020-09-01 Thread Diego Sueiro
In the LICENSE_DIRECTORY each time an image recipe is built a new directory is created to hold the image license manifests. By creating a symlink to the most recent created image license manifest directory, we make things easier for users to collect and pack the data. Signed-off-by: Diego Sueiro

[OE-core] [PATCH] cml1: Add the option to choose the .config root dir

2020-08-06 Thread Diego Sueiro
Introduce the KCONFIG_CONFIG_ROOTDIR variable to allow recipes which the .config file is not under the ${B} to select the root directory location for the config file. Signed-off-by: Diego Sueiro --- meta/classes/cml1.bbclass | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions

[OE-core] [PATCH v2] bmap-tools: update development snapshot revision

2020-05-14 Thread Diego
Update from a previous development snapshot to the latest development snapshot that includes, among other improvements, support for zstd compression format. Signed-off-by: Diego Rondini --- Changes in v2: - clarify in the commit message that we are just updating from a previous snapshot

[OE-core] [PATCH v2] image_types: declare support for wic.zst

2020-05-14 Thread Diego
improvements when decompression speed is the limiting factor (especially with very sparse images). Signed-off-by: Diego Rondini --- Changes in v2: - disable related test, as zstd is not in oe-core (see: http://git.openembedded.org/openembedded-core/commit?id=3646499cb34e91c1d012d057eedfdeff08a4f06c

Re: [OE-core] [PATCH] image_types: declare support for wic.zst

2020-05-14 Thread Diego
Hi Richard, On Thu, May 14, 2020 at 11:59 PM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Thu, 2020-05-14 at 23:53 +0200, Diego Rondini wrote: > > Hi Richard, > > > > On Thu, May 14, 2020 at 11:21 PM Richard Purdie < > richard.pur...@linuxfo

Re: [OE-core] [PATCH] image_types: declare support for wic.zst

2020-05-14 Thread Diego
Hi Richard, On Thu, May 14, 2020 at 11:21 PM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Thu, 2020-05-14 at 15:19 +0200, Diego wrote: > > Declare images in wic.zst format as supported, as bmaptool now supports > > zstd: > > > https://gith

Re: [OE-core] [PATCH] bmap-tools: update to latest git master

2020-05-14 Thread Diego
f75652b5dd6e50adb1d8fe https://github.com/intel/bmap-tools/commits/master Release 3.5: https://github.com/intel/bmap-tools/commit/14b411a65c371e273fe599bee9e52bd9f9b751e1 Commit in oe-core: https://github.com/intel/bmap-tools/commit/db7087b883bf52cbff063ad17a41cc1cbb85104d What do you suggest?

[OE-core] [PATCH] bmap-tools: update to latest git master

2020-05-14 Thread Diego
Update to latest revision of git master to include, among other improvements, support for zstd compression format. Signed-off-by: Diego Rondini --- meta/recipes-support/bmap-tools/bmap-tools_3.5.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/bmap

[OE-core] [PATCH] image_types: declare support for wic.zst

2020-05-14 Thread Diego
improvements when decompression speed is the limiting factor (especially with very sparse images). Signed-off-by: Diego Rondini --- meta/classes/image_types.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass

[OE-core] python3 and util-linux dependency loop

2020-03-24 Thread Diego
enabled depends on python3: https://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-core/util-linux/util-linux.inc#n123 What do you think is the best approach to solve this dependency loop? Thank you, Diego Rondini Sr. Embedded Engineer Kynetics www.kynetics.com

[OE-core] [PATCH] foomatic-filters: remove recipe

2020-01-17 Thread Diego Rondini
/OpenPrinting/cups-filters/blob/release-1-26-2/NEWS#L2563 [2] https://lists.gt.net/gentoo/user/288187#288187 Signed-off-by: Diego Rondini --- .../CVE-2015-8327.patch | 23 -- .../CVE-2015-8560.patch | 23 -- .../foomatic/foomatic-filters_4.0.17.bb

[OE-core] [PATCH] cups: fix crossscripts

2020-01-08 Thread Diego Rondini
Also fix FILES_${PN} to use ${libexecdir}; previously it was working just because "${libexecdir}/*" was part of the default values in bitbake.conf. Signed-off-by: Diego Rondini --- meta/recipes-extended/cups/cups.inc | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/m

Re: [OE-core] [PATCH] bmap-tools: add missing python3-misc dependency

2019-09-26 Thread Diego Rondini
Hi Ross, On Wed, Sep 25, 2019 at 9:40 PM Ross Burton wrote: > On 25/09/2019 15:49, Diego Rondini wrote: > > Add runtime dependency on python3-misc as bmaptool depends on ntpath. > > > > Signed-off-by: Diego Rondini > > --- > > meta/recipes-support/bmap-tools

[OE-core] [PATCH] bmap-tools: add missing python3-misc dependency

2019-09-25 Thread Diego Rondini
Add runtime dependency on python3-misc as bmaptool depends on ntpath. Signed-off-by: Diego Rondini --- meta/recipes-support/bmap-tools/bmap-tools_3.5.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/bmap-tools/bmap-tools_3.5.bb b/meta/recipes-support

[OE-core] [PATCH] initramfs-framework: fix var name

2019-09-19 Thread Diego Rondini
Use appropriate variable name for root of partuuid. Signed-off-by: Diego Rondini --- meta/recipes-core/initrdscripts/initramfs-framework/rootfs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/rootfs b/meta/recipes-core

[OE-core] [PATCH v2] initramfs-framework: support PARTLABEL option

2019-09-19 Thread Diego Rondini
Since commit (kernel >= 4.20): https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f027c34d844013d9d6c902af8fa01a82d6e5073d specifying rootfs by PARTLABEL is supported. This commit adds support to specify root by GPT partition label. Signed-off-by: Diego Rond

[OE-core] [PATCH] initramfs-framework: support PARTLABEL option

2019-09-16 Thread Diego Rondini
Since commit (kernel >= 4.20): https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f027c34d844013d9d6c902af8fa01a82d6e5073d specifying rootfs by PARTLABEL is supported. This commit adds support to specify root by GPT partition label. Signed-off-by: Diego Rond

[OE-core] [PATCH v2] iptables: add systemd helper unit to load/restore rules

2019-09-05 Thread Diego Rondini
on the target using: # iptables-save -f /etc/iptables/iptables.rules Good documentation for writing rules offline is lacking, but the basics are explained here: https://unix.stackexchange.com/q/400163/49405 Signed-off-by: Jack Mitchell Signed-off-by: Diego Rondini --- Changes in v2: fixed missing

[OE-core] [PATCH] iptables: add systemd helper unit to load/restore rules

2019-09-05 Thread Diego Rondini
on the target using: Good documentation for writing rules offline is lacking, but the basics are explained here: https://unix.stackexchange.com/q/400163/49405 Signed-off-by: Jack Mitchell Signed-off-by: Diego Rondini --- Original patch has been posted 3 years ago, but never got approved. I'm

[OE-core] [PATCH] image_types.bbclass: make gzipped images rsyncable

2019-07-26 Thread Diego Rondini
Both gzip and pigz implement the --rsyncable option, allowing small changes to images to save a lot of data when they are transferred using rsync. This patch enables --rsyncable by default. Signed-off-by: Diego Rondini --- meta/classes/image_types.bbclass | 2 +- 1 file changed, 1 insertion

[OE-core] [PATCH] bluez5: fix obex packaging

2019-06-05 Thread Diego Rondini
Ship some obex files in the appropriate obex package. This fixes boot error: [FAILED] Failed to start Bluetooth OBEX service. that was caused by the obex.service being shipped in the main package, rather than the -obex (that includes obexd). Signed-off-by: Diego Rondini --- meta/recipes

Re: [OE-core] Problem with blocked signals in daemons started from rpm postinstall scriptlet

2019-02-10 Thread Diego Santa Cruz via Openembedded-core
> -Original Message- > From: Alexander Kanavin > Sent: Saturday, February 9, 2019 8:24 PM > To: Diego Santa Cruz > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] Problem with blocked signals in daemons started from > rpm postinstall scriptl

[OE-core] Problem with blocked signals in daemons started from rpm postinstall scriptlet

2019-02-09 Thread Diego Santa Cruz via Openembedded-core
? Sincerely, -- Diego Santa Cruz, PhD Technology Architect spinetix.com -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

[OE-core] [PATCH] gtk+3: add PACKAGECONFIG for cups

2019-01-07 Thread Diego Rondini
Signed-off-by: Diego Rondini --- meta/recipes-gnome/gtk+/gtk+3.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-gnome/gtk+/gtk+3.inc b/meta/recipes-gnome/gtk+/gtk+3.inc index 6331a43..519a984 100644 --- a/meta/recipes-gnome/gtk+/gtk+3.inc +++ b/meta/recipes

[OE-core] [PATCH] cups: default to unix pam module

2018-12-28 Thread Diego Rondini
is enabled. Signed-off-by: Diego Rondini --- meta/recipes-extended/cups/cups.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc index c142a4d..5010f08 100644 --- a/meta/recipes-extended/cups/cups.in

Re: [OE-core] [meta-oe][rocko][sumo][PATCH] tbb: check the version of the cross gcc instead of host gcc

2018-08-30 Thread Diego Rondini
Sorry, sent to the wrong mailing list. Please drop. -- Diego Rondini Sr. Embedded Engineer Kynetics www.kynetics.com -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo

[OE-core] [meta-oe][rocko][sumo][PATCH] tbb: check the version of the cross gcc instead of host gcc

2018-08-30 Thread Diego Rondini
From: Gregory Vimont When cross compiling on linux with gcc, the host gcc was used instead of the cross gcc to set compilation flags according to gcc version. Signed-off-by: Gregory Vimont Signed-off-by: Khem Raj --- The reason of the backport is to fix a crash, details here:

Re: [OE-core] [PATCH 4/4] wic: fix restoring of original fstab

2017-06-20 Thread Diego Rondini
ror exceptions: the resulting fstab correctly has only one mount entry. So this seems to fix #11633. Tested-by: Diego Rondini <diego.rond...@kynetics.com> Thanks for taking care of this, Diego -- ___ Openembedded-core mailing list Ope

[OE-core] [PATCH] bitbake.conf: Add python2 to HOSTTOOLS

2017-04-27 Thread Diego Rondini
Add python2 to HOSTTOOLS as, according to https://www.python.org/dev/peps/pep-0394/, the command "python2" should be the one used in scripts that are not yet ported to Python 3. Signed-off-by: Diego Rondini <diego.rond...@kynetics.com> --- meta/conf/bitbake.conf | 2 +- 1

[OE-core] [PATCH v3] xinput-calibrator: use up-to-date git version

2016-11-21 Thread Diego Rondini
directly to obtain the geometry, instead of parsing the output of the xrandr binary (parsing of the output can easily break, for example when the output name is made up of two words instead of one). Signed-off-by: Diego Rondini <diego...@zoho.com> --- .../add-geometry-input-when-calibrating

[OE-core] [PATCH v2] xinput-calibrator: use up-to-date git version

2016-11-15 Thread Diego Rondini
Use up-to-date version from git. While currently there aren't official releases newer than 0.7.5, quite some new features have been added in git, for example the ability to disable the calibration screen timeout. Signed-off-by: Diego Rondini <diego...@zoho.com> --- meta/recipes-graphics/

[OE-core] [PATCH] xinput-calibrator: use up-to-date git version

2016-11-15 Thread Diego Rondini
Use up-to-date version from git. While currently there aren't official releases newer than 0.7.5, quite some new features have been added in git, for example the ability to disable the calibration screen timeout. Signed-off-by: Diego Rondini <diego...@zoho.com> --- meta/recipes-graphics/

[OE-core] [jethro][PATCH] gnupg: fix find-version for beta checking

2016-10-05 Thread Diego Rondini
From: Wenzong Fan find-version always assumes that gnupg is beta if autogen.sh is run out of git-repo. This doesn't work for users whom just take release tarball and re-run autoconf in their local build dir. This fixes runtime issue: $gpg --list-sigs gpg: NOTE:

[OE-core] [fido][PATCH] gnupg: fix find-version for beta checking

2016-10-05 Thread Diego Rondini
From: Wenzong Fan find-version always assumes that gnupg is beta if autogen.sh is run out of git-repo. This doesn't work for users whom just take release tarball and re-run autoconf in their local build dir. This fixes runtime issue: $gpg --list-sigs gpg: NOTE:

[OE-core] [PATCH] base-files: add some safety checks in profile

2016-04-29 Thread Diego Rondini
uff, for example X startup. Signed-off-by: Diego Rondini <diego...@zoho.com> --- meta/recipes-core/base-files/base-files/profile | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/base-files/base-files/profile b/meta/recipes-core/base-files/base-f

Re: [OE-core] [PATCH v2] kernel: Add support for multiple kernel packages

2016-02-03 Thread Diego Sueiro
t; > [files/debug.cfg] > CONFIG_DEBUG_INFO=y > CONFIG_FRAME_POINTER=y > CONFIG_LOCKUP_DETECTOR=y > CONFIG_DEBUG_PREEMPT=y > CONFIG_KGDB=y > CONFIG_KGDB_KDB=y > CONFIG_EARLY_PRINTK=y > Thanks for the info. Nice job, hope that it can be up-streamed since this use case is qu

Re: [OE-core] [PATCH v2] kernel: Add support for multiple kernel packages

2016-02-02 Thread Diego Sueiro
t; activities. > > Thread: > http://thread.gmane.org/gmane.comp.handhelds.openembedded.core/72908 > Could you please give examples how kernel recipes look like? I'm particularly interested in this feature. Regards, -- *dS Diego Sueiro Administrador do Embarcados www.embarcados.com

Re: [OE-core] [meta-qt5] Issue on linking qtwebengine

2015-06-09 Thread Diego Sueiro
Ross, 2015-06-09 10:09 GMT-03:00 Burton, Ross ross.bur...@intel.com: On 9 June 2015 at 13:58, Diego Sueiro diego.sue...@gmail.com wrote: I'm using fido branch and I'm getting the linker killed due to out of memory in a machine with 8GB of RAM. I guess you'll want to pass the same options

[OE-core] [meta-qt5] Issue on linking qtwebengine

2015-06-09 Thread Diego Sueiro
? Is there someone who can reproduce this on fido branch? I'm using raspberrypi2 machine. Regards, -- *dS Diego Sueiro Administrador do Embarcados www.embarcados.com.br http://www.embarcados.com.br/?utm_source=assinatura_diegoutm_medium=e-mailutm_campaign=Assinatura%20Email%20Diego /*long live rock

[OE-core] [PATCH] watchdog: Provide and install initscript

2015-03-18 Thread Diego Rondini
-by: Diego Rondini diego...@zoho.com --- .../watchdog/watchdog/watchdog-conf.patch | 11 .../watchdog/watchdog/watchdog-init.patch | 53 meta/recipes-extended/watchdog/watchdog_5.14.bb| 12 - 3 files changed, 75 insertions(+), 1 deletion

Re: [OE-core] [BUG] Openssh not closing connections on service stop

2014-12-03 Thread Diego
https://bugs.archlinux.org/task/31250 Long story short: it would be nice to gracefully close ssh connections on shutdown before terminating network connections, but it's a minor issue, and probably not worth the effort of fixing. Bests, Diego

[OE-core] [BUG] Openssh not closing connections on service stop

2014-11-27 Thread Diego
sshd: root@pts/0 1894 root 2892 Sgrep ssh Isn't service termination supposed to stop all related connections at the same time? Can anybody else reproduce (or not) this issue? Bests, Diego -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH v2] resolvconf: add fixes for busybox and make it work

2014-11-25 Thread Diego
scripts for ifup/ifdown get installed and that resolvconf is correctly enabled at startup Hi Saul, Works for me both with udhcp and static configuration, you can add: Tested-by: Diego Rondini diego...@zoho.com Will you be able to backport it to dizzy? Bests, Diego

[OE-core] [meta-qt5][PATCH] qtsystems: Change branch from stable to 5.3

2014-11-14 Thread Diego Sueiro
Stable branch was removed on mainline and now 5.3 is used. Signed-off-by: Diego Sueiro diego.sue...@gmail.com --- recipes-qt/qt5/qtsystems_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-qt/qt5/qtsystems_git.bb b/recipes-qt/qt5/qtsystems_git.bb index 45f6b0e

Re: [OE-core] [meta-qt5][PATCH] qtsystems: Change branch from stable to 5.3

2014-11-14 Thread Diego Sueiro
Otavio, On Fri, Nov 14, 2014 at 8:49 AM, Otavio Salvador ota...@ossystems.com.br wrote: Hello Diego, On Fri, Nov 14, 2014 at 7:58 AM, Diego Sueiro diego.sue...@gmail.com wrote: Stable branch was removed on mainline and now 5.3 is used. Signed-off-by: Diego Sueiro diego.sue

Re: [OE-core] Announcing meta-musl OE/Yocto layer supporting musl C library

2014-08-17 Thread Diego Sueiro
Wow This is a really great job. Nice work. I'm gonna test it. Regards, -- *dS Diego Sueiro Administrador do Embarcados www.embarcados.com.br http://www.embarcados.com.br/?utm_source=assinatura_diegoutm_medium=e-mailutm_campaign=Assinatura%20Email%20Diego /*long live rock 'n roll

[OE-core] [oe-core][for-dora][for-daisy][PATCH] qt4: Fix Qt 4.8.5 source to new location

2014-08-10 Thread Diego Sueiro
Qt 4.8.5 was moved from http://download.qt-project.org/official_releases/qt/4.8/ to http://download.qt-project.org/archive/qt/4.8/ Thi fix must be applied for dora and daisy branches. Signed-off-by: Diego Sueiro diego.sue...@gmail.com --- meta/recipes-qt/qt4/qt4-4.8.5.inc | 2 +- 1 file

[OE-core] [PATCH] Try to make urandom more random using the proper seed.

2014-07-11 Thread Abelenda Diego
From 963a99512475b6bc402d2339fa4e4765960e4c26 Mon Sep 17 00:00:00 2001 From: Diego diego.abele...@domo-safety.com Date: Fri, 11 Jul 2014 14:30:56 +0200 Subject: [PATCH] Try to make urandom more random using the proper seed. If we follow the syntax here we think that previously, at shutdown

Re: [OE-core] [PATCH] Try to make urandom more random using the proper seed.

2014-07-11 Thread Abelenda Diego
fi If the script is still run please explain to me why, I do not understand... Best regards, Diego Abelenda On Fri, 11 Jul 2014 15:22:56 +0200 Abelenda Diego diego.abele...@domo-safety.com wrote: From 963a99512475b6bc402d2339fa4e4765960e4c26 Mon Sep 17 00:00:00 2001 From: Diego

Re: [OE-core] Cape Manager

2014-06-30 Thread Diego Sueiro
://github.com/beagleboard/meta-beagleboard/blob/master/common-bsp/recipes-kernel/linux/linux-mainline_3.8.bb ) Regards, -- *dS Diego Sueiro Administrador do Embarcados www.embarcados.com.br http://www.embarcados.com.br/?utm_source=assinatura_diegoutm_medium=e-mailutm_campaign=Assinatura%20Email%20Diego

[OE-core] intltool version check errors

2014-05-29 Thread Diego Sueiro
or later. Configure failed. The contents of all config.log files follows to aid debugging But intltool-native version is 0.50.2. What am I missing? Regards, -- *dS Diego Sueiro Administrador do Embarcados www.embarcados.com.brhttp://www.embarcados.com.br/?utm_source=assinatura_diegoutm_medium=e

Re: [OE-core] intltool version check errors

2014-05-29 Thread Diego Sueiro
Hi Sau!, On Thu, May 29, 2014 at 12:20 PM, Saul Wold s...@linux.intel.com wrote: On 05/29/2014 06:17 AM, Diego Sueiro wrote: Folks, I'm facing with a strange error on daisy branch. Some native recipes are failing on do_configure step with this message: checking for intltool = 0.35.0

Re: [OE-core] intltool version check errors

2014-05-29 Thread Diego Sueiro
Sau!, On Thu, May 29, 2014 at 1:50 PM, Saul Wold s...@linux.intel.com wrote: On 05/29/2014 09:36 AM, Diego Sueiro wrote: Hi Sau!, On Thu, May 29, 2014 at 12:20 PM, Saul Wold s...@linux.intel.com wrote: On 05/29/2014 06:17 AM, Diego Sueiro wrote: Folks, I'm facing with a strange

Re: [OE-core] intltool version check errors

2014-05-29 Thread Diego Sueiro
Khem, On Thu, May 29, 2014 at 2:48 PM, Khem Raj raj.k...@gmail.com wrote: On Thu, May 29, 2014 at 10:23 AM, Diego Sueiro diego.sue...@gmail.com wrote: For now these are the recipes: shared-mime-info_1.2.bb gconf_3.2.6.bb libsoup-2.4_2.45.3.bb gconf_3.2.6.bb avahi_0.6.31.bb

Re: [OE-core] intltool version check errors

2014-05-29 Thread Diego Sueiro
Sau!, On Thu, May 29, 2014 at 3:00 PM, Saul Wold s...@linux.intel.com wrote: On 05/29/2014 10:50 AM, Diego Sueiro wrote: Khem, On Thu, May 29, 2014 at 2:48 PM, Khem Raj raj.k...@gmail.com wrote: On Thu, May 29, 2014 at 10:23 AM, Diego Sueiro diego.sue...@gmail.com wrote: For now

  1   2   >