mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
fdtdec: Support separate BSS for all XPL builds
Adjust the condition so that separate BSS can be deselected for TPL and VPL. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -1232,7 +1232,7 @@ static void *fdt_find_separate(void)
|
||||
|
||||
#ifdef CONFIG_SPL_BUILD
|
||||
/* FDT is at end of BSS unless it is in a different memory region */
|
||||
if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
|
||||
if (CONFIG_IS_ENABLED(SEPARATE_BSS))
|
||||
fdt_blob = (ulong *)_image_binary_end;
|
||||
else
|
||||
fdt_blob = (ulong *)__bss_end;
|
||||
|
||||
Reference in New Issue
Block a user