You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building my image with pi-gen as a submodule and so I configured WORK_DIR=${BASE_DIR}/../../build/pi-ing/work, and I've noticed that this breaks the command that should find the loopback device, because the mount table is of course absolute:
I would propose to add $(realpath ${POTENTIALLY_RELATIVE_PATH}) where ever necessary (eg my problem was fixed when applying this to the ROOTFS_DIR definition in build.sh).
Regards,
Till
The text was updated successfully, but these errors were encountered:
Hey all!
I'm building my image with
pi-gen
as a submodule and so I configuredWORK_DIR=${BASE_DIR}/../../build/pi-ing/work
, and I've noticed that this breaks the command that should find the loopback device, because themount
table is of course absolute:pi-gen/export-image/05-finalise/01-run.sh
Lines 86 to 96 in 01d24ef
I would propose to add
$(realpath ${POTENTIALLY_RELATIVE_PATH})
where ever necessary (eg my problem was fixed when applying this to the ROOTFS_DIR definition inbuild.sh
).Regards,
Till
The text was updated successfully, but these errors were encountered: