- Ideally running `ls /boot/` in filesystem should list contents from
/rootfs/boot partition
but currently it lists the contents of /boot partition of the WIC Image.
Eg - Incase of AM64x,
```
root@am64xx-evm:~# ls /boot/
EFI Image tiboot3-am64x-gp-evm.bin tiboot3-am64x_sr2-hs-evm.bin
tiboot3-am64x_sr2-hs-fs-evm.bin tiboot3.bin tispl.bin u-boot.img uEnv.txt
```
- To fix this issue, add --no-fstab-update flag to WIC_CREATE_EXTRA_ARG in
arago-image.inc
to prevent WIC image from adding an additional entry in /etc/fstab.
Signed-off-by: Chirag Shilwant <[email protected]>
---
meta-arago-distro/recipes-core/images/arago-image.inc | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta-arago-distro/recipes-core/images/arago-image.inc
b/meta-arago-distro/recipes-core/images/arago-image.inc
index 00308b57..2a34a709 100644
--- a/meta-arago-distro/recipes-core/images/arago-image.inc
+++ b/meta-arago-distro/recipes-core/images/arago-image.inc
@@ -31,4 +31,6 @@ BAD_RECOMMENDATIONS += " \
"
BAD_RECOMMENDATIONS += "${@oe.utils.conditional("INIT_MANAGER", "sysvinit",
"", "busybox-syslog", d)}"
+WIC_CREATE_EXTRA_ARGS += " --no-fstab-update"
+
inherit core-image remove-net-rules
--
2.34.1
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#15298):
https://lists.yoctoproject.org/g/meta-arago/message/15298
Mute This Topic: https://lists.yoctoproject.org/mt/105635090/21656
Group Owner: [email protected]
Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-