Difference between revisions of "U-Boot: Quick reference"
(One intermediate revision by one other user not shown) | |||
Line 74: | Line 74: | ||
* {{cmd|nandecc}} - switch OMAP3 NAND ECC calculation algorithm | * {{cmd|nandecc}} - switch OMAP3 NAND ECC calculation algorithm | ||
* {{cmd|nboot}} - boot from NAND device | * {{cmd|nboot}} - boot from NAND device | ||
+ | |||
+ | == EEPROM support == | ||
+ | * {{cmd|eeprom}} - EEPROM sub-system control | ||
== Partition commands == | == Partition commands == | ||
Line 99: | Line 102: | ||
== Bitmap support == | == Bitmap support == | ||
* {{cmd|bmp}} - manipulate BMP image data | * {{cmd|bmp}} - manipulate BMP image data | ||
+ | |||
+ | == GPIO support == | ||
+ | * {{cmd|gpio}} - manipulate gpios | ||
== Miscellaneous commands == | == Miscellaneous commands == |
Latest revision as of 12:00, 26 October 2017
This page provides quick U-Boot command reference. Please refer to the U-Boot project documentation for detailed descriptions of the features listed below. To get more information about a specific command, type help [command] in the U-Boot command line.
The actual command list depends on the U-Boot version, and the board configuration it was built for. |
Contents
- 1 Information commands
- 2 Memory commands
- 3 Flash memory commands
- 4 Image commands
- 5 Execution control commands
- 6 Download commands
- 7 Environment variables commands
- 8 File system support commands
- 9 NAND flash support
- 10 EEPROM support
- 11 Partition commands
- 12 FDT support
- 13 MMC support
- 14 I2C support
- 15 USB support
- 16 Cache support
- 17 Bitmap support
- 18 GPIO support
- 19 Miscellaneous commands
Information commands
- bdinfo - print Board Info structure
- coninfo - print console devices and information
- flinfo - print FLASH memory information
- help - print online help
Memory commands
- base - print or set address offset
- crc32 - checksum calculation
- cmp - memory compare
- cp - memory copy
- md - memory display
- mm - memory modify (auto incrementing)
- mtest - simple RAM test
- mw - memory write (fill)
- nm - memory modify (constant address)
- loop - infinite loop on address range
Flash memory commands
- cp - memory copy
- flinfo - print FLASH memory information
- erase - erase FLASH memory
- protect - enable or disable FLASH write protection
Image commands
- iminfo - print header information for application image
- imxtract - extract a part of a multi-image
Execution control commands
- autoscr - run script from memory
- source - run script from memory
- bootm - boot application image from memory
- go - start application at address 'addr'
- loop - infinite loop on address range
- exit - exit script
Download commands
- bootp - boot image via network using BOOTP/TFTP protocol
- dhcp - invoke DHCP client to obtain IP/boot params
- loadb - load binary file over serial line (kermit mode)
- loady - load binary file over serial line (ymodem mode)
- loads - load S?Record file over serial line
- rarpboot - boot image via network using RARP/TFTP protocol
- tftpboot - boot image via network using TFTP protocol
- nfs - boot image via network using NFS protocol
- ping - send ICMP ECHO REQUEST to network host
Environment variables commands
- env - environment handling commands
- editenv - edit environment variable
- printenv - print environment variables
- saveenv - save environment variables to persistent storage
- setenv - set environment variables
- run - run commands in an environment variable
- bootd - boot default, i.e., run 'bootcmd'
- boot - boot default, i.e., run 'bootcmd'
File system support commands
- fatinfo - print information about a FAT file system
- fatload - load binary file from a FAT file system
- fatls - list files in a FAT file system directory (default /)
- ext2load - load binary file from a Ext2 filesystem
- ext2ls - list files in a directory (default /)
- fsinfo - print information about JFFS2 file system
- fsload - load binary file from a JFFS2 file system image
- ls - list files in a JFFS2 file system directory (default /)
NAND flash support
- nand - NAND sub-system control
- nandecc - switch OMAP3 NAND ECC calculation algorithm
- nboot - boot from NAND device
EEPROM support
- eeprom - EEPROM sub-system control
Partition commands
- mtdparts - define flash/nand partitions
- chpart - change active partition
FDT support
- fdt - flattened device tree utility commands
MMC support
- mmc - MMC sub system
- mmcinfo - display MMC information
I2C support
- i2c - I2C sub-system control
USB support
- usb - USB sub-system control
- usbboot - boot from USB device
Cache support
- icache - enable or disable instruction cache
- dcache - enable or disable data cache
Bitmap support
- bmp - manipulate BMP image data
GPIO support
- gpio - manipulate gpios
Miscellaneous commands
- echo - echo arguments to console
- reset - Perform RESET of the CPU
- sleep - delay execution for some time
- version - print monitor version
- test - minimal test, like /bin/bash
- ? - alias for help
- showvar - print local hushshell variables
- true - do nothing, successfully
- false - do nothing, unsuccessfully
- cls - clear screen
- itest - return true/false on integer compare