[OE-core] [PATCH] image_types: fix checksum conversion dependencies

Bartosz Golaszewski brgl at bgdev.pl
Mon Feb 24 14:14:57 UTC 2020


From: Bartosz Golaszewski <bgolaszewski at baylibre.com>

Only md5sum and sha256sum tools are provided by HOSTTOOLS. For other
checksum utils, the conversions need to depend on coreutils-native.

Signed-off-by: Bartosz Golaszewski <bgolaszewski at baylibre.com>
---
 meta/classes/image_types.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index f82f1d8862..63ffbac7e6 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -315,6 +315,10 @@ CONVERSION_DEPENDS_lzo = "lzop-native"
 CONVERSION_DEPENDS_zip = "zip-native"
 CONVERSION_DEPENDS_zst = "zstd-native"
 CONVERSION_DEPENDS_sum = "mtd-utils-native"
+CONVERSION_DEPENDS_sha1sum = "coreutils-native"
+CONVERSION_DEPENDS_sha224sum = "coreutils-native"
+CONVERSION_DEPENDS_sha384sum = "coreutils-native"
+CONVERSION_DEPENDS_sha512sum = "coreutils-native"
 CONVERSION_DEPENDS_bmap = "bmap-tools-native"
 CONVERSION_DEPENDS_u-boot = "u-boot-tools-native"
 CONVERSION_DEPENDS_vmdk = "qemu-system-native"
-- 
2.19.1



More information about the Openembedded-core mailing list