blob: 7a28fb23dc8986d33d115b9830856e6280ed9347 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001# short-description: Create SD card image for Beaglebone
2# long-description: Creates a partitioned SD card image for Beaglebone.
3# Boot files are located in the first vfat partition.
4
Andrew Geissler95ac1b82021-03-31 14:34:31 -05005part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4 --fixed-size 32 --sourceparams="loader=u-boot" --use-uuid
Andrew Geisslerd1e89492021-02-12 15:35:20 -06006part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 4 --use-uuid
Brad Bishop19323692019-04-05 15:28:33 -04007bootloader --append="console=ttyS0,115200"