summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-05-26 23:59:30 +0300
committerTom Rini <trini@konsulko.com>2022-06-06 19:09:28 +0300
commit55cf860ba7d604081b11b8ddc23c79572a0ada34 (patch)
tree9925a59d98420cbe2a852cd5bd5eff1d99f3c56f /README
parent90e1fd09101f41ea1350e41fb3c57a662df6b2b8 (diff)
downloadu-boot-55cf860ba7d604081b11b8ddc23c79572a0ada34.tar.xz
Convert CONFIG_SPL_RELOC_TEXT_BASE et al to Kconfig
This converts the following to Kconfig: CONFIG_SPL_RELOC_TEXT_BASE CONFIG_SPL_RELOC_STACK CONFIG_SPL_RELOC_MALLOC_ADDR CONFIG_SPL_RELOC_MALLOC_SIZE Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'README')
-rw-r--r--README13
1 files changed, 0 insertions, 13 deletions
diff --git a/README b/README
index 360d357bfb..7b4067f8f2 100644
--- a/README
+++ b/README
@@ -1625,10 +1625,6 @@ The following options need to be configured:
CONFIG_SPL
Enable building of SPL globally.
- CONFIG_SPL_RELOC_TEXT_BASE
- Address to relocate to. If unspecified, this is equal to
- CONFIG_SPL_TEXT_BASE (i.e. no relocation is done).
-
CONFIG_SPL_BSS_START_ADDR
Link address for the BSS within the SPL binary.
@@ -1642,15 +1638,6 @@ The following options need to be configured:
consider that a completely unreadable NAND block is bad,
and thus should be skipped silently.
- CONFIG_SPL_RELOC_STACK
- Adress of the start of the stack SPL will use after
- relocation. If unspecified, this is equal to
- CONFIG_SYS_SPL_MALLOC_START
- Starting address of the malloc pool used in SPL.
- When this option is set the full malloc is used in SPL and
- it is set up by spl_init() and before that, the simple malloc()
- can be used if CONFIG_SYS_MALLOC_F is defined.
-
CONFIG_SYS_SPL_MALLOC_SIZE
The size of the malloc pool used in SPL.