From 78e268233dbc0fdb5c7b4cbc5f3d7a0464d403c0 Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Wed, 24 Apr 2024 18:36:24 -0400 Subject: wic: prevent boot FAT partition mounting under /boot Separate FAT boot partition holds SPL, SYSFW and U-boot images, while rootfs places kernel images and DTBs into /boot directory. So it is not desirable to mount boot FAT partition into /boot directory of the rootfs and shadow its original content - adjust corresponding entry in wic templates. While at it, remove unused ondisk parameter when using use-uuid, which takes precedence and is more flexible. Note: boot FAT partition will be automounted at /run/media/boot-mmcblk0p1/ Signed-off-by: Denys Dmytriyenko Reviewed-by: Jonathan Cormier Signed-off-by: Ryan Eatmon --- meta-ti-bsp/wic/sdimage-2part.wks | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-ti-bsp/wic/sdimage-2part.wks') diff --git a/meta-ti-bsp/wic/sdimage-2part.wks b/meta-ti-bsp/wic/sdimage-2part.wks index 3eab9407..5073176e 100644 --- a/meta-ti-bsp/wic/sdimage-2part.wks +++ b/meta-ti-bsp/wic/sdimage-2part.wks @@ -2,5 +2,5 @@ # long-description: Creates a partitioned SD card image for TI platforms. # Boot files are located in the first vfat partition with extra reserved space. -part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 1024 --fixed-size 128 --use-uuid -part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 1024 --use-uuid +part --source bootimg-partition --fstype=vfat --label boot --active --align 1024 --use-uuid --fixed-size 128M +part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid -- cgit v1.2.3-54-g00ecf