Masahiro Yamada | f3e12b7 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 1 | menu "Command line interface" |
| 2 | depends on !SPL_BUILD |
| 3 | |
Masahiro Yamada | 2321bb0 | 2014-11-13 19:29:07 +0900 | [diff] [blame^] | 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 | |
Masahiro Yamada | 4772cf2 | 2014-09-16 16:33:00 +0900 | [diff] [blame] | 21 | config CMD_BOOTM |
| 22 | bool "Enable bootm command" |
| 23 | default y |
| 24 | help |
| 25 | Boot an application image from the memory. |
| 26 | |
Masahiro Yamada | faecb26 | 2014-09-16 16:33:01 +0900 | [diff] [blame] | 27 | config CMD_CRC32 |
| 28 | bool "Enable crc32 command" |
| 29 | default y |
| 30 | help |
| 31 | Compute CRC32. |
| 32 | |
Masahiro Yamada | aa07dcb | 2014-09-16 16:33:02 +0900 | [diff] [blame] | 33 | config CMD_EXPORTENV |
| 34 | bool "Enable env export command" |
| 35 | default y |
| 36 | help |
| 37 | Export environments. |
| 38 | |
Masahiro Yamada | a1d2013 | 2014-09-16 16:33:04 +0900 | [diff] [blame] | 39 | config CMD_IMPORTENV |
| 40 | bool "Enable env import command" |
| 41 | default y |
| 42 | help |
| 43 | Import environments. |
| 44 | |
Masahiro Yamada | 5c19947 | 2014-09-16 16:33:03 +0900 | [diff] [blame] | 45 | config CMD_GO |
| 46 | bool "Enable go command" |
| 47 | default y |
| 48 | help |
| 49 | Start an application at a given address. |
| 50 | |
Masahiro Yamada | f3e12b7 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 51 | endmenu |