diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-09-10 11:35:09 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-21 15:20:07 +0100 |
commit | 776b9572543db7203f8c44e06b838391209badc4 (patch) | |
tree | fa38ad4837afe7e22a14b7a611a003efbbe7d4a7 | |
parent | 78f5c3cb3971c31a950deb5cab8992f3ba577440 (diff) | |
download | openembedded-core-776b9572543db7203f8c44e06b838391209badc4.tar.gz openembedded-core-776b9572543db7203f8c44e06b838391209badc4.tar.bz2 openembedded-core-776b9572543db7203f8c44e06b838391209badc4.zip |
wic: add dependencies to wic-image-minimal recipe
Added "DEPENDS =" line to the recipe to ensure that all tools required
for image creation are built.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
-rw-r--r-- | meta-selftest/recipes-test/images/wic-image-minimal.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/images/wic-image-minimal.bb b/meta-selftest/recipes-test/images/wic-image-minimal.bb index 073c569fe2..69236c49c0 100644 --- a/meta-selftest/recipes-test/images/wic-image-minimal.bb +++ b/meta-selftest/recipes-test/images/wic-image-minimal.bb @@ -5,6 +5,8 @@ IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP}" IMAGE_FSTYPES = "wic.bz2" RM_OLD_IMAGE = "1" +DEPENDS = "syslinux syslinux-native parted-native dosfstools-native mtools-native" + # core-image-minimal is referenced in .wks, so we need its rootfs # to be ready before our rootfs do_rootfs[depends] += "core-image-minimal:do_rootfs" |