diff mbox

[U-Boot,v2,7/8] x86: reserve more spaces for dtb

Message ID 1451382339-3794-8-git-send-email-yanmiaobest@gmail.com
State Superseded
Delegated to: Bin Meng
Headers show

Commit Message

Miao Yan Dec. 29, 2015, 9:45 a.m. UTC
Reserve more spaces for x86 dtb files. Otherwise when booting
on qemu targets, fixing 'cpu' node may fail due to lack
of space left in dtb.

Signed-off-by: Miao Yan <yanmiaobest@gmail.com>
---
 arch/x86/dts/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/arch/x86/dts/Makefile b/arch/x86/dts/Makefile
index 64e5694..753e8fa 100644
--- a/arch/x86/dts/Makefile
+++ b/arch/x86/dts/Makefile
@@ -15,7 +15,7 @@  dtb-y += bayleybay.dtb \
 
 targets += $(dtb-y)
 
-DTC_FLAGS += -R 4 -p 0x1000
+DTC_FLAGS += -R 4 -p 0x3000
 
 PHONY += dtbs
 dtbs: $(addprefix $(obj)/, $(dtb-y))