deleted>Frq08988 mNo edit summary |
Registered User mNo edit summary |
||
Line 1: | Line 1: | ||
<noinclude> | <noinclude> | ||
{{ArticleApprovedVersion | PatrickD | PatriceC | No previous approved version | PhilipS - 05Nov'18 | 5Nov'18}} | {{ArticleApprovedVersion | PatrickD | PatriceC | No previous approved version | PhilipS - 05Nov'18 | 5Nov'18}} | ||
[[Category:How to populate boards]] | |||
[[Category: | |||
</noinclude> | </noinclude> | ||
Revision as of 11:30, 20 March 2019
Template:ArticleApprovedVersion
This page explains how to manually update the U-Boot binaries on an SD Card.
1. Copying a binary to an SD card with the Linux dd command[edit source]
When you have access to the device (with the card reader of a PC, or the UMS command on a target), the 3 first partitions on the SDCard are:
- FSBL1
- FSBL2
- SSBL
See Boot_chains_overview, for the bootloader definitions.
You can use the Linux dd command to copy the FSBL and SSBL directly to the correct partition:
Template:PC$ dd if=<file> of=/dev/<dev> conv=fdatasync
<dev> is:
- mmcblk<X>p<n> : PC-embedded card reader case
- sd<X><N> : USB-connected SD card reader case
where <X> is the ID of the device, and <n> the ID of the partition.
Note: the dd option conv=fdatasync is used to force synchronous copying.
2. Trusted boot chain update example[edit source]
The internal card reader is /dev/mmcblk0, partition <n> is /dev/mmcblk0p<n>:
Template:PC$ dd if=tf-a.stm32 of=/dev/mmcblk0p1 conv=fdatasync Template:PC$ dd if=tf-a.stm32 of=/dev/mmcblk0p2 conv=fdatasync Template:PC$ dd if=u-boot.stm32 of=/dev/mmcblk0p3 conv=fdatasync
3. Basic boot chain udpate example[edit source]
The USB card reader is /dev/sdb, partition <n> is /dev/sdb<n>
Template:PC$ dd if=u-boot-spl.stm32 of=/dev/sdb1 conv=fdatasync Template:PC$ dd if=u-boot-spl.stm32 of=/dev/sdb2 conv=fdatasync Template:PC$ dd if=u-boot.img of=/dev/sdb3 conv=fdatasync