9
0
Fork 0
barebox/common/Kconfig

246 lines
5.3 KiB
Plaintext

config GREGORIAN_CALENDER
bool
config HAS_KALLSYMS
bool
config HAS_MODULES
bool
config CMD_MEMORY
bool
config ENV_HANDLING
bool
menu "General Settings "
config BOARDINFO
string
config TEXT_BASE
prompt "TEXT_BASE"
hex
default ARCH_TEXT_BASE
help
The Address U-Boot gets linked at.
config BROKEN
bool
prompt "Prompt for broken or incomplete code"
config EXPERIMENTAL
bool
prompt "Prompt for experimental code"
config MODULES
depends on HAS_MODULES
depends on EXPERIMENTAL
bool "module support"
help
This option enables support for loadable modules via insmod. Module
support is quite experimental at the moment. There is no convenient
way to compile modules and the list of exported symbols to actually
make use of modules is short to nonexistent
config KALLSYMS
depends on HAS_KALLSYMS
depends on BROKEN
bool "kallsyms"
help
With Kallsyms enabled all symbols are compiled into the U-Boot image.
This is useful to print a nice backtrace when an exception occurs.
No architecture supports backtraces at the moment, so this option
is quite useless at the moment
config RELOCATABLE
depends on PPC
bool "generate relocatable U-Boot binary"
help
A non relocatable U-Boot binary will run at it's compiled in
link address in RAM. This leads to smaller image sizes but may
put U-Boot just in the middle of RAM. With this option enabled
instead U-Boot can determine this address at runtime and thus
allowing it to relocate to the end of the available RAM. This
way you have the whole memory in a single piece.
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"
config AUTO_COMPLETE
bool
depends on CMDLINE_EDITING
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
choice
prompt "Select your shell"
config SHELL_HUSH
bool "hush parser"
config SHELL_SIMPLE
bool "Simple parser"
endchoice
config GLOB
bool
prompt "hush globbing support"
depends on SHELL_HUSH
help
If you want to use wildcards like * or ? say y here.
config PROMPT_HUSH_PS2
string
depends on SHELL_HUSH
prompt "hush PS2"
default "> "
config DYNAMIC_CRC_TABLE
bool
depends on CRC32
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.
config ERRNO_MESSAGES
bool
prompt "print error values as text"
default y
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.
config EARLY_CONSOLE_PORT
string
depends on HAS_EARLY_INIT
prompt "Console device for early output"
help
Choose the device on which you want to have early output printed
to. This is only used during startup when no device information
is available.
config EARLY_CONSOLE_BAUDRATE
int
default 115200
depends on HAS_EARLY_INIT
prompt "Early console baudrate"
help
Choose the baudrate for your early console.
config OF_FLAT_TREE
bool
prompt "Open Firmware flat device tree support"
config DEFAULT_ENVIRONMENT
bool
default y
prompt "Compile in default environment"
help
Enabling this option will give you a default environment when
the environment found in the environment sector is invalid
config DEFAULT_ENVIRONMENT_PATH
string
depends on DEFAULT_ENVIRONMENT
prompt "Default environment path"
help
The path the default environment will be taken from. Relative
pathes will be relative to the U-Boot Toplevel dir, but absolute
pathes are fine aswell.
endmenu
menu "Debugging "
config DEBUG_INFO
bool
prompt "enable debug symbols"
help
Enable build of u-boot with -g.
config SKIP_LOWLEVEL_INIT
bool
depends on ARM
prompt "Skip lowlevel init"
help
This entry skips the SDRAM initialising on many ARM based boards.
It enables using U-boot as a second stage bootloader.
config ENABLE_FLASH_NOISE
bool
prompt "verbose flash handling"
help
Enable this to get noisy flash handling routines
config ENABLE_PARTITION_NOISE
bool
prompt "verbose partition handling"
help
Enable this to get noisy partition handling routines
config ENABLE_DEVICE_NOISE
bool
prompt "verbose device handling"
help
Enable this to get noisy device handling routines
endmenu