diff options
| author | Khem Raj <raj.khem@gmail.com> | 2022-04-27 23:26:47 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-12 16:44:05 +0100 |
| commit | 5e0de3463e8b9d6e61aff6f875a05cde506e80d2 (patch) | |
| tree | 2b7e65bc6e217c1b01de8da00a30509735e4fbda | |
| parent | 681ae51e6e72b29ebe1e1b2efe4213065373d46f (diff) | |
| download | poky-5e0de3463e8b9d6e61aff6f875a05cde506e80d2.tar.gz | |
kmod: Enable xz support by default
RPi kernel has started building compressed kernel modules by default
starting 5.15, currenrly therefore meta-raspberrypi kernels are unable
to load kernel modules since kmod and kmod-native do not entertain xz
compressed modules. There is a fix proposed in meta-raspberrypi [1]
but the fix is needed for native and nativesdk recipes as well, perhaps
its best to enable it here for best out of box experience with
meta-raspberrypi
[1] https://github.com/agherzan/meta-raspberrypi/pull/1056
(From OE-Core rev: 4c8be443515deadaee97ef4ed470a167594e8102)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 20e9917b8d40f576b3661bc29e13602a24e86b7b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-kernel/kmod/kmod_29.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/kmod/kmod_29.bb b/meta/recipes-kernel/kmod/kmod_29.bb index 9b66349066..32dc49c126 100644 --- a/meta/recipes-kernel/kmod/kmod_29.bb +++ b/meta/recipes-kernel/kmod/kmod_29.bb | |||
| @@ -27,7 +27,7 @@ S = "${WORKDIR}/git" | |||
| 27 | 27 | ||
| 28 | EXTRA_OECONF += "--enable-tools" | 28 | EXTRA_OECONF += "--enable-tools" |
| 29 | 29 | ||
| 30 | PACKAGECONFIG ??= "zlib" | 30 | PACKAGECONFIG ??= "zlib xz" |
| 31 | PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" | 31 | PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" |
| 32 | PACKAGECONFIG[logging] = " --enable-logging,--disable-logging" | 32 | PACKAGECONFIG[logging] = " --enable-logging,--disable-logging" |
| 33 | PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native" | 33 | PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native" |
