blob: 89ef56be98f926f81563df20998d5969f48c240c (
plain)
1
2
3
4
5
6
7
8
|
# short-description: Create a Phytec AM335x disk image (SD card)
# long-description: Creates a partitioned disk image for Phytec AM335x BSPs
# boards that the user can directly dd to an SD card and boot.
part /boot --source bootimg-partition --fstype=vfat --label boot --ondisk mmc --active --align 4096 --size 20
part / --source rootfs --fstype=ext2 --label root --ondisk mmc --align 1024 --use-uuid
bootloader --timeout=0
|