Patrick Williams | 8b8bc41 | 2016-08-17 15:02:23 -0500 | [diff] [blame] | 1 | # short-description: Create Raspberry Pi SD card image |
| 2 | # long-description: Creates a partitioned SD card image for use with |
| 3 | # Raspberry Pi. Boot files are located in the first vfat partition. |
| 4 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 5 | part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4096 --size 20 |
| 6 | part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 4096 |