summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-07-25 11:12:10 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-25 15:59:12 +0100
commit5abdc0d7289bce86b249b60d11746ff60cf91305 (patch)
tree46c3c94e31ee22add0859fecc8ff55716573ac48 /meta
parentc6ac6a827d18d0a37b2e0c85b31f491d159f216b (diff)
downloadpoky-5abdc0d7289bce86b249b60d11746ff60cf91305.tar.gz
wic-tools: ensure pseudo is available
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. (From OE-Core rev: ada7408a55ec58e4aa1b094462f8a681e60be613) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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"
5DEPENDS = "\ 5DEPENDS = "\
6 parted-native syslinux-native gptfdisk-native dosfstools-native \ 6 parted-native syslinux-native gptfdisk-native dosfstools-native \
7 mtools-native bmap-tools-native grub-efi-native cdrtools-native \ 7 mtools-native bmap-tools-native grub-efi-native cdrtools-native \
8 btrfs-tools-native squashfs-tools-native \ 8 btrfs-tools-native squashfs-tools-native pseudo-native \
9 " 9 "
10DEPENDS_append_x86 = " syslinux grub-efi systemd-boot" 10DEPENDS_append_x86 = " syslinux grub-efi systemd-boot"
11DEPENDS_append_x86-64 = " syslinux grub-efi systemd-boot" 11DEPENDS_append_x86-64 = " syslinux grub-efi systemd-boot"