9
0
Fork 0
barebox/common/Kconfig

239 lines
3.6 KiB
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:02:00 +00:00
config GREGORIAN_CALENDER
bool
2007-07-05 16:01:30 +00:00
menu "general settings"
config PROMPT
string
prompt "U-Boot command prompt"
default "uboot> "
config BAUDRATE
int
prompt "Default baudrate"
default 115200
config CMDLINE_EDITING
bool
prompt "Enable command line editing"
2007-07-05 16:01:45 +00:00
config AUTO_COMPLETE
bool
prompt "Enable auto completion"
config SIMPLE_READLINE
bool
default y
depends on !CMDLINE_EDITING
config LONGHELP
bool
prompt "Enable long help texts"
config CBSIZE
int
prompt "Buffer size for input from the Console"
default 1024
config MAXARGS
int
prompt "max. Number of arguments accepted for monitor commands"
default 16
config HUSH_PARSER
bool
prompt "Use hush parser"
config SIMPLE_PARSER
bool
default y
depends on !HUSH_PARSER
config PROMPT_HUSH_PS2
string
depends on HUSH_PARSER
prompt "hush PS2"
default "> "
config ZERO_BOOTDELAY_CHECK
bool
prompt "Enable stop boot process with bootdelay = 0"
default y
config DYNAMIC_CRC_TABLE
bool
prompt "Generate the crc32 table dynamically"
default y
help
Saying yes to this option saves around 800 bytes of binary size.
If unsure say yes.
2007-07-05 16:01:45 +00:00
config ERRNO_MESSAGES
bool
prompt "print error values as text"
default y
2007-07-05 16:02:00 +00:00
config TIMESTAMP
bool
default y
select GREGORIAN_CALENDER
prompt "print timestamp information from images"
help
When CONFIG_TIMESTAMP is selected, the timestamp
(date and time) of an image is printed by image
commands like bootm or iminfo. This option is
automatically enabled when you select CFG_CMD_DATE .
config CONSOLE_ACTIVATE_FIRST
bool
default y
prompt "activate first console on startup"
help
Normally on startup all consoles are disabled, so you won't
see anything from U-Boot starting. Enabling this option
enables the first console.
config CONSOLE_ACTIVATE_ALL
bool
depends on !CONSOLE_ACTIVATE_FIRST
prompt "activate all consoles on startup"
help
Enabling this options activates all consoles on startup, so
you will get output and a prompt on all consoles simultaneously.
2007-07-05 16:02:03 +00:00
config OF_FLAT_TREE
bool
prompt "Open Firmware flat device tree support"
2007-07-05 16:01:30 +00:00
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_EDIT
bool
prompt "edit"
2007-07-05 16:01:45 +00:00
config CMD_EXEC
bool
prompt "exec"
config CMD_ENVIRONMENT
bool
prompt "envsave / envload"
config CMD_CLEAR
bool
prompt "clear"
2007-07-05 16:01:17 +00:00
config CMD_CONSOLE
bool
prompt "coninfo"
2007-07-05 16:01:45 +00:00
config CMD_HELP
bool
default y
prompt "help"
2007-07-05 16:01:17 +00:00
config CMD_MII
bool
prompt "mii"
config CMD_MEMORY
bool
prompt "md, mm, mw and several others"
config CMD_MTEST
bool
prompt "mtest"
config CMD_MTEST_ALTERNATIVE
bool
depends on CMD_MTEST
prompt "use 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"
2007-07-05 16:01:17 +00:00
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_MEMINFO
2007-07-05 16:01:47 +00:00
bool
prompt "meminfo"
2007-07-05 16:01:47 +00:00
2007-07-05 16:01:17 +00:00
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
menu "Debugging"
config SKIP_LOWLEVEL_INIT
bool
depends on ARM
prompt "Skip lowlevel init"
endmenu