diff options
| author | Svyatoslav Ryhel <[email protected]> | 2025-03-07 10:59:57 +0200 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2025-03-08 16:27:22 +0200 |
| commit | e6883b6b30784a529fbccd74f3226ad493d15116 (patch) | |
| tree | 85142fb05bb3fe50a68c12bdc0f6a846b8e34a48 /common/Kconfig | |
| parent | 0fd7ee0306a88bd99d3820167fa45a7ee6fbc1e1 (diff) | |
sandbox: remap memory load addresses
The existing memory layout places the bloblist at 0xb000 and the fdt at
0x100, resulting in a 0xaf00 size constraint for the fdt. This constraint
has been reached. Lets modify the layout by moving the bloblist to 0x100,
device tree to 0x1000 and placing early memory allocation after pre-console
buffer at 0xf4000. This should guarantee sufficient memory allocation for
future expansion.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'common/Kconfig')
| -rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index 7685914fa6f..cf4bee063ae 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -1070,7 +1070,7 @@ endchoice config BLOBLIST_ADDR hex "Address of bloblist" - default 0xb000 if SANDBOX + default 0x100 if SANDBOX depends on BLOBLIST_FIXED help Sets the address of the bloblist, set up by the first part of U-Boot |
