summaryrefslogtreecommitdiff
path: root/arch/sandbox/Kconfig
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-11-24 19:26:41 +0300
committerSimon Glass <sjg@chromium.org>2021-12-05 19:23:15 +0300
commit5ae2578a551cee9322bad0146fef4a66a9c19c02 (patch)
tree0cc4d2c13ab3a6942eff4f947539e544a5fb5015 /arch/sandbox/Kconfig
parent32c8566f138d4685c60c83fa89cf4bb0b7b00e79 (diff)
downloadu-boot-5ae2578a551cee9322bad0146fef4a66a9c19c02.tar.xz
Convert CONFIG_SYS_FDT_LOAD_ADDR to Kconfig
This converts the following to Kconfig: CONFIG_SYS_FDT_LOAD_ADDR Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/Kconfig')
-rw-r--r--arch/sandbox/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig
index 7606469c94..7cdbaefb11 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