1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-05-07 11:59:49 +00:00

wic: create SD card with 3 partitions for testing

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
Denys Dmytriyenko
2020-03-20 02:09:25 +00:00
parent 73f41c3f34
commit 7646efc16a
5 changed files with 12 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
# short-description: Create SD card image with 3 partitions
# long-description: Creates a partitioned SD card image for testing TI platforms.
# Boot files are located in the first vfat partition.
# Second ext4 partition is empty and is used for testing.
part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 1024 --size 100M --use-uuid
part test --ondisk mmcblk0 --fstype=ext4 --label test --align 1024 --size 1G --use-uuid
part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 1024 --extra-space 500M --use-uuid