summaryrefslogtreecommitdiff
path: root/arch/x86/dts
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-12-29 21:57:40 +0300
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2021-12-31 08:45:01 +0300
commit7f5419a64760e279556c548ec29cf48b8614c2f6 (patch)
tree6d8decfa92b8b39fcda4317670e8d8bf25115187 /arch/x86/dts
parent440c6645aa501e9dfe96fa314c1db78cbb42f453 (diff)
downloadu-boot-7f5419a64760e279556c548ec29cf48b8614c2f6.tar.xz
x86: efi: Add room for the binman definition in the dtb
At present only 4KB of spare space is left in the DTB when building the EFI app. Increase this to 32KB so there is plenty of space to insert the binman definition. This cannot be expanded later (as with OF_SEPARATE) because the ELF image has already been built. Signed-off-by: Simon Glass <sjg@chromium.org> Reviwed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'arch/x86/dts')
-rw-r--r--arch/x86/dts/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/dts/Makefile b/arch/x86/dts/Makefile
index be209aaaf8..5c8c05ec49 100644
--- a/arch/x86/dts/Makefile
+++ b/arch/x86/dts/Makefile
@@ -24,7 +24,7 @@ dtb-y += bayleybay.dtb \
targets += $(dtb-y)
-DTC_FLAGS += -R 4 -p 0x1000
+DTC_FLAGS += -R 4 -p $(if $(CONFIG_EFI_APP),0x8000,0x1000)
PHONY += dtbs
dtbs: $(addprefix $(obj)/, $(dtb-y))