summaryrefslogtreecommitdiffstats
path: root/meta-selftest
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-03-23 11:09:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-28 15:55:49 +0100
commitd6cb46cafdb9023556f5fbce32f0f8640cd5c7ce (patch)
tree44fa8f4298e001a3c1c181354ed8ecf41e2b8865 /meta-selftest
parent5cb7705d05fb56ce8c5b4d996254a64bdb1639a9 (diff)
downloadpoky-d6cb46cafdb9023556f5fbce32f0f8640cd5c7ce.tar.gz
image.bbclass: run wicenv task only for wic images
Currently do_wicenv task is run for all images. However, its result is used only to produce wic image. It's better to run this task only for wic images. If another rootfs is required to produce wic image, dependency to its do_wicenv must be added to the wic image recipy. Stopped running do_wicenv for all images. Added explicit dependency to this task in wic-image-minimal recipe. [YOCTO #9095] (From OE-Core rev: b81c176fb2f1ee818b6049c39ef353a7d7d5e078) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r--meta-selftest/recipes-test/images/wic-image-minimal.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-selftest/recipes-test/images/wic-image-minimal.bb b/meta-selftest/recipes-test/images/wic-image-minimal.bb
index 9c50ddbbf5..a294ba7af4 100644
--- a/meta-selftest/recipes-test/images/wic-image-minimal.bb
+++ b/meta-selftest/recipes-test/images/wic-image-minimal.bb
@@ -11,7 +11,7 @@ DEPENDS = "syslinux syslinux-native parted-native dosfstools-native mtools-nativ
11 11
12# core-image-minimal is referenced in .wks, so we need its rootfs 12# core-image-minimal is referenced in .wks, so we need its rootfs
13# to be ready before our rootfs 13# to be ready before our rootfs
14do_rootfs[depends] += "core-image-minimal:do_rootfs_wicenv" 14do_rootfs[depends] += "core-image-minimal:do_image core-image-minimal:do_rootfs_wicenv"
15 15
16IMAGE_ROOTFS_EXTRA_SPACE = "2000" 16IMAGE_ROOTFS_EXTRA_SPACE = "2000"
17 17