diff options
-rw-r--r-- | meta-selftest/recipes-test/images/wic-image-minimal.bb | 2 | ||||
-rw-r--r-- | meta/classes/image.bbclass | 2 |
2 files changed, 2 insertions, 2 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 |
14 | do_rootfs[depends] += "core-image-minimal:do_rootfs_wicenv" | 14 | do_rootfs[depends] += "core-image-minimal:do_image core-image-minimal:do_rootfs_wicenv" |
15 | 15 | ||
16 | IMAGE_ROOTFS_EXTRA_SPACE = "2000" | 16 | IMAGE_ROOTFS_EXTRA_SPACE = "2000" |
17 | 17 | ||
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 0249f77bcf..62ff07e2e7 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -275,7 +275,7 @@ python do_rootfs_wicenv () { | |||
275 | if value: | 275 | if value: |
276 | envf.write('%s="%s"\n' % (var, value.strip())) | 276 | envf.write('%s="%s"\n' % (var, value.strip())) |
277 | } | 277 | } |
278 | addtask do_rootfs_wicenv after do_image before do_image_wic do_image_complete | 278 | addtask do_rootfs_wicenv after do_image before do_image_wic |
279 | do_rootfs_wicenv[vardeps] += "${WICVARS}" | 279 | do_rootfs_wicenv[vardeps] += "${WICVARS}" |
280 | do_rootfs_wicenv[prefuncs] = 'set_image_size' | 280 | do_rootfs_wicenv[prefuncs] = 'set_image_size' |
281 | 281 | ||