7 lines
383 B
Plaintext
7 lines
383 B
Plaintext
# short-description: Create OTA-enabled SD card image
|
|
# long-description: Creates a partitioned SD card image with OSTree
|
|
|
|
part SPL --source rawcopy --sourceparams="file=MLO" --ondisk mmcblk --no-table --align 128
|
|
part u-boot --source rawcopy --sourceparams="file=u-boot.img" --ondisk mmcblk --no-table --align 384
|
|
part / --source otaimage --ondisk mmcblk --fstype=ext4 --align 4096
|