summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlberto Planas <aplanas@suse.com>2023-08-18 11:30:56 +0200
committerSteve Sakoman <steve@sakoman.com>2023-10-04 05:21:27 -1000
commit33a7287abc6613ba7c379ac877fbb7cd5111d90b (patch)
tree654dd854804d05351b9264dda5f23862c3eaa770
parentce5cc6c7a22bf5d2d823ff0242a5f2f0611a14f4 (diff)
downloadpoky-33a7287abc6613ba7c379ac877fbb7cd5111d90b.tar.gz
bitbake.conf: add bunzip2 in HOSTTOOLS
rpm2cpio.sh can make calls to bunzip2 to uncompress the RPM payload that conform the cpio file. bzip2 is already part of HOSTTOOLS, as a link to the system installed bzip2. This patch add bunzip2 in HOSTOOLS list as a non-optional binary, so is available to rpm2cpio.sh when it is required. The currect rpm2cpio.sh has other calls to gunzip (present in HOSTOOLS), xzcat (missing), unlzma (missing) and unzstd (present in HOSTTOOLS since bff58d337890e804d33d7decbaa46065a4d3bba4) Adding the missing ones will not add any new host dependency as xz-utils is already listed as a requirement. (From OE-Core rev: 08ab02865bb94865826515def8cf13352bacda8a) Signed-off-by: Alberto Planas <aplanas@suse.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit fd376a11ed8d1b79633c2572ec0b4341d3ca2f1c) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/conf/bitbake.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index f679a49eb0..b2a8cea4b7 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -521,7 +521,7 @@ HOSTTOOLS_DIR = "${TMPDIR}/hosttools"
521 521
522# Tools needed to run builds with OE-Core 522# Tools needed to run builds with OE-Core
523HOSTTOOLS += " \ 523HOSTTOOLS += " \
524 [ ar as awk basename bash bzip2 cat chgrp chmod chown chrpath cmp comm cp cpio \ 524 [ ar as awk basename bash bunzip2 bzip2 cat chgrp chmod chown chrpath cmp comm cp cpio \
525 cpp cut date dd diff diffstat dirname du echo egrep env expand expr false \ 525 cpp cut date dd diff diffstat dirname du echo egrep env expand expr false \
526 fgrep file find flock g++ gawk gcc getconf getopt git grep gunzip gzip \ 526 fgrep file find flock g++ gawk gcc getconf getopt git grep gunzip gzip \
527 head hostname iconv id install ld ldd ln ls lz4c make md5sum mkdir mkfifo mknod \ 527 head hostname iconv id install ld ldd ln ls lz4c make md5sum mkdir mkfifo mknod \