From daa239e219881ec7b2c79bc7e7a43b82dac6018a Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Thu, 13 Dec 2018 13:53:08 +0100 Subject: [PATCH] samsung: common: increase space for kernel from 8MiB to 16MiB v4.14 kernel for Odroid easily exceeds 8MiB, thus loading kernel with the default configuration corrupts previously loaded dtb. Increase ${fdtaddr} to 0x41000000 to avoid this issue, what gives about 16MiB space for kernel. Signed-off-by: Marek Szyprowski Change-Id: I33e897d259f4428602fdd476db3cc0adf700f33c --- board/samsung/common/bootscripts/autoboot.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/samsung/common/bootscripts/autoboot.cmd b/board/samsung/common/bootscripts/autoboot.cmd index d66bcccf5d..c7c5e63e1c 100644 --- a/board/samsung/common/bootscripts/autoboot.cmd +++ b/board/samsung/common/bootscripts/autoboot.cmd @@ -6,7 +6,7 @@ # platform dependent: board_name, fdtfile, console # system dependent: mmcbootdev, mmcbootpart, mmcrootdev, mmcrootpart, rootfstype # -setenv fdtaddr "40800000" +setenv fdtaddr "41000000" setenv initrdname "uInitrd" setenv initrdaddr "42000000" setenv loaddtb "load mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} ${fdtfile}" -- 2.34.1