aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorwdenk2005-04-04 07:44:11 -0500
committerwdenk2005-04-04 07:44:11 -0500
commit8aa1a2d115420b1eb126f69f3547b54d275c3228 (patch)
tree9167bf91193bcd6b15696a97180df29bc1524c83 /README
parent986ef4340e73c6912a26e0c165c9966ab98618d4 (diff)
downloadu-boot-8aa1a2d115420b1eb126f69f3547b54d275c3228.tar.gz
u-boot-8aa1a2d115420b1eb126f69f3547b54d275c3228.tar.xz
u-boot-8aa1a2d115420b1eb126f69f3547b54d275c3228.zip
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 'README')
-rw-r--r--README20
1 files changed, 12 insertions, 8 deletions
diff --git a/README b/README
index 5b73238841..e74ce4c4e6 100644
--- a/README
+++ b/README
@@ -2129,14 +2129,18 @@ Low Level (hardware related) configuration options:
2129 This only takes effect if the memory commands are activated 2129 This only takes effect if the memory commands are activated
2130 globally (CFG_CMD_MEM). 2130 globally (CFG_CMD_MEM).
2131 2131
2132- CONFIG_INIT_CRITICAL 2132- CONFIG_SKIP_LOWLEVEL_INIT
2133 [ARM only] If this variable is NOT defined, then 2133- CONFIG_SKIP_RELOCATE_UBOOT
2134 certain critical initializations (like setting up the 2134
2135 memory controller) are omitted. Normally this 2135 [ARM only] If these variables are defined, then
2136 variable MUST be defined for all boards. The only 2136 certain low level initializations (like setting up
2137 exception is when U-Boot is loaded (to RAM) by some 2137 the memory controller) are omitted and/or U-Boot does
2138 other boot loader or by a debugger which performs 2138 not relocate itself into RAM.
2139 these intializations itself. 2139 Normally these variables MUST NOT be defined. The
2140 only exception is when U-Boot is loaded (to RAM) by
2141 some other boot loader or by a debugger which
2142 performs these intializations itself.
2143
2140 2144
2141Building the Software: 2145Building the Software:
2142====================== 2146======================