Bump to the latest U-Boot release 2021.04-rc4. This alows to drop quite some patches which have been sent to the mailing list or picked from the mailing list and have been merged upstream now.
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 2f197db1961f09dd264770ef081280a44a1a4809 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <2f197db1961f09dd264770ef081280a44a1a4809.1615892095.git.stefan@agner.ch>
|
|
From: Pascal Vizeli <pvizeli@syshack.ch>
|
|
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 <pvizeli@syshack.ch>
|
|
Signed-off-by: Stefan Agner <stefan@agner.ch>
|
|
---
|
|
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 8686a66d13..c3363821dd 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 22714833cc..f5dd23577c 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.30.2
|
|
|