]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/Kconfig
kconfig: move CONFIG_CMD_GO to Kconfig
[karo-tx-uboot.git] / common / Kconfig
1 menu "Command line interface"
2         depends on !SPL_BUILD
3
4 config CMD_BOOTM
5         bool "Enable bootm command"
6         default y
7         help
8           Boot an application image from the memory.
9
10 config CMD_CRC32
11         bool "Enable crc32 command"
12         default y
13         help
14           Compute CRC32.
15
16 config CMD_EXPORTENV
17         bool "Enable env export command"
18         default y
19         help
20           Export environments.
21
22 config CMD_GO
23         bool "Enable go command"
24         default y
25         help
26           Start an application at a given address.
27
28 endmenu