summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2021-11-24 09:26:41 -0700
committerSimon Glass <[email protected]>2021-12-05 09:23:15 -0700
commit5ae2578a551cee9322bad0146fef4a66a9c19c02 (patch)
tree0cc4d2c13ab3a6942eff4f947539e544a5fb5015 /arch
parent32c8566f138d4685c60c83fa89cf4bb0b7b00e79 (diff)
Convert CONFIG_SYS_FDT_LOAD_ADDR to Kconfig
This converts the following to Kconfig: CONFIG_SYS_FDT_LOAD_ADDR Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'arch')
-rw-r--r--arch/sandbox/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig
index 7606469c94e..7cdbaefb119 100644
--- a/arch/sandbox/Kconfig
+++ b/arch/sandbox/Kconfig
@@ -68,4 +68,14 @@ config SANDBOX_BITS_PER_LONG
default 32 if HOST_32BIT
default 64 if HOST_64BIT
+config SYS_FDT_LOAD_ADDR
+ hex "Address at which to load devicetree"
+ default 0x100
+ help
+ With sandbox the devicetree is loaded into the emulated RAM. This sets
+ the address that is used. There must be enough space at this address
+ to load the full devicetree without it overwriting anything else.
+
+ See `doc/arch/sandbox.rst` for more information.
+
endmenu