blob: 7f8359d691c027f09149dd0cf4209223844f086a [file] [log] [blame]
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09001menu "Command line interface"
2 depends on !SPL_BUILD
3
Masahiro Yamada2321bb02014-11-13 19:29:07 +09004config HUSH_PARSER
5 bool "Use hush shell"
6 select SYS_HUSH_PARSER
7 help
8 This option enables the "hush" shell (from Busybox) as command line
9 interpreter, thus enabling powerful command line syntax like
10 if...then...else...fi conditionals or `&&' and '||'
11 constructs ("shell scripts").
12
13 If disabled, you get the old, much simpler behaviour with a somewhat
14 smaller memory footprint.
15
16config SYS_HUSH_PARSER
17 bool
18 help
19 Backward compatibility.
20
Masahiro Yamada4772cf22014-09-16 16:33:00 +090021config CMD_BOOTM
22 bool "Enable bootm command"
23 default y
24 help
25 Boot an application image from the memory.
26
Masahiro Yamadafaecb262014-09-16 16:33:01 +090027config CMD_CRC32
28 bool "Enable crc32 command"
29 default y
30 help
31 Compute CRC32.
32
Masahiro Yamadaaa07dcb2014-09-16 16:33:02 +090033config CMD_EXPORTENV
34 bool "Enable env export command"
35 default y
36 help
37 Export environments.
38
Masahiro Yamadaa1d20132014-09-16 16:33:04 +090039config CMD_IMPORTENV
40 bool "Enable env import command"
41 default y
42 help
43 Import environments.
44
Masahiro Yamada5c199472014-09-16 16:33:03 +090045config CMD_GO
46 bool "Enable go command"
47 default y
48 help
49 Start an application at a given address.
50
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +090051endmenu