diff options
Diffstat (limited to 'wic')
-rw-r--r-- | wic/sdimage-2part.wks | 6 | ||||
-rw-r--r-- | wic/sdimage-3part.wks | 8 |
2 files changed, 6 insertions, 8 deletions
diff --git a/wic/sdimage-2part.wks b/wic/sdimage-2part.wks new file mode 100644 index 00000000..77d6f7b5 --- /dev/null +++ b/wic/sdimage-2part.wks | |||
@@ -0,0 +1,6 @@ | |||
1 | # short-description: Create SD card image with 2 partitions | ||
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. | ||
4 | |||
5 | part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 1024 --extra-space 100M --use-uuid | ||
6 | part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 1024 --use-uuid | ||
diff --git a/wic/sdimage-3part.wks b/wic/sdimage-3part.wks deleted file mode 100644 index 86aeb1cc..00000000 --- a/wic/sdimage-3part.wks +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | # short-description: Create SD card image with 3 partitions | ||
2 | # long-description: Creates a partitioned SD card image for testing TI platforms. | ||
3 | # Boot files are located in the first vfat partition. | ||
4 | # Second ext4 partition is empty and is used for testing. | ||
5 | |||
6 | part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 1024 --size 100M --use-uuid | ||
7 | part test --ondisk mmcblk0 --fstype=ext4 --label test --align 1024 --size 1G --use-uuid | ||
8 | part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 1024 --extra-space 500M --use-uuid | ||