mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

(From meta-yocto rev: 476f2fd598c12bfee7d2aeddbe72a360826f249c) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
8 lines
467 B
Plaintext
8 lines
467 B
Plaintext
# short-description: Create SD card image for Beaglebone
|
|
# long-description: Creates a partitioned SD card image for Beaglebone.
|
|
# 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 --sourceparams="loader=u-boot" --use-uuid
|
|
part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4 --use-uuid
|
|
bootloader --append="console=ttyS0,115200"
|