Re: [OE-core] [PATCH] wic: Add dependencies for erofs-utils

2022-04-28 Thread Richard Weinberger
- Ursprüngliche Mail - > Von: "Sean Anderson" > In order to build erofs filesystems, wic must have the erofs-utils > package installed into its sysroot. > > Fixes: 30375ce97 ("Add support for erofs filesystems") > Signed-off-by: Sean Anderson Re

[OE-core] [PATCH] erofs fixups

2021-05-27 Thread Richard Weinberger
- Rename to erofs-utils_1.2.1.bb and don't set PV - Set correct package license - Add lz4 and lz4hc variants to IMAGE_TYPES - Add myself as package maintainer Signed-off-by: Richard Weinberger --- meta/classes/image_types.bbclass | 2 +- meta/conf/distro/include

[OE-core][PATCH v3] Add support for erofs filesystems

2021-05-26 Thread Richard Weinberger
ofs-lz4: erofs with lz4 compresssion enabled erofs-lz4hc: erofs with lz4hc compression enabled Signed-off-by: Richard Weinberger --- Changes since v2: - Set lz4 and lz4hc variants also in IMAGE_TYPES (requested by Quentin Schulz) - Set correct license for erofs-utils (requested by Quentin Sch

Re: [docs] [OE-core][PATCH] Add support for erofs filesystems

2021-05-25 Thread Richard Weinberger
Quentin, - Ursprüngliche Mail - > Von: "Quentin Schulz" >> IMAGE_TYPES = " \ >>@@ -261,6 +269,7 @@ IMAGE_TYPES = " \ >> wic wic.gz wic.bz2 wic.lzma wic.zst \ >> container \ >> f2fs \ >>+erofs \ > > I think you're supposed to have erofs erofs-lz4 erofs-lz4hc here. Oh

[OE-core][PATCH v2] Add support for erofs filesystems

2021-05-25 Thread Richard Weinberger
ofs-lz4: erofs with lz4 compresssion enabled erofs-lz4hc: erofs with lz4hc compression enabled Signed-off-by: Richard Weinberger --- Changes since v1: - Make lz4 support in erofs-utils optional (requested by Konrad Weihmann) --- meta/classes/image_types.bbclass | 9 .../er

Re: [bitbake-devel] [OE-core][PATCH] Add support for erofs filesystems

2021-05-25 Thread Richard Weinberger
Konrad, - Ursprüngliche Mail - > Von: "Konrad Weihmann" >> +EXTRA_OECONF = "--enable-lz4 --disable-fuse" > > In the commit message it's mentioned that compression is optional, still > here lz4 is enabled by default - I would rather see these compression > switches configurable via

[OE-core] [bitbake][PATCH] Add support for erofs image types

2021-05-25 Thread Richard Weinberger
Signed-off-by: Richard Weinberger --- lib/toaster/orm/models.py | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/toaster/orm/models.py b/lib/toaster/orm/models.py index 7f7e922adecc..517774baa0b1 100644 --- a/lib/toaster/orm/models.py +++ b/lib/toaster/orm/models.py

[OE-core][PATCH] Add support for erofs filesystems

2021-05-25 Thread Richard Weinberger
ofs-lz4: erofs with lz4 compresssion enabled erofs-lz4hc: erofs with lz4hc compression enabled Signed-off-by: Richard Weinberger --- meta/classes/image_types.bbclass | 9 + .../erofs-utils/erofs-utils_git.bb | 18 ++ scripts/lib/wic/help

[OE-core] [yocto-docs][PATCH] Document erofs filesystem targets

2021-05-25 Thread Richard Weinberger
Signed-off-by: Richard Weinberger --- documentation/ref-manual/kickstart.rst | 2 ++ documentation/ref-manual/variables.rst | 3 +++ 2 files changed, 5 insertions(+) diff --git a/documentation/ref-manual/kickstart.rst b/documentation/ref-manual/kickstart.rst index 83085b72..2c8b724ff9ac

[OE-core] nativesdk-meson issues

2020-06-10 Thread Richard Weinberger
Hi! While investigating build issues I traced the root cause back to nativesdk-meson. We are on Yocto zeus with meson-0.54.2 backported from openembedded-core master, but this should not matter. 1. meson wrapping nativesdk-meson creates a shell wrapper which adds --cross-file=... to the meson

[OE-core] [PATCH] poky: add OpenSUSE LEAP 15.0 to SANITY_TESTED_DISTROS

2019-01-11 Thread Richard Weinberger
All my build systems (and containers) run LEAP 15.0. So far everything worked fine, let's get rid of the warning. :-) Signed-off-by: Richard Weinberger --- meta-poky/conf/distro/poky.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro

[OE-core] [PATCH v2] sdk: Fix SDKIMAGE_LINGUAS handling

2019-01-09 Thread Richard Weinberger
st of strings and not a string. Fix the problem by constructing a list. That way it is now also possible to call the package installer just once. Cc: "Burton, Ross" Fixes: 67615e01751b ("rootfs_rpm.bbclass: migrate image creation to dnf") Signed-off-by: Richard Weinberger --

[OE-core] [PATCH] sdk: Fix SDKIMAGE_LINGUAS handling

2018-12-18 Thread Richard Weinberger
st of strings and not a string. Fix the problem by passing a single element list to pm.install(). Cc: richard.pur...@linuxfoundation.org Fixes: 67615e01751b ("rootfs_rpm.bbclass: migrate image creation to dnf") Signed-off-by: Richard Weinberger --- meta/lib/oe/sdk.py | 2 +- 1 file chan