The bump to U-Boot 2021.10-rc5 also makes quite some patches obsolete since they are already part of U-Boot. This also removes a patch which disables framebuffer support on Raspberry Pi: Framebuffer support seems to work fine in todays U-Boot/Linux combination. It can help debug boot problems on Raspberry Pi devices. Without the patch framebuffer support will be enabled by default.
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From e18419a214ba872d14462354886148f976312e3c Mon Sep 17 00:00:00 2001
|
|
Message-Id: <e18419a214ba872d14462354886148f976312e3c.1632758899.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 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
|
|
|