]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/Kconfig
hush: add CONFIG_HUSH_PARSER to Kconfig
[karo-tx-uboot.git] / common / Kconfig
1 menu "Command line interface"
2         depends on !SPL_BUILD
3
4 config 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
16 config SYS_HUSH_PARSER
17         bool
18         help
19           Backward compatibility.
20
21 config CMD_BOOTM
22         bool "Enable bootm command"
23         default y
24         help
25           Boot an application image from the memory.
26
27 config CMD_CRC32
28         bool "Enable crc32 command"
29         default y
30         help
31           Compute CRC32.
32
33 config CMD_EXPORTENV
34         bool "Enable env export command"
35         default y
36         help
37           Export environments.
38
39 config CMD_IMPORTENV
40         bool "Enable env import command"
41         default y
42         help
43           Import environments.
44
45 config CMD_GO
46         bool "Enable go command"
47         default y
48         help
49           Start an application at a given address.
50
51 endmenu