summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:33 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:33 +0200
commita5bf47e33a17e9131dc7bcdbd1b449292b00a81d (patch)
treef0430efc3b29061ef9416488d2b59f569cc27c62 /common/Kconfig
parenta9ff695f4773d4155558038987fbb73a32043380 (diff)
downloadbarebox-a5bf47e33a17e9131dc7bcdbd1b449292b00a81d.tar.gz
barebox-a5bf47e33a17e9131dc7bcdbd1b449292b00a81d.tar.xz
svn_rev_207
move several config options to kconfig
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig67
1 files changed, 67 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 39c6dd5580..3035f3cf86 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -12,6 +12,44 @@ config PROMPT
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 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 PROMPT_HUSH_PS2
+ string
+ depends on HUSH_PARSER
+ prompt "hush PS2"
+ default "> "
+
+config ZERO_BOOTDELAY_CHECK
+ bool
+ prompt "Eanble stop boot process with bootdelay = 0"
+ default y
+
endmenu
menu "Commands"
@@ -32,6 +70,25 @@ 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"
+
config CMD_I2C
bool
prompt "i2c"
@@ -82,3 +139,13 @@ config CMD_BOOTM_BZLIB
prompt "bootm with bzlib support"
endmenu
+
+menu "Debugging"
+
+config SKIP_LOWLEVEL_INIT
+ bool
+ depends on ARM
+ prompt "Skip lowlevel init"
+
+
+endmenu