summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2017-07-07 18:03:45 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-17 14:01:37 +0100
commitb15df41d7d6074e76fea8d1c4f1d12273b46f1a3 (patch)
treebbe78ee1566f85142c1d92b2f1d768e511239ad3 /meta
parenteeef9c2202a0adb6266977dab292701880afe72b (diff)
downloadpoky-b15df41d7d6074e76fea8d1c4f1d12273b46f1a3.tar.gz
image_types: fix squashfs-lzo and squashfs-xz builds
Dependencies required for squashfs-lzo and squashfs-xz image builds were assigned to do_image_squashfs-lzo and do_image_squashfs-xz. As these tasks don't exist the dependencies were not installed and builds were failing. Correct task names for these image types are: do_image_squashfs_lzo and do_image_squashfs_xz because '-' and '.' are replaced by '_' in all do_image* task names. [YOCTO #11760] (From OE-Core rev: 1f8fc803262cdcc26dabc28af70bf0fdaf2e5847) Signed-off-by: Ed Bartosh <ed.bartosh@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/classes/image_types.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index d04bb08dcc..8f8d79cd3d 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -233,8 +233,8 @@ do_image_ext3[depends] += "e2fsprogs-native:do_populate_sysroot"
233do_image_ext4[depends] += "e2fsprogs-native:do_populate_sysroot" 233do_image_ext4[depends] += "e2fsprogs-native:do_populate_sysroot"
234do_image_btrfs[depends] += "btrfs-tools-native:do_populate_sysroot" 234do_image_btrfs[depends] += "btrfs-tools-native:do_populate_sysroot"
235do_image_squashfs[depends] += "squashfs-tools-native:do_populate_sysroot" 235do_image_squashfs[depends] += "squashfs-tools-native:do_populate_sysroot"
236do_image_squashfs-xz[depends] += "squashfs-tools-native:do_populate_sysroot" 236do_image_squashfs_xz[depends] += "squashfs-tools-native:do_populate_sysroot"
237do_image_squashfs-lzo[depends] += "squashfs-tools-native:do_populate_sysroot" 237do_image_squashfs_lzo[depends] += "squashfs-tools-native:do_populate_sysroot"
238do_image_elf[depends] += "virtual/kernel:do_populate_sysroot mkelfimage-native:do_populate_sysroot" 238do_image_elf[depends] += "virtual/kernel:do_populate_sysroot mkelfimage-native:do_populate_sysroot"
239do_image_ubi[depends] += "mtd-utils-native:do_populate_sysroot" 239do_image_ubi[depends] += "mtd-utils-native:do_populate_sysroot"
240do_image_ubifs[depends] += "mtd-utils-native:do_populate_sysroot" 240do_image_ubifs[depends] += "mtd-utils-native:do_populate_sysroot"