diff options
author | Theodore A. Roth <troth@openavr.org> | 2021-07-26 08:29:25 -0600 |
---|---|---|
committer | Yogesh Siraswar <yogeshs@ti.com> | 2021-07-27 18:16:41 +0000 |
commit | 951c222f2f4a87e2ba37ddfc45909fbfc5a553db (patch) | |
tree | 069865f178e194f17351ac470a45491ced4f6f37 /wic | |
parent | 1eae9060a55c20c15ba54738fc84a73f1038da06 (diff) | |
download | meta-ti-951c222f2f4a87e2ba37ddfc45909fbfc5a553db.tar.gz |
wic: Set a fixed size for boot partition in wic image
The beagleboneai is not loading the MLO without this change.
A similar change was needed in meta-yocto-bsp for the beaglebone black
due to the updating of dosfstools to 4.2 in Hardknott.
[Yocto #14306]
(See also meta-yocto rev: 0c679ac53b52e631a7c961872ce58f5cf74b8629)
Signed-off-by: Theodore A. Roth <troth@openavr.org>
Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
Diffstat (limited to 'wic')
-rw-r--r-- | wic/sdimage-2part.wks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wic/sdimage-2part.wks b/wic/sdimage-2part.wks index 77d6f7b5..3eab9407 100644 --- a/wic/sdimage-2part.wks +++ b/wic/sdimage-2part.wks | |||
@@ -2,5 +2,5 @@ | |||
2 | # long-description: Creates a partitioned SD card image for TI platforms. | 2 | # long-description: Creates a partitioned SD card image for TI platforms. |
3 | # Boot files are located in the first vfat partition with extra reserved space. | 3 | # Boot files are located in the first vfat partition with extra reserved space. |
4 | 4 | ||
5 | part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 1024 --extra-space 100M --use-uuid | 5 | part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 1024 --fixed-size 128 --use-uuid |
6 | part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 1024 --use-uuid | 6 | part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 1024 --use-uuid |