1menu "Command line interface" 2 depends on !SPL_BUILD 3 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 21config CMD_BOOTM 22 bool "Enable bootm command" 23 default y 24 help 25 Boot an application image from the memory. 26 27config CMD_CRC32 28 bool "Enable crc32 command" 29 default y 30 help 31 Compute CRC32. 32 33config CMD_EXPORTENV 34 bool "Enable env export command" 35 default y 36 help 37 Export environments. 38 39config CMD_IMPORTENV 40 bool "Enable env import command" 41 default y 42 help 43 Import environments. 44 45config CMD_GO 46 bool "Enable go command" 47 default y 48 help 49 Start an application at a given address. 50 51endmenu 52