* Re-add patches missed with U-Boot 2021.04-rc4 upgrade Also add patches for Raspberry Pi again. * Regenerate patches for U-Boot 2021.04 * Update to U-Boot 2021.04
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 983121a741192153492a61befc0e0fc61b9f8b14 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <983121a741192153492a61befc0e0fc61b9f8b14.1617731428.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.31.1
|
|
|