mirror of
https://github.com/lxsang/meta-rpi-diya.git
synced 2024-11-07 22:18:23 +01:00
8 lines
615 B
Plaintext
8 lines
615 B
Plaintext
|
# short-description: Create Raspberry Pi SD card image
|
||
|
# long-description: Creates a partitioned SD card image for use with
|
||
|
# Raspberry Pi. Boot files are located in the first vfat partition.
|
||
|
|
||
|
part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4096 --size 50
|
||
|
part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 4096 --size 150
|
||
|
part /home --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/home --ondisk mmcblk0 --fstype=ext4 --label home --align 1024 --size 16
|
||
|
# part /home --ondisk mmcblk0 --fstype=vfat --label music --active --align 1024 --size 16
|