From 2cd35f07bfcb6ea76f329d6f278a7d7e98c5d79a Mon Sep 17 00:00:00 2001 From: "Peter A. Bigot" Date: Wed, 9 Nov 2011 12:52:54 -0600 Subject: [PATCH] sdcard_image: add dependency on native ext2 utilities Signed-off-by: Peter A. Bigot Signed-off-by: Koen Kooi --- classes/sdcard_image.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/classes/sdcard_image.bbclass b/classes/sdcard_image.bbclass index f7251f50..531b4192 100644 --- a/classes/sdcard_image.bbclass +++ b/classes/sdcard_image.bbclass @@ -3,6 +3,9 @@ inherit image # Add the fstypes we need IMAGE_FSTYPES_append = " tar.bz2 sdimg" +# Ensure required utilities are present +IMAGE_DEPENDS_sdimg = "genext2fs-native e2fsprogs-native" + # Change this to match your host distro LOSETUP ?= "/sbin/losetup"