diff options
author | Justin Bronder <jsbronder@cold-front.org> | 2024-11-05 10:37:52 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-07 22:17:24 +0000 |
commit | 226ec2ce7487d35d1aba0e80c23b892f3a47442a (patch) | |
tree | 2b05221b301826589f242f508c9308952bd8fdb2 | |
parent | 7626a6b4c0785fae14b09c0e5d35787ba5911c5a (diff) | |
download | poky-226ec2ce7487d35d1aba0e80c23b892f3a47442a.tar.gz |
bitbake.conf: require lz4 instead of lz4c
With bitbake commit 'bb: compress: use lz4 instead of lz4c' we require
lz4, not lz4c [1]. Going as far back as Ubuntu 16.04/Fedora 25, they
are packaged together so it should be safe to simply adjust the
requirement from lz4c to lz4.
Note that the two are largely the same, but upstream has considered lz4c
deprecated since at least 2018 [2].
1. https://git.openembedded.org/bitbake/commit/?id=907472034b344e4eb73cfd43059a413469f52e1c
2. https://github.com/lz4/lz4/pull/553
(From OE-Core rev: fe167e082cbde1c6d186ecdda531abef610ac2ac)
Signed-off-by: Justin Bronder <jsbronder@cold-front.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 37fa1cd5e1..02bbf0e7a5 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -517,7 +517,7 @@ HOSTTOOLS += " \ | |||
517 | [ ar as awk basename bash bunzip2 bzip2 cat chgrp chmod chown chrpath cmp comm cp cpio \ | 517 | [ ar as awk basename bash bunzip2 bzip2 cat chgrp chmod chown chrpath cmp comm cp cpio \ |
518 | cpp cut date dd diff diffstat dirname du echo egrep env expand expr false \ | 518 | cpp cut date dd diff diffstat dirname du echo egrep env expand expr false \ |
519 | fgrep file find flock g++ gawk gcc getconf getopt git grep gunzip gzip \ | 519 | fgrep file find flock g++ gawk gcc getconf getopt git grep gunzip gzip \ |
520 | head hostname iconv id install ld ldd ln ls lz4c make md5sum mkdir mkfifo mknod \ | 520 | head hostname iconv id install ld ldd ln ls lz4 make md5sum mkdir mkfifo mknod \ |
521 | mktemp mv nm objcopy objdump od patch perl pr printf pwd \ | 521 | mktemp mv nm objcopy objdump od patch perl pr printf pwd \ |
522 | python3 pzstd ranlib readelf readlink realpath rm rmdir rpcgen sed seq sh \ | 522 | python3 pzstd ranlib readelf readlink realpath rm rmdir rpcgen sed seq sh \ |
523 | sha1sum sha224sum sha256sum sha384sum sha512sum \ | 523 | sha1sum sha224sum sha256sum sha384sum sha512sum \ |