9
0
Fork 0
barebox/commands/Kconfig

238 lines
2.7 KiB
Plaintext
Raw Normal View History

config REGINFO
bool
2007-07-05 16:02:13 +00:00
menu "Commands "
menu "scripting "
config CMD_EDIT
bool
prompt "edit"
config CMD_EXEC
bool
prompt "exec"
config CMD_SLEEP
bool
prompt "sleep"
config CMD_ENVIRONMENT
bool
prompt "saveenv / loadenv"
config CMD_HELP
bool
default y
prompt "help"
endmenu
menu "file commands "
config CMD_LS
bool
default y
prompt "ls"
config CMD_RM
bool
default y
prompt "rm"
config CMD_CAT
bool
default y
prompt "cat"
config CMD_MKDIR
bool
default y
prompt "mkdir"
config CMD_RMDIR
bool
default y
prompt "rmdir"
config CMD_CP
bool
default y
prompt "cp"
config CMD_PWD
bool
default y
prompt "pwd"
config CMD_CD
bool
default y
prompt "cd"
config CMD_MOUNT
bool
default y
prompt "mount"
config CMD_UMOUNT
bool
default y
prompt "umount"
endmenu
2007-07-05 16:02:13 +00:00
menu "console "
config CMD_CLEAR
bool
default y
2007-07-05 16:02:13 +00:00
prompt "clear"
config CMD_ECHO
bool
default y
2007-07-05 16:02:13 +00:00
prompt "echo"
config CMD_SPLASH
2007-07-05 16:02:13 +00:00
depends on BROKEN
2007-07-05 16:02:13 +00:00
bool
prompt "splash"
endmenu
menu "i2c "
config CMD_I2C
2007-07-05 16:02:13 +00:00
depends on BROKEN
2007-07-05 16:02:13 +00:00
bool
prompt "i2c"
endmenu
menu "memory "
config CMD_LOADB
2007-07-05 16:02:13 +00:00
depends on BROKEN
2007-07-05 16:02:13 +00:00
select CRC16
bool
prompt "loadb"
config CMD_LOADS
2007-07-05 16:02:13 +00:00
depends on BROKEN
2007-07-05 16:02:13 +00:00
bool
prompt "loads"
config CMD_SAVES
2007-07-05 16:02:13 +00:00
depends on BROKEN
2007-07-05 16:02:13 +00:00
bool
depends on CMD_LOADS
prompt "saves"
config CMD_MEMINFO
bool
prompt "meminfo"
config CMD_MEMORY
bool
default y
2007-07-05 16:02:16 +00:00
prompt "md and mw"
config CMD_CRC
bool
select CRC32
prompt "crc"
2007-07-05 16:02:13 +00:00
config CMD_MTEST
bool
prompt "mtest"
config CMD_MTEST_ALTERNATIVE
bool
depends on CMD_MTEST
prompt "alternative mtest implementation"
config CMD_MTEST_START
hex
depends on CMD_MTEST
prompt "mtest start address"
config CMD_MTEST_END
hex
depends on CMD_MTEST
prompt "mtest end address"
endmenu
menu "network "
config CMD_MII
bool
2007-07-05 16:02:13 +00:00
depends on BROKEN
2007-07-05 16:02:13 +00:00
prompt "mii"
endmenu
menu "flash "
config CMD_FLASH
bool
prompt "protect/erase/flinfo"
endmenu
menu "booting "
config CMD_BOOTM
bool
default y
2007-07-05 16:02:13 +00:00
select CRC32
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"
config CMD_RESET
bool
prompt "reset"
config CMD_GO
bool
prompt "go"
endmenu
config CMD_PARTITION
bool
prompt "addpart/delpart"
config CMD_TEST
bool
depends on HUSH_PARSER
default y
prompt "test"
help
shell like test function
config CMD_REGINFO
depends on HAS_REGINFO
select REGINFO
bool
prompt "reginfo"
2007-07-05 16:02:13 +00:00
endmenu