Autobooting Linux from U-Boot Print


The Linux autoboot sequence in U-Boot is controlled by the two environment variables called bootdelay and bootcmd.

The bootdelay variable defines a delay, in seconds, before running the autoboot command defined by bootcmd. During the bootdelay countdown, you can interrupt the autobooting by pressing any key. This will let you enter the U-Boot command line interface.

The bootcmd variable defines a command executed by U-Boot automatically after the bootdelay countdown is over. Typically, this would be run netboot to boot Linux from TFTP during development or run nandboot to boot Linux from the NAND Flash on deployed units. The latter is how bootcmd is set on the modules at the factory.

In deployed configurations, where boot time to the service provided by your embedded device is critical, you will probably want to set bootdelay to 0:

SLX-SOM U-Boot > setenv bootdelay 0
SLX-SOM U-Boot > saveenv
Saving Environment to NAND...
Erasing redundant NAND...
Erasing at 0x240000 -- 100% complete.
Writing to redundant NAND... OK
SLX-SOM U-Boot >

This will make sure that on each power on / reset U-Boot immediately executes the command defined by bootcmd, typically booting Linux from the on-module Flash.

With bootdelay set to 0 the U-Boot countdown is disabled, so there is a question how you enter the U-Boot command monitor, should you need that for some reason. To do so, push the Ctrl-C keys down on the serial console and don't release them until you have hit the reset button on the baseboard. This will interrupt the U-Boot bootcmd sequence and let you enter the U-Boot command monitor:

U-Boot 2015.04-imx6sx-2.3.0 (Jan 25 2017 - 17:25:40)
...
Hit any key to stop autoboot: 0
SLX-SOM U-Boot > <INTERRUPT>

From the command monitor, you would be able to reset bootdelay to 3 or whatever value makes sense to you.