| Message ID | 20260508085053.29282-1-marcus.flyckt@kvaser.com |
|---|---|
| State | New |
| Headers | show |
| Series | initramfs-framework: overlayroot: Don't assume rootfs location | expand |
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/overlayroot b/meta/recipes-core/initrdscripts/initramfs-framework/overlayroot index 0d41432878..dacbcbe213 100644 --- a/meta/recipes-core/initrdscripts/initramfs-framework/overlayroot +++ b/meta/recipes-core/initrdscripts/initramfs-framework/overlayroot @@ -37,8 +37,7 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin -# We get OLDROOT from the rootfs module -OLDROOT="/rootfs" +OLDROOT="${ROOTFS_DIR}" NEWROOT="${RWMOUNT}/root" RWMOUNT="/overlay"
Instead of assuming that the old rootfs is located at /rootfs, use the ROOTFS_DIR variable. This makes it possible to change rootfs location between the rootfs module and the overlayroot module. Signed-off-by: Marcus Flyckt <marcus.flyckt@kvaser.com> --- .../recipes-core/initrdscripts/initramfs-framework/overlayroot | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)