From e18419a214ba872d14462354886148f976312e3c Mon Sep 17 00:00:00 2001 Message-Id: From: Pascal Vizeli Date: Fri, 24 Apr 2020 12:41:50 +0000 Subject: [PATCH 1/2] SPL: modify load address of U-Boot Default load address of U-Boot is at sector 16384, which is where HAOS has its first partition. Use 0x2000 (8192) instead. Signed-off-by: Pascal Vizeli Signed-off-by: Stefan Agner --- configs/tinker-rk3288_defconfig | 1 + configs/tinker-s-rk3288_defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/tinker-rk3288_defconfig b/configs/tinker-rk3288_defconfig index 3ac314ab89..67ca98c383 100644 --- a/configs/tinker-rk3288_defconfig +++ b/configs/tinker-rk3288_defconfig @@ -88,3 +88,4 @@ CONFIG_VIDEO_ROCKCHIP=y CONFIG_DISPLAY_ROCKCHIP_HDMI=y CONFIG_CMD_DHRYSTONE=y CONFIG_ERRNO_STR=y +CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x2000 diff --git a/configs/tinker-s-rk3288_defconfig b/configs/tinker-s-rk3288_defconfig index 35e84b7088..93cfe4f094 100644 --- a/configs/tinker-s-rk3288_defconfig +++ b/configs/tinker-s-rk3288_defconfig @@ -90,3 +90,4 @@ CONFIG_DISPLAY_ROCKCHIP_HDMI=y CONFIG_CONSOLE_SCROLL_LINES=10 CONFIG_CMD_DHRYSTONE=y CONFIG_ERRNO_STR=y +CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x2000 -- 2.33.0