Template:ArticleMainWriter Template:ArticleApprovedVersion
This page explains how to use the U-Boot command "ums" to update an SD card or eMMC on the device.
1. ums command[edit | edit source]
In U-Boot, you can directly export the available block devices (sd/mmc/usb) as USB mass storage devices with ums command:
Template:Board$ help ums ums - Use the UMS [USB Mass Storage] Usage: ums <USB_controller> [<devtype>] <dev[:part]> e.g. ums 0 mmc 0 devtype defaults to mmc
This U-Boot command "ums" is infinite (a loop in USB treatments), and the U-Boot console is blocked until user enters a Ctrl-C.
2. Exporting a block device[edit | edit source]
On ST boards, the OTG USB controller device index is 0, SD card = "mmc 0" and, when available, eMMC = "mmc 1".
You can check the device connected on an SDMMC with the U-Boot command "mmc info".
You can also export a USB device connected to the USB host controller (USBH) = "usb 0".
Then execute one of the following commands:
Template:Highlight Template:Board$ ums 0 mmc 0 Template:Highlight Ctrl-C
Template:Highlight Template:Board$ ums 0 mmc 1 Template:Highlight Ctrl-C
Template:Highlight Template:Board$ usb start Template:Highlight Template:Board$ ums 0 usb 0 Template:Highlight Ctrl-C Template:Board$ usb stop Template:Highlight
After a delay (of up to 15 seconds), the host sees the exported block device and you can use any command on the PC to access the partitions of the exported memory (dd, mount, cp, rsync). A Ctrl-C is needed to stop the command.
See also How to update U-Boot on an SD card.