mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:59:03 +02:00

Wic supports picking up image files from toplevel LAYERDIR/wic directory. Using this location has the benefit that image files are easier to find (compare that to previously used scripts/lib/image/canned-wks/ location). Signed-off-by: Maciej Borzecki <maciej.borzecki@rndity.com>
7 lines
385 B
Plaintext
7 lines
385 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 mmcblk --fstype=vfat --label boot --active --align 4096 --size 20
|
|
part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096
|