mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

Update the plugin names to account for the "-" to "_" plugin name change. (From OE-Core rev: afa1b5c9f6ed17c021e37a54d0d6abee50a60bf9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 lines
364 B
Plaintext
7 lines
364 B
Plaintext
# short-description: Create SD card image with a boot partition
|
|
# long-description: Creates a partitioned SD card image. Boot files
|
|
# are located in the first vfat partition.
|
|
|
|
part /boot --source bootimg_partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4 --size 16
|
|
part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 4
|