aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-07-25 11:05:40 +0200
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-07-25 11:11:35 +0200
commit3e176daccae81616c04fe2e69de80a2e3e302f9e (patch)
treece363bbb27192143a1e2a55cd8e815a02d66c1e6
parentd3a41fbd94462efc8c6f1b55f6fb54001b447c45 (diff)
downloadopenembedded-core-contrib-paule/wic-pseudo.tar.gz
wic-tools: ensure pseudo is availablepaule/wic-pseudo
wic will attempt to use pseudo from the wic-tools sysroot to run, but it was only sure to be in there if do_install had executed - which is not the case if it had been restored from sstate, in which case it failed horribly as seen when running the wic.Wic.test_fs_types and test_mkfs_extraopts tests on the Yocto Project autobuilder recently. Add an explicit dependency on pseudo-native to ensure it's always there. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r--meta/recipes-core/meta/wic-tools.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/wic-tools.bb b/meta/recipes-core/meta/wic-tools.bb
index c416a2eab1..d908e48732 100644
--- a/meta/recipes-core/meta/wic-tools.bb
+++ b/meta/recipes-core/meta/wic-tools.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT"
DEPENDS = "\
parted-native syslinux-native gptfdisk-native dosfstools-native \
mtools-native bmap-tools-native grub-efi-native cdrtools-native \
- btrfs-tools-native squashfs-tools-native \
+ btrfs-tools-native squashfs-tools-native pseudo-native \
"
DEPENDS_append_x86 = " syslinux grub-efi systemd-boot"
DEPENDS_append_x86-64 = " syslinux grub-efi systemd-boot"