diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2020-02-25 09:18:52 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-28 23:11:28 +0000 |
commit | aff2e8531ff68e626d66de6b00cea1db985bfd28 (patch) | |
tree | 77318eafd250caf3c1187c5250e83c2e40270765 /meta/conf | |
parent | fee9be0f6573bd4b06b1693565f4099f3cd984e5 (diff) | |
download | poky-aff2e8531ff68e626d66de6b00cea1db985bfd28.tar.gz |
hosttools: add utilities for all supported checksums
Only md5sum and sha256sum are currently provided by HOSTTOOLS. Trying
to use any other checksum conversion will result in a build failure.
Fix it by adding other supported checksum utilities to HOSTTOOLS.
(From OE-Core rev: 78155e5fcff9362049b576d20e31c3519c48485b)
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 954c06b313..e201b671bb 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -489,7 +489,8 @@ HOSTTOOLS += " \ | |||
489 | fgrep file find flock g++ gawk gcc getconf getopt git grep gunzip gzip \ | 489 | fgrep file find flock g++ gawk gcc getconf getopt git grep gunzip gzip \ |
490 | head hostname iconv id install ld ldd ln ls make md5sum mkdir mknod \ | 490 | head hostname iconv id install ld ldd ln ls make md5sum mkdir mknod \ |
491 | mktemp mv nm objcopy objdump od patch perl pr printf pwd \ | 491 | mktemp mv nm objcopy objdump od patch perl pr printf pwd \ |
492 | python3 ranlib readelf readlink realpath rm rmdir rpcgen sed seq sh sha256sum \ | 492 | python3 ranlib readelf readlink realpath rm rmdir rpcgen sed seq sh \ |
493 | sha1sum sha224sum sha256sum sha384sum sha512sum \ | ||
493 | sleep sort split stat strings strip tail tar tee test touch tr true uname \ | 494 | sleep sort split stat strings strip tail tar tee test touch tr true uname \ |
494 | uniq wc wget which xargs \ | 495 | uniq wc wget which xargs \ |
495 | " | 496 | " |