@@ -96,5 +96,10 @@ These tends to change betweeen soc and u-boot versions. Best is to just use what
```
this will generate a directory with the following binaries
*`u-boot.bin`: binary to flash on the emmc or the spi:
* emmc: remember skip the first sector: `mmc write $fileaddr 1 $bin_block_num`. You may choose to write the u-boot on the boot partitions of the eMMC. The boot order is `user` -> `boot 0` -> `boot 1`.
* emmc: remember skip the first sector:
```shell
mmc dev 1 1
mmc write $fileaddr 1 $bin_block_num
```
You may choose to write the u-boot on the boot partitions of the eMMC. The boot order is `user` -> `boot 0` -> `boot 1`.
*`u-boot.bin.sd.bin` : **NO YET TESTED** Binary to boot from an sdcard: remember to leave room for the MBR : [write-u-boot.sh](uploads/0b4d640b26473a2783751482d1e311e8/write-u-boot.sh)