summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMenon, Nishanth <x0nishan@ti.com>2008-05-12 11:35:15 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2008-05-12 11:35:15 +0200
commitcb73b0c227daf37bb9422b9dce29c3576d4a5af3 (patch)
tree56f69f6e79686621d5325769cc7db7df04790acf /common
parentcbe7b897b44452ba63021079aeff9a1308c852c5 (diff)
downloadbarebox-cb73b0c227daf37bb9422b9dce29c3576d4a5af3.tar.gz
barebox-cb73b0c227daf37bb9422b9dce29c3576d4a5af3.tar.xz
Change CONFIG_SKIP_LOWLEVEL_INIT to CONFIG_MACH_DO_LOWLEVEL_INIT
as we rather use positive logic. Make it dependent on boards that have it rather than on ARM Signed-off-by: Nishanth Menon <x0nishan@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/Kconfig20
1 files changed, 12 insertions, 8 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 05223d5acf..79a3684867 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -65,6 +65,18 @@ config RELOCATABLE
allowing it to relocate to the end of the available RAM. This
way you have the whole memory in a single piece.
+config MACH_HAS_LOWLEVEL_INIT
+ bool
+
+config MACH_DO_LOWLEVEL_INIT
+ bool "run machine low-level init"
+ depends on MACH_HAS_LOWLEVEL_INIT
+ default y
+ help
+ This entry enables SDRAM and other board low level initialization
+ on many platforms. Disabling this option allows configurations to use
+ U-boot as a second stage boot loader.
+
config PROMPT
string
prompt "U-Boot command prompt"
@@ -216,14 +228,6 @@ config DEBUG_INFO
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"