summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2022-12-22 10:33:04 -0500
committerTom Rini <[email protected]>2022-12-22 10:33:04 -0500
commit52d91e1c20b399ddab276e2c03e5788ed5e5fdd2 (patch)
tree3da0b0377b27eedd5d702c77fbb63a0d905a3f77 /api
parent14f43797d0a696248c09d298e2f2809dded345ba (diff)
parent8214b772cf213f1f02e5e33f4a5158f52d9d2c23 (diff)
Merge branch '2022-12-21-CONFIG-migration-work' into next
- Bring in the second to last big batch of CONFIG migrations and renames. Of note here we fix a few inconsistencies around the baudrate tables on some SoCs and now are consistent in hostname/etc handling in the environment.
Diffstat (limited to 'api')
-rw-r--r--api/Kconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/api/Kconfig b/api/Kconfig
index eb8d5d0596a..d9362724e5f 100644
--- a/api/Kconfig
+++ b/api/Kconfig
@@ -11,3 +11,22 @@ config SYS_MMC_MAX_DEVICE
default 1
endmenu
+
+config STANDALONE_LOAD_ADDR
+ hex "Address in memory to link standalone applications to"
+ default 0xffffffff80200000 if MIPS && 64BIT
+ default 0x8c000000 if SH
+ default 0x82000000 if ARC
+ default 0x80f00000 if MICROBLAZE
+ default 0x80300000 if ARCH_OMAP2PLUS || FSL_LSCH2 || FSL_LSCH3
+ default 0x80200000 if MIPS && 32BIT
+ default 0x0c100000 if ARM
+ default 0x02000000 if NIOS2
+ default 0x00040000 if PPC || X86
+ default 0x00020000 if M68K
+ default 0x0 if RISCV
+ default SYS_LOAD_ADDR
+ help
+ This option defines a board specific value for the address where
+ standalone program gets loaded, thus overwriting the architecture
+ dependent default settings.