mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-01-12 01:20:20 +00:00
9 lines
580 B
Plaintext
9 lines
580 B
Plaintext
# 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
|