From 4984d5ac7fc8f1f40829e571ffdcce47c2e25ddb Mon Sep 17 00:00:00 2001 From: Tobias Waldekranz Date: Sun, 1 Mar 2026 18:27:29 +0000 Subject: [PATCH] image: Allow images to contribute files to the rootfs This makes it possible to ship differing system files depending on the images being built. E.g. an ITB image might expect a different /etc/fstab than a DDI. --- board/common/image/ix-image.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/board/common/image/ix-image.mk b/board/common/image/ix-image.mk index ba23dcd8..80a6bb86 100644 --- a/board/common/image/ix-image.mk +++ b/board/common/image/ix-image.mk @@ -20,6 +20,7 @@ $(1): $$($(2)_DEPENDENCIES) ifeq ($$($(2)),y) TARGETS_ROOTFS += $(1) +BR2_ROOTFS_OVERLAY := "$$(realpath $$(pkgdir)/rootfs) $$(call qstrip,$$(BR2_ROOTFS_OVERLAY))" endif endef