mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
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>
19 lines
543 B
BlitzBasic
19 lines
543 B
BlitzBasic
SUMMARY = "An example of partitioned image."
|
|
|
|
SRC_URI = "file://${FILE_DIRNAME}/${BPN}.wks"
|
|
|
|
IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP}"
|
|
|
|
IMAGE_FSTYPES = "wic"
|
|
RM_OLD_IMAGE = "1"
|
|
|
|
DEPENDS = "syslinux syslinux-native parted-native dosfstools-native mtools-native gptfdisk-native"
|
|
|
|
# core-image-minimal is referenced in .wks, so we need its rootfs
|
|
# to be ready before our rootfs
|
|
do_rootfs[depends] += "core-image-minimal:do_image core-image-minimal:do_rootfs_wicenv"
|
|
|
|
IMAGE_ROOTFS_EXTRA_SPACE = "2000"
|
|
|
|
inherit image
|