]> Git Repo - u-boot.git/blame - common/Kconfig
hush: add CONFIG_HUSH_PARSER to Kconfig
[u-boot.git] / common / Kconfig
CommitLineData
ed36323f
MY
1menu "Command line interface"
2 depends on !SPL_BUILD
3
6c775090
MY
4config 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
dba16970
MY
21config CMD_BOOTM
22 bool "Enable bootm command"
23 default y
24 help
25 Boot an application image from the memory.
26
ca05ee9d
MY
27config CMD_CRC32
28 bool "Enable crc32 command"
29 default y
30 help
31 Compute CRC32.
32
cccee189
MY
33config CMD_EXPORTENV
34 bool "Enable env export command"
35 default y
36 help
37 Export environments.
38
1d5c2015
MY
39config CMD_IMPORTENV
40 bool "Enable env import command"
41 default y
42 help
43 Import environments.
44
726ac8e4
MY
45config CMD_GO
46 bool "Enable go command"
47 default y
48 help
49 Start an application at a given address.
50
ed36323f 51endmenu
This page took 0.047686 seconds and 4 git commands to generate.