mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
u-boot.bin is considered a fallback if nothing else is found. update the packaging also so that u-boot is meta package including all boot loaders
22 lines
659 B
Plaintext
22 lines
659 B
Plaintext
WandBoard
|
|
---------
|
|
|
|
- ROM loads boot loader from raw MMC sectors at fixed address
|
|
- NOTE: 1st partition needs to start after boot loader
|
|
|
|
- Install u-boot with (pick the command for your board type):
|
|
dd if=wandboard_solo/u-boot.imx of=/dev/mmcblk0 seek=1 conv=fsync bs=1k
|
|
dd if=wandboard_dl/u-boot.imx of=/dev/mmcblk0 seek=1 conv=fsync bs=1k
|
|
dd if=wandboard_quad/u-boot.imx of=/dev/mmcblk0 seek=1 conv=fsync bs=1k
|
|
|
|
|
|
BeagleBoard
|
|
-----------
|
|
|
|
- ROM looks for 1st partition with FAT, and loads MLO from it
|
|
- NOTE: MLO needs to be the first file created on this partition
|
|
|
|
- Install u-boot with:
|
|
cp am335x_boneblack/{MLO,u-boot.img} /media/mmcblk0p1/
|
|
|