diff options
author | wdenk <wdenk> | 2005-04-04 12:44:11 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-04 12:44:11 +0000 |
commit | 8aa1a2d115420b1eb126f69f3547b54d275c3228 (patch) | |
tree | 9167bf91193bcd6b15696a97180df29bc1524c83 /board | |
parent | 986ef4340e73c6912a26e0c165c9966ab98618d4 (diff) | |
download | u-boot-imx-8aa1a2d115420b1eb126f69f3547b54d275c3228.zip u-boot-imx-8aa1a2d115420b1eb126f69f3547b54d275c3228.tar.gz u-boot-imx-8aa1a2d115420b1eb126f69f3547b54d275c3228.tar.bz2 |
Patch by Steven Scholz, 4 Apr 2005:
- remove all references to CONFIG_INIT_CRITICAL for ARM based boards
- introduce two new configuration options instead:
CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT
Diffstat (limited to 'board')
-rw-r--r-- | board/ns9750dev/platform.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/ns9750dev/platform.S b/board/ns9750dev/platform.S index 11f9aef..afcad15 100644 --- a/board/ns9750dev/platform.S +++ b/board/ns9750dev/platform.S @@ -34,7 +34,7 @@ #include <version.h> #if defined(CONFIG_NS9750DEV) -# ifdef CONFIG_INIT_CRITICAL +# ifndef CONFIG_SKIP_LOWLEVEL_INIT # include <./ns9750_sys.h> # include <./ns9750_mem.h> # endif @@ -74,7 +74,7 @@ _PHYS_FLASH: _CAS_LATENCY: .word 0x00022000 @ for CAS2 latency -#ifdef CONFIG_INIT_CRITICAL +#ifndef CONFIG_SKIP_LOWLEVEL_INIT .globl platformsetup platformsetup: @@ -295,4 +295,4 @@ _AHB_MONITOR_START: NS9750_SYS_AHB_MON_BATC_GEN_IRQ) _AHB_MONITOR_END: -#endif /* CONFIG_INIT_CRITICAL */ +#endif /* CONFIG_SKIP_LOWLEVEL_INIT */ |