9
0
Fork 0
barebox/common/Kconfig

85 lines
960 B
Plaintext
Raw Normal View History

2007-07-05 16:01:17 +00:00
2007-07-05 16:01:23 +00:00
config ZLIB
bool
config BZLIB
bool
2007-07-05 16:01:30 +00:00
menu "general settings"
config PROMPT
string
prompt "U-Boot command prompt"
default "uboot> "
endmenu
2007-07-05 16:01:23 +00:00
menu "Commands"
2007-07-05 16:01:17 +00:00
2007-07-05 16:01:27 +00:00
config CMD_ECHO
2007-07-05 16:01:13 +00:00
bool
2007-07-05 16:01:27 +00:00
prompt "echo"
2007-07-05 16:01:17 +00:00
config CMD_CONSOLE
bool
prompt "coninfo"
config CMD_MII
bool
prompt "mii"
config CMD_MEMORY
bool
prompt "md, mm, mw and several others"
config CMD_I2C
bool
prompt "i2c"
config CMD_AUTOSCRIPT
bool
prompt "autoscript"
config CMD_FLASH
bool
prompt "protect/erase/flinfo"
config CMD_LOADB
bool
prompt "loadb"
config CMD_LOADS
bool
prompt "loads"
config CMD_SAVES
bool
depends on CMD_LOADS
prompt "saves"
2007-07-05 16:01:23 +00:00
config CMD_SPLASH
bool
prompt "splash"
config CMD_SLEEP
bool
prompt "sleep"
config CMD_BOOTM
bool
prompt "bootm"
config CMD_BOOTM_ZLIB
bool
depends on CMD_BOOTM
select ZLIB
prompt "bootm with zlib support"
config CMD_BOOTM_BZLIB
bool
depends on CMD_BOOTM
select BZLIB
prompt "bootm with bzlib support"
endmenu