blob: c31c3a560edcd3adc096244422f0452dcfa219e4 (
plain)
1
2
3
4
5
6
7
|
# short-description: Create OTA-enabled SD card image
# long-description: Creates a partitioned SD card image with OSTree
# physical sysroot as a payload. Boot files are located in the
# first vfat partition.
part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4096 --size 20
part / --source otaimage --ondisk mmcblk --fstype=ext4 --label root --align 4096
|