[OE-core] [PATCH 2/2] glibc: fix multilib headers conflict for arm

2022-02-23 Thread Yi Zhao
Fixes: Error: Transaction test error: file /usr/include/bits/dl_find_object.h conflicts between attempted installs of lib32-libc6-dev-2.35-r0.armv7vet2hf_vfp and libc6-dev-2.35-r0.cortexa57 file /usr/include/bits/rseq.h conflicts between attempted installs of

[OE-core] [PATCH 1/2] glibc: unify wordsize.h between arm and aarch64

2022-02-23 Thread Yi Zhao
Make sure this header file is same in arm and aarch64. Fix the conflict error when enable multilib: Error: Transaction test error: file /usr/include/bits/wordsize.h conflicts between attempted installs of lib32-libc6-dev-2.35-r0.armv7vet2hf_vfp and libc6-dev-2.35-r0.cortexa57 Signed-off-by:

[OE-core] [PATCH] gtk-icon-cache: Allow using gtk4

2022-02-23 Thread Zoltan Boszormenyi via lists.openembedded.org
From: Zoltán Böszörményi meta-openembedded has gtk4 which has its own version of gtk-update-icon-cache. Allow programs that want to use gtk4 use the proper version of the gtk-update-icon-cache utility and the proper build and runtime dependencies. Signed-off-by: Zoltán Böszörményi ---

[OE-core] [PATCH][honister 2/4] ruby: update 3.0.2 -> 3.0.3

2022-02-23 Thread Lee Chee Yang
From: Alexander Kanavin Do not tweak a file that is no longer installed. (From OE-Core rev: 1af0c4ef56d1892f284b6787ccc5a925d023e178) Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie Signed-off-by: Lee Chee Yang --- meta/recipes-devtools/ruby/{ruby_3.0.2.bb => ruby_3.0.3.bb}

[OE-core] [PATCH][honister 4/4] libarchive : update to 3.5.3

2022-02-23 Thread Lee Chee Yang
From: Lee Chee Yang Libarchive 3.5.3 is a security release Security Fixes: extended fix for following symlinks when processing the fixup list (#1566, #1617, CVE-2021-31566) fix invalid memory access and out of bounds read in RAR5 reader (#1491, #1492, #1493, CVE-2021-36976) Signed-off-by:

[OE-core] [PATCH][honister 3/4] libarchive: upgrade 3.5.1 -> 3.5.2

2022-02-23 Thread Lee Chee Yang
From: Alexander Kanavin (From OE-Core rev: f8f39cd5757907d50444203e0e6e2c5ed0a47152) Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie Signed-off-by: Lee Chee Yang --- .../libarchive/{libarchive_3.5.1.bb => libarchive_3.5.2.bb} | 2 +- 1

[OE-core] [PATCH][honister 1/4] harfbuzz: upgrade 2.9.0 -> 2.9.1

2022-02-23 Thread Lee Chee Yang
From: wangmy Final subset API is in place and if no issues are discovered, it will be the stable subset API of HarfBuzz 3.0.0. Old API is kept to ease transition, but will be removed in 3.0.0. Various fuzzer-found bug fixes. hb_buffer_append() now handles the pre- and post-context which

[OE-core] [honister][PATCH 00/38] Pull request (cover letter only)

2022-02-23 Thread Anuj Mittal
The following changes since commit 418a9c4c31615a9e3e011fc2b21fb7154bc6c93a: build-appliance-image: Update to honister head revision (2022-02-09 23:15:24 +) are available in the Git repository at: git://push.openembedded.org/openembedded-core-contrib stable/honister-next Bruce

Re: [OE-core][dunfell 0/8] Patch review - vim CVEs

2022-02-23 Thread Armin Kuster
On 2/21/22 11:34, Steve Sakoman wrote: There's a fairly constant flow of CVEs being reported for vim, which are getting increasing non-trivial to backport. There are currenly 26 CVEs outstanding for vim in dunfell. This has been handled in master with a number of version updates. Since vim is

Re: [OE-core] [PATCH v2 00/32] Python PEP-517: build wheels and install with pip

2022-02-23 Thread Tim Orling
On Wed, Feb 23, 2022 at 8:50 PM Tim Orling via lists.openembedded.org wrote: > > > On Wed, Feb 23, 2022 at 8:07 PM Khem Raj wrote: > >> Right now approx 150 out of 470 recipes [1] in meta-python are directly >> failing, >> perhaps there will be more once these are fixed then there are other >>

[OE-core] [PATCH 2/2] documentation-audit: Use renamed LICENSE_FLAGS_ACCEPTED variable

2022-02-23 Thread Khem Raj
Signed-off-by: Khem Raj --- scripts/contrib/documentation-audit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/contrib/documentation-audit.sh b/scripts/contrib/documentation-audit.sh index f436f9bae08..36f7f3287c8 100755 ---

[OE-core] [PATCH 1/2] local.conf.sample.extended: Use new variable LICENSE_FLAGS_ACCEPTED

2022-02-23 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/conf/local.conf.sample.extended | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/meta/conf/local.conf.sample.extended b/meta/conf/local.conf.sample.extended index 2ea27d044ab..68f3a966cd8 100644 ---

Re: [OE-core] [PATCH v2 00/32] Python PEP-517: build wheels and install with pip

2022-02-23 Thread Tim Orling
On Wed, Feb 23, 2022 at 8:07 PM Khem Raj wrote: > Right now approx 150 out of 470 recipes [1] in meta-python are directly > failing, > perhaps there will be more once these are fixed then there are other layers > which might be carrying some impacted python modules. The issue has mostly been

[OE-core] [PATCH 2/2] pip_install_wheel: improved wheel filename guess

2022-02-23 Thread Tim Orling
Rather than only use PYPI_PACKAGE as a guess, fall back on PN for cases where a recipe does not inherit pypi. Wheels can only have alphanumeric characters in the 'distribution' name [1]. Any other characters are replaced with an underscore. Provide a function to replace dash with underscore. [1]

[OE-core] [PATCH 1/2] setuptools3.bbclass: add check for pyproject.toml

2022-02-23 Thread Tim Orling
With help from Peter Kjellerstedt via IRC. Add a check for pyproject.toml in ${S} and if so check if it has a [build-system] build-backend. Give the user a helpful warning that the recipe should be changed to one of the PEP-517 classes (instead of setuptools3.bbclass). Add

Re: [OE-core] [PATCH v2 00/32] Python PEP-517: build wheels and install with pip

2022-02-23 Thread Khem Raj
Right now approx 150 out of 470 recipes [1] in meta-python are directly failing, perhaps there will be more once these are fixed then there are other layers which might be carrying some impacted python modules. Also YP compatibility is broken due to python3-nose removal. If we are planning to

Re: [OE-core] [PATCH v3] Rust Oe-Selftest implementation

2022-02-23 Thread Randy MacLeod
Hi Naveen, On 2022-02-23 07:22, Pgowda wrote: The patch implements Oe-selftest framework for Rust test. I think you need a bit more of an introduction to the patch. I assume that you and Vinay based this in part on the gcc.py test suite so you might say so and explain what is different and

[OE-core] [PATCH] libarchive : update to 3.5.3

2022-02-23 Thread Lee Chee Yang
From: Lee Chee Yang Libarchive 3.5.3 is a security release Security Fixes: extended fix for following symlinks when processing the fixup list (#1566, #1617, CVE-2021-31566) fix invalid memory access and out of bounds read in RAR5 reader (#1491, #1492, #1493, CVE-2021-36976) Signed-off-by:

Re: [OE-core] [PATCH v2] create-spdx: add support for SDKs

2022-02-23 Thread Joshua Watt
On Wed, Jan 26, 2022 at 12:17 PM Andres Beltran wrote: > > Currently, SPDX SBOMs are only created for images. Add support for > SDKs. Fix json indent when outputting SBOMs for better readability. I believe the json indenting comment is now a lie since it was removed in V2? Otherwise, LGTM

Re: [oe-core][hardknott][PATCH 1/1] virglrenderer: fix CVE-2022-0135 and -0175

2022-02-23 Thread Anuj Mittal
On Wed, 2022-02-23 at 20:01 -0500, Randy MacLeod wrote: > Anuj, > > Did you miss this one? A hardknott point release, 3.3.5, is in QA right now so I didn't take patches this week. It will be in next week's pull request. I have taken this for honister in the meantime. Thanks, Anuj > I don't

[OE-core] [RFC] INCOMPATIBLE_LICENSE re-work

2022-02-23 Thread Saul Wold
This re-writes the INCOMPATIBLE_LICENSE checking code to replace the WHITELIST_ with INCOMPATIBLE_LICENSE_EXCEPTIONS = ': : ...' This initial set of changes leaves most of the code structure in place, but the code in base.bbclass needs to be re-written to make the check more consistent around

Re: [oe-core][hardknott][PATCH 1/1] virglrenderer: fix CVE-2022-0135 and -0175

2022-02-23 Thread Randy MacLeod
Anuj, Did you miss this one? I don't see it in: https://git.openembedded.org/meta-openembedded-contrib/log/?h=hardknott-next ../Randy On 2022-02-16 18:12, Joe Slater wrote: CVE-2022-0135 concerns out-of-bounds writes in read_transfer_data(). CVE-2022-0175 concerns using malloc() instead of

Re: [OE-core] [PATCH 1/4] python3-pip-native: install scripts in ${bindir}

2022-02-23 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Tim Orling > Sent: den 23 februari 2022 23:09 > To: openembedded-core@lists.openembedded.org > Cc: Tim Orling > Subject: [OE-core] [PATCH 1/4] python3-pip-native: install

[OE-core][dunfell 00/29] Pull request (cover letter only)

2022-02-23 Thread Steve Sakoman
The following changes since commit 88c0290520c9e4982d25c20e783bd91eec016b52: libusb1: correct SRC_URI (2022-02-07 04:40:13 -1000) are available in the Git repository at: git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next

[OE-core] [PATCH 4/4] python3-wheel-native: install ${bindir}/wheel

2022-02-23 Thread Tim Orling
pip install would normally install [project.scripts] to ${D}${bindir} but our naïve bootstrapping only unzipps the wheel to ${D}${PYTHON_SITEPACKAGES_DIR}. Correct this by creating the equivalent script in do_install:class-native [YOCTO #14739] Signed-off-by: Tim Orling ---

[OE-core] [PATCH 3/4] python3-flit-core: SUMMARY DESCRIPTION HOMEPAGE

2022-02-23 Thread Tim Orling
Add SUMMARY DESCRIPTION HOMEPAGE and BUGTRACKER definitions. Signed-off-by: Tim Orling --- meta/recipes-devtools/python/python3-flit-core_3.6.0.bb | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/recipes-devtools/python/python3-flit-core_3.6.0.bb

[OE-core] [PATCH 2/4] python3-scons-native: drop from maintainers.inc

2022-02-23 Thread Tim Orling
The python3-scons and python3-scons-native recipes have been merged into one. Signed-off-by: Tim Orling --- meta/conf/distro/include/maintainers.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc index

[OE-core] [PATCH 1/4] python3-pip-native: install scripts in ${bindir}

2022-02-23 Thread Tim Orling
The naïve approach of simply unzipping the built wheel is not sufficient. 'pip install' would normally have created the [console_scripts] from entry-points.txt in ${D}${bindir}. For bootstrapping purposes, hardcode the scripts and install them into ${D}${bindir}. Skip the ${bindir}/pip variant.

[OE-core] [PATCH 3/3] python3targetconfig: Use for nativesdk too

2022-02-23 Thread Richard Purdie
nativesdk is a cross compiled target and therefore should use the target config, not the native one. Copy the target entries accordingly. Signed-off-by: Richard Purdie --- meta/classes/python3targetconfig.bbclass | 12 1 file changed, 12 insertions(+) diff --git

[OE-core] [PATCH 2/3] python3-pip: Don't change shebang

2022-02-23 Thread Richard Purdie
Patch pip to disable shebang mangling and also force the python executable to be python3 from the environment when building anything for the target (or nativesdk). Signed-off-by: Richard Purdie --- .../python3-pip/no_shebang_mangling.patch | 24 +++

[OE-core] [PATCH 1/3] pip_install_wheel: Use --ignore-installed for pip

2022-02-23 Thread Richard Purdie
Replace the use of --force-reinstall with --ignore-installed when running pip install. It can detect currently installed modules in the wrong environment and try to remove them currently which is not what is desired. Ignoring them is the correct thing to do. Signed-off-by: Richard Purdie ---

Re: [OE-core] OpenEmbedded Happy Hour February 23 9pm/2100 UTC

2022-02-23 Thread Denys Dmytriyenko
On Mon, Feb 21, 2022 at 06:26:05PM -0500, Denys Dmytriyenko wrote: > All, > > You are cordially invited to the next OpenEmbedded Happy Hour on February 23 > for Asia/Pacific timezones @ 2100/9pm UTC (4pm ET / 1pm PT): > > https://www.openembedded.org/wiki/Calendar >

Re: [OE-core] [PATCH v2 01/32] python3-wheel: move 0.37.0 from meta-python

2022-02-23 Thread Tim Orling
On Wed, Feb 23, 2022 at 8:01 AM Khem Raj wrote: > this series is breaking things quite a bit in rest of world. > > https://errors.yoctoproject.org/Errors/Build/141298/ I understand, but we do need to be able to modernize. And getting oe-core stable is currently consuming all bandwidth. Most

Re: [OE-core] [PATCH] systemd: move systemd shared library into its own package

2022-02-23 Thread Stefan Herbrechtsmeier
Am 23.02.2022 um 17:04 schrieb Konrad Weihmann: On 23.02.22 16:59, Stefan Herbrechtsmeier wrote: From: Stefan Herbrechtsmeier Move the systemd shared library (libsystemd-shared.so) into its own package to prevent a runtime dependency from udev package to systemd package and thereby to a

[OE-core] [PATCH v2] systemd: move systemd shared library into its own package

2022-02-23 Thread Stefan Herbrechtsmeier
From: Stefan Herbrechtsmeier Move the systemd shared library (libsystemd-shared.so) into its own package to prevent a runtime dependency from udev package to systemd package and thereby to a second init manager. Signed-off-by: Stefan Herbrechtsmeier --- Changes in v2: - Fix SUMMARY override

Re: [OE-core] [PATCH] systemd: move systemd shared library into its own package

2022-02-23 Thread Konrad Weihmann
On 23.02.22 16:59, Stefan Herbrechtsmeier wrote: From: Stefan Herbrechtsmeier Move the systemd shared library (libsystemd-shared.so) into its own package to prevent a runtime dependency from udev package to systemd package and thereby to a second init manager. Signed-off-by: Stefan

Re: [OE-core] [PATCH v2 01/32] python3-wheel: move 0.37.0 from meta-python

2022-02-23 Thread Khem Raj
this series is breaking things quite a bit in rest of world. https://errors.yoctoproject.org/Errors/Build/141298/ On Mon, Feb 21, 2022 at 1:24 PM Tim Orling wrote: > > This is one of the "new build tools" which are part of pypa (Python > Packaging Authority) toolchain. > > Wheels are the

[OE-core] [PATCH] systemd: move systemd shared library into its own package

2022-02-23 Thread Stefan Herbrechtsmeier
From: Stefan Herbrechtsmeier Move the systemd shared library (libsystemd-shared.so) into its own package to prevent a runtime dependency from udev package to systemd package and thereby to a second init manager. Signed-off-by: Stefan Herbrechtsmeier ---

[OE-core] [PATCH] wireless-regdb: upgrade 2021.08.28 -> 2022.02.18

2022-02-23 Thread wangmy
Signed-off-by: Wang Mingyu --- ...ireless-regdb_2021.08.28.bb => wireless-regdb_2022.02.18.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-kernel/wireless-regdb/{wireless-regdb_2021.08.28.bb => wireless-regdb_2022.02.18.bb} (94%) diff --git

[OE-core] [PATCH] ruby: upgrade 3.1.0 -> 3.1.1

2022-02-23 Thread wangmy
refresh the following patches for 3.1.1: 0005-Mark-Gemspec-reproducible-change-fixing-784225-too.patch 0006-Make-gemspecs-reproducible.patch Signed-off-by: Wang Mingyu --- ...eproducible-change-fixing-784225-too.patch | 41 ++- .../0006-Make-gemspecs-reproducible.patch | 13

Re: [OE-core] [PATCH v2 3/3] systemd: Minimize udev package size if DISTRO_FEATURES contains systemd

2022-02-23 Thread Stefan Herbrechtsmeier
Am 23.02.2022 um 13:39 schrieb Richard Purdie: On Wed, 2022-02-23 at 09:13 +0100, Stefan Herbrechtsmeier wrote: Am 23.02.2022 um 02:49 schrieb Yu, Mingli: On 2/22/22 9:26 PM, Stefan Herbrechtsmeier wrote: [Please note: This e-mail is from an EXTERNAL e-mail address] Am 22.02.2022 um 10:20

[OE-core] [PATCH] quilt: upgrade 0.66 -> 0.67

2022-02-23 Thread wangmy
Changelog: = - Call pager with original LANG environment variable - Consistently complain early if no series file is found - Fix handling of symbolic links by several commands - Tighten the patch format parsing - Reuse the shell (performance) - Document the series file format further -

[OE-core] [PATCH] libva-utils: upgrade 2.13.0 -> 2.14.0

2022-02-23 Thread wangmy
Changelog: = * test: Use test suite setup/teardown to reduce test overhead * ci: fix freebsd build Signed-off-by: Wang Mingyu --- .../libva/{libva-utils_2.13.0.bb => libva-utils_2.14.0.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename

[OE-core] [PATCH] patchelf: upgrade 0.14.3 -> 0.14.5

2022-02-23 Thread wangmy
Signed-off-by: Wang Mingyu --- .../patchelf/{patchelf_0.14.3.bb => patchelf_0.14.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/patchelf/{patchelf_0.14.3.bb => patchelf_0.14.5.bb} (91%) diff --git

[OE-core] [PATCH] coreutils: remove obsolete ignored CVE list

2022-02-23 Thread Ross Burton
Three CVEs were meant to be ignored via CVE_WHITELIST, but that wasn't the correct variable name. The CPEs for those CVEs mean that they don't get picked up in our report, so just remove the assignment. Signed-off-by: Ross Burton --- meta/recipes-core/coreutils/coreutils_9.0.bb | 3 --- 1 file

[OE-core] [PATCH 1/2] cve-check: get_cve_info should open the database read-only

2022-02-23 Thread Ross Burton
All of the function in cve-check should open the database read-only, as the only writer is the fetch task in cve-update-db. However, get_cve_info() was failing to do this, which might be causing locking issues with sqlite. Signed-off-by: Ross Burton --- meta/classes/cve-check.bbclass | 3 ++-

[OE-core] [PATCH 2/2] Revert "cve-check: add lockfile to task"

2022-02-23 Thread Ross Burton
Now that all of the functions in cve-check open the database read-only, we can remove this lockfile. This means cve-check can run in parallal again, improving runtimes massively. This reverts commit d55fbf4779483d2cfd71df78d0f733b599fef739. Signed-off-by: Ross Burton ---

Re: [OE-core] [PATCH][RFC] cve-check: use local copy instead of global db

2022-02-23 Thread Ross Burton
This seems really suboptimal. The only operation which writes to the sqlite database is the fetch task of cve-update-db-native, everything else is read-only. Or should be... I just discovered a function which was failing to open the database read-only, which is possible the cause of the problem.

Re: [OE-core] [PATCH v2 3/3] systemd: Minimize udev package size if DISTRO_FEATURES contains systemd

2022-02-23 Thread Richard Purdie
On Wed, 2022-02-23 at 09:13 +0100, Stefan Herbrechtsmeier wrote: > Hi, > > Am 23.02.2022 um 02:49 schrieb Yu, Mingli: > > > > > > On 2/22/22 9:26 PM, Stefan Herbrechtsmeier wrote: > > > [Please note: This e-mail is from an EXTERNAL e-mail address] > > > > > > Hi, > > > > > > Am 22.02.2022 um

[OE-core] [PATCH v3] Rust Oe-Selftest implementation

2022-02-23 Thread Pgowda
The patch implements Oe-selftest framework for Rust test. Some of the functions are as follows:- setup_cargo_environment(): Build bootstrap and some early stage tools. do_rust_setup_snapshot(): Install the snapshot version of rust binaries. do_configure(): To generate config.toml do_compile(): To

[OE-core] [PATCH] libsecret: upgrade 0.20.4 -> 0.20.5

2022-02-23 Thread wangmy
determinism.patch removed since it's included in 0.20.5 Changelog: = * Drop autotools-based build [!44] * Use G_GNUC_NULL_TERMINATED where appropriate [!65] * collection, methods, prompt: Port to GTask [!66, !93] * Detect local storage in snaps in the same way as flatpaks [!67] * Add

[OE-core] [PATCH] libdrm: upgrade 2.4.109 -> 2.4.110

2022-02-23 Thread wangmy
Signed-off-by: Wang Mingyu --- .../drm/{libdrm_2.4.109.bb => libdrm_2.4.110.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/drm/{libdrm_2.4.109.bb => libdrm_2.4.110.bb} (97%) diff --git a/meta/recipes-graphics/drm/libdrm_2.4.109.bb

[OE-core] [PATCH] flac: upgrade 1.3.3 -> 1.3.4

2022-02-23 Thread wangmy
Signed-off-by: Wang Mingyu --- meta/recipes-multimedia/flac/{flac_1.3.3.bb => flac_1.3.4.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta/recipes-multimedia/flac/{flac_1.3.3.bb => flac_1.3.4.bb} (93%) diff --git a/meta/recipes-multimedia/flac/flac_1.3.3.bb

[OE-core] [PATCH] init-system-helpers: upgrade 1.60 -> 1.62

2022-02-23 Thread wangmy
Changelog: = * use fakechroot instead of unsharing the mount namespace and mounting tmpfs * deb-systemd-invoke: systemctl --machine @ is now available in v249.10. Adjust the version check accordingly * Skip build-time tests if DEB_BUILD_OPTIONS=nocheck is set * Fix typos found by Lintian

[OE-core] [PATCH] bind: upgrade 9.16.25 -> 9.16.26

2022-02-23 Thread wangmy
Changelog: == Log "quota reached" message when hard quota is reached when accepting a connection. Add ECS support to the DLZ interface. A failed view configuration during a named reconfiguration procedure could cause inconsistencies in BIND internal structures, causing a crash or other

[OE-core][PATCH] qemu: add tpm string section to qemu acpi table

2022-02-23 Thread LiweiSong
This will create _STR and _UID section for TPM in qemu acpi table, with these section, the missing "description" and "uid" files will be created for TPM in /sys by kernel. Signed-off-by: Liwei Song --- meta/recipes-devtools/qemu/qemu.inc | 1 +

[OE-core] [PATCH] asciidoc: upgrade 10.1.1 -> 10.1.3

2022-02-23 Thread wangmy
Bugfix: Add missing py files to dist archives Fix setup.py including packages outside of asciidoc Signed-off-by: Wang Mingyu --- .../asciidoc/{asciidoc_10.1.1.bb => asciidoc_10.1.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename

Re: [OE-core] [yocto] QA notification for completed autobuilder build (yocto-3.3.5.rc1)

2022-02-23 Thread Teoh, Jay Shen
Hi all, Intel and WR YP QA is planning for QA execution for YP build yocto-3.3.5.rc1. We are planning to execute following tests for this cycle: OEQA-manual tests for following module: 1. OE-Core 2. BSP-hw Runtime auto test for following platforms: 1. MinnowTurbot 32-bit 2. Coffee Lake 3. NUC

Re: [OE-core] [PATCH v2 3/3] systemd: Minimize udev package size if DISTRO_FEATURES contains systemd

2022-02-23 Thread Stefan Herbrechtsmeier
Hi, Am 23.02.2022 um 02:49 schrieb Yu, Mingli: On 2/22/22 9:26 PM, Stefan Herbrechtsmeier wrote: [Please note: This e-mail is from an EXTERNAL e-mail address] Hi, Am 22.02.2022 um 10:20 schrieb Yu, Mingli: Hi, On 2/2/22 3:35 PM, Stefan Herbrechtsmeier wrote: [Please note: This e-mail is