* [PATCH v2] installer-add-rootfs: wait for full target image build via do_build
@ 2026-04-21 17:21 'Gourav Singh' via isar-users
2026-04-22 10:28 ` Zhihang Wei
0 siblings, 1 reply; 2+ messages in thread
From: 'Gourav Singh' via isar-users @ 2026-04-21 17:21 UTC (permalink / raw)
To: isar-users; +Cc: Gourav Singh
Previously, the installer depended only on do_image_<type>, which was
derived from IMAGE_DATA_POSTFIX (e.g. do_image_wic for wic.zst). This
created a hidden ordering assumption that the image type being installed
was also the last artifact to be built.
This assumption breaks silently when target images include additional
build steps that run after the wic image, such as swupdate (.swu)
generation. In that case, the installer would start before all artifacts
were ready, missing files like the .swu image entirely.
Replace the derived do_image_<type> dependency with do_build, which is
the natural synchronization point signaling that a recipe is fully done.
This guarantees the installer only starts after all target image
artifacts are produced, regardless of which features are enabled.
As a result, the get_image_type() helper function is no longer needed
and is removed.
Fixes: a7364ea ("installer-add-rootfs: build target image for image data postfix")
Signed-off-by: Gourav Singh <gouravsingh@siemens.com>
---
meta-isar/classes-recipe/installer-add-rootfs.bbclass | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/meta-isar/classes-recipe/installer-add-rootfs.bbclass b/meta-isar/classes-recipe/installer-add-rootfs.bbclass
index 69d87be8..111506df 100644
--- a/meta-isar/classes-recipe/installer-add-rootfs.bbclass
+++ b/meta-isar/classes-recipe/installer-add-rootfs.bbclass
@@ -56,10 +56,6 @@ def get_mc_depends(d, task):
deps.append(f"mc:{installer_mc}:{installer_target_mc}:{image}:{task}")
return " ".join(deps)
-def get_image_type(suffix):
- image_type = suffix.split(".")[0]
- return f"{image_type}"
-
python() {
entries = []
@@ -80,5 +76,5 @@ python() {
d.setVar("ROOTFS_ADDITIONAL_FILES", " ".join(entries))
}
-INSTALLER_TARGET_TASK ??="do_image_${@ get_image_type(d.getVar('IMAGE_DATA_POSTFIX'))}"
+INSTALLER_TARGET_TASK ??="do_build"
do_rootfs_install[mcdepends] += "${@ get_mc_depends(d, d.getVar('INSTALLER_TARGET_TASK'))}"
--
2.39.5
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/20260421172147.4077796-1-gouravsingh%40siemens.com.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH v2] installer-add-rootfs: wait for full target image build via do_build
2026-04-21 17:21 [PATCH v2] installer-add-rootfs: wait for full target image build via do_build 'Gourav Singh' via isar-users
@ 2026-04-22 10:28 ` Zhihang Wei
0 siblings, 0 replies; 2+ messages in thread
From: Zhihang Wei @ 2026-04-22 10:28 UTC (permalink / raw)
To: Gourav Singh, isar-users
Applied to next, thanks.
Zhihang
On 4/21/26 19:21, 'Gourav Singh' via isar-users wrote:
> Previously, the installer depended only on do_image_<type>, which was
> derived from IMAGE_DATA_POSTFIX (e.g. do_image_wic for wic.zst). This
> created a hidden ordering assumption that the image type being installed
> was also the last artifact to be built.
>
> This assumption breaks silently when target images include additional
> build steps that run after the wic image, such as swupdate (.swu)
> generation. In that case, the installer would start before all artifacts
> were ready, missing files like the .swu image entirely.
>
> Replace the derived do_image_<type> dependency with do_build, which is
> the natural synchronization point signaling that a recipe is fully done.
> This guarantees the installer only starts after all target image
> artifacts are produced, regardless of which features are enabled.
>
> As a result, the get_image_type() helper function is no longer needed
> and is removed.
>
> Fixes: a7364ea ("installer-add-rootfs: build target image for image data postfix")
>
> Signed-off-by: Gourav Singh <gouravsingh@siemens.com>
> ---
> meta-isar/classes-recipe/installer-add-rootfs.bbclass | 6 +-----
> 1 file changed, 1 insertion(+), 5 deletions(-)
>
> diff --git a/meta-isar/classes-recipe/installer-add-rootfs.bbclass b/meta-isar/classes-recipe/installer-add-rootfs.bbclass
> index 69d87be8..111506df 100644
> --- a/meta-isar/classes-recipe/installer-add-rootfs.bbclass
> +++ b/meta-isar/classes-recipe/installer-add-rootfs.bbclass
> @@ -56,10 +56,6 @@ def get_mc_depends(d, task):
> deps.append(f"mc:{installer_mc}:{installer_target_mc}:{image}:{task}")
> return " ".join(deps)
>
> -def get_image_type(suffix):
> - image_type = suffix.split(".")[0]
> - return f"{image_type}"
> -
> python() {
> entries = []
>
> @@ -80,5 +76,5 @@ python() {
> d.setVar("ROOTFS_ADDITIONAL_FILES", " ".join(entries))
> }
>
> -INSTALLER_TARGET_TASK ??="do_image_${@ get_image_type(d.getVar('IMAGE_DATA_POSTFIX'))}"
> +INSTALLER_TARGET_TASK ??="do_build"
> do_rootfs_install[mcdepends] += "${@ get_mc_depends(d, d.getVar('INSTALLER_TARGET_TASK'))}"
> --
> 2.39.5
>
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/12fb90b0-cd1a-429a-aac5-97111160b971%40ilbers.de.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-04-22 10:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-21 17:21 [PATCH v2] installer-add-rootfs: wait for full target image build via do_build 'Gourav Singh' via isar-users
2026-04-22 10:28 ` Zhihang Wei
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox