U-Boot features: Difference between revisions

From Variscite Wiki
(Added "DART board features previously missing")
("DART board" -> "DART-MX6 SOM")
Line 27: Line 27:
To mount the eMMC (most useful):<br>
To mount the eMMC (most useful):<br>
<pre>
<pre>
If you are booting from eMMC on a DART board:
If you are booting from eMMC on a DART-MX6 SOM:


=> ums 0 mmc 0
=> ums 0 mmc 0
Line 37: Line 37:
To mount an SD card:<br>
To mount an SD card:<br>
<pre>
<pre>
If you are booting from eMMC on a DART board:
If you are booting from eMMC on a DART-MX6 SOM:


=> ums 0 mmc 1
=> ums 0 mmc 1
Line 75: Line 75:
Otherwise, it will try to mount the rootfs from NAND.
Otherwise, it will try to mount the rootfs from NAND.


== DART board features previously missing ==
== DART-MX6 features previously missing ==
* U-Boot now supports both SD card and eMMC at the same time, also on DART boards, regardless of where you boot from.<br>
* U-Boot now supports both SD card and eMMC at the same time, also on DART-MX6 SOMs, regardless of where you boot from.<br>
:On DART boards, the device you boot from is always mmc 0, and the other is mmc 1.
:On DART-MX6 SOMs, the device you boot from is always mmc 0, and the other is mmc 1.
* U-Boot now supports USB also on DART boards.
* U-Boot now supports USB also on DART-MX6 SOMs.

Revision as of 12:42, 16 March 2016

Following are some of the new features introduced in Variscite U-Boot 2015.04:

Splash Screen

A splash screen is enabled by default on a connected LCD.
To disable the splash screen, stop the boot at u-boot command prompt and enter:

=> run disable_splash
=> saveenv

And to re-enable it:

=> run enable_splash
=> saveenv

If you build the rootfs from Yocto, you'll see a splash of the Variscite logo.
If you want to use your own splash instead, just replace the file /boot/splash.bmp in the root file system.

USB Mass Storage gadget

You can use the board as a USB Mass Storage device by connecting a USB cable between the OTG/Client port on the board and a host PC, and using U-Boot's ums command.
ums usage is:

ums <USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0
    devtype defaults to mmc

devtype can be any block device (e.g. mmc, usb)

To mount the eMMC (most useful):

If you are booting from eMMC on a DART-MX6 SOM:

=> ums 0 mmc 0

Otherwise:

=> ums 0 mmc 1

To mount an SD card:

If you are booting from eMMC on a DART-MX6 SOM:

=> ums 0 mmc 1

Otherwise:

=> ums 0 mmc 0

To mount a USB device connected to the USB Host port (least useful):

=> usb start
=> ums 0 usb 0

Once you've done that, the chosen block device will be mounted as a USB Mass Storage device on your PC and you can play with it however you like.
This is especially useful for updating the internal eMMC.
To exit the ums command press ctrl+c.
Note: It is recommended to use a Linux PC host as Windows can't naturally read ext file systems.

HDMI auto-detection

If an HDMI screen is connected to the board, it will auto-detect it on boot and use it as its display.
No need to manually change anything.

USB mode on VAR-MX6CustomBoard

USB port 0 on VAR-MX6CustomBoard is not a fully native OTG - it supports either Client or Host mode.
In U-Boot it is set to Client mode by default, and you can change it to Host mode by setting the following environment variable:

=> setenv usbmode host

Note that you can change it back and forth in real time when using this USB port in U-Boot, but pay attention that you are using the USB port correctly, according to the mode you set it to.

Choosing Root File System location when booting from NAND

If you use our NAND Flash recovery rescue SD card ver. 50 and above to flash Yocto, the chosen rootfs will be updated automatically to the location that you install the rootfs to - no need to manually change the environment.
If you want to choose manually anyway, you can set the location of the rootfs to be mounted at boot to eMMC, by setting the following environment variable:

=> setenv chosen_rootfs emmc

Otherwise, it will try to mount the rootfs from NAND.

DART-MX6 features previously missing

  • U-Boot now supports both SD card and eMMC at the same time, also on DART-MX6 SOMs, regardless of where you boot from.
On DART-MX6 SOMs, the device you boot from is always mmc 0, and the other is mmc 1.
  • U-Boot now supports USB also on DART-MX6 SOMs.