mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
configs/andes_ae350_45_defconfig: bump to uboot v2025.07
This bumps uboot to v2025.07, removes unnecessary patches, and add proper hash file. Signed-off-by: Leo Yu-Chi Liang <ycliang@andestech.com> [Julien: - remove .checkpackageignore entries to fix check-package errors - add missing BR2_TARGET_UBOOT_NEEDS_GNUTLS=y in defconfig ] Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
b3e2b2f53f
commit
a29196c968
@@ -1,6 +1,4 @@
|
|||||||
board/amarula/vyasa/post-build.sh Shellcheck
|
board/amarula/vyasa/post-build.sh Shellcheck
|
||||||
board/andes/ae350/patches/uboot/0001-mmc-ftsdc010_mci-Support-DTS-of-ftsdc010-driver-for-.patch lib_patch.Upstream
|
|
||||||
board/andes/ae350/patches/uboot/0002-spl-Align-device-tree-blob-address-at-8-byte-boundar.patch lib_patch.Upstream
|
|
||||||
board/arcturus/aarch64-ucls1012a/post-build.sh Shellcheck
|
board/arcturus/aarch64-ucls1012a/post-build.sh Shellcheck
|
||||||
board/arcturus/aarch64-ucls1012a/post-image.sh Shellcheck
|
board/arcturus/aarch64-ucls1012a/post-image.sh Shellcheck
|
||||||
board/aspeed/common/post-image.sh Shellcheck
|
board/aspeed/common/post-image.sh Shellcheck
|
||||||
|
|||||||
@@ -1,38 +0,0 @@
|
|||||||
From 16aad5594e08550295ea3c12c1c9ed6f64774748 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Rick Chen <rick@andestech.com>
|
|
||||||
Date: Tue, 29 Mar 2022 13:41:10 +0800
|
|
||||||
Subject: [PATCH] mmc: ftsdc010_mci: Support DTS of ftsdc010 driver for
|
|
||||||
generic dma
|
|
||||||
|
|
||||||
The ftsdc010 driver has been implemented for generic dma in Linux
|
|
||||||
kernel. And its compatible is andestech,atfsdc010g to distinguish
|
|
||||||
the legacy andestech,atfsdc010 which is not for generic dma.
|
|
||||||
|
|
||||||
Althought the ftsdc010_mci driver in U-Boot does not use dma, but
|
|
||||||
it still can work well with the mmc node for generic dma. So add
|
|
||||||
the compatible string to support it.
|
|
||||||
|
|
||||||
Signed-off-by: Rick Chen <rick@andestech.com>
|
|
||||||
|
|
||||||
Upstream-Status: Pending
|
|
||||||
|
|
||||||
Signed-off-by: Yu Chien Peter Lin <peterlin@andestech.com>
|
|
||||||
---
|
|
||||||
drivers/mmc/ftsdc010_mci.c | 1 +
|
|
||||||
1 file changed, 1 insertion(+)
|
|
||||||
|
|
||||||
diff --git a/drivers/mmc/ftsdc010_mci.c b/drivers/mmc/ftsdc010_mci.c
|
|
||||||
index 570d54cf9d..65b1d447a8 100644
|
|
||||||
--- a/drivers/mmc/ftsdc010_mci.c
|
|
||||||
+++ b/drivers/mmc/ftsdc010_mci.c
|
|
||||||
@@ -460,6 +460,7 @@ int ftsdc010_mmc_bind(struct udevice *dev)
|
|
||||||
|
|
||||||
static const struct udevice_id ftsdc010_mmc_ids[] = {
|
|
||||||
{ .compatible = "andestech,atfsdc010" },
|
|
||||||
+ { .compatible = "andestech,atfsdc010g" },
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
|
|
||||||
--
|
|
||||||
2.34.1
|
|
||||||
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
From 933ad8a59f7fd9b2088badc3e97167d750a40b5a Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bin Meng <bmeng.cn@gmail.com>
|
|
||||||
Date: Mon, 12 Jul 2021 11:52:31 +0800
|
|
||||||
Subject: [PATCH] spl: Align device tree blob address at 8-byte boundary
|
|
||||||
|
|
||||||
Since libfdt v1.6.1, a new requirement on the device tree address via:
|
|
||||||
|
|
||||||
commit 5e735860c478 ("libfdt: Check for 8-byte address alignment in fdt_ro_probe_()")
|
|
||||||
|
|
||||||
must be met that the device tree must be loaded in to memory at an
|
|
||||||
8-byte aligned address.
|
|
||||||
|
|
||||||
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
|
|
||||||
|
|
||||||
This patch was imported from U-boot patchwork:
|
|
||||||
https://patchwork.ozlabs.org/project/uboot/patch/20210712035231.26475-1-bmeng.cn@gmail.com/
|
|
||||||
|
|
||||||
Signed-off-by: Yu Chien Peter Lin <peterlin@andestech.com>
|
|
||||||
---
|
|
||||||
common/spl/spl_fit.c | 6 ++++++
|
|
||||||
1 file changed, 6 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c
|
|
||||||
index a35be529..a76ad14a 100644
|
|
||||||
--- a/common/spl/spl_fit.c
|
|
||||||
+++ b/common/spl/spl_fit.c
|
|
||||||
@@ -382,6 +382,12 @@ static int spl_fit_append_fdt(struct spl_image_info *spl_image,
|
|
||||||
*/
|
|
||||||
image_info.load_addr = spl_image->load_addr + spl_image->size;
|
|
||||||
|
|
||||||
+ /*
|
|
||||||
+ * Since libfdt v1.6.1, the device tree must be loaded in to memory
|
|
||||||
+ * at an 8-byte aligned address.
|
|
||||||
+ */
|
|
||||||
+ image_info.load_addr = roundup(image_info.load_addr, 8);
|
|
||||||
+
|
|
||||||
/* Figure out which device tree the board wants to use */
|
|
||||||
node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
|
|
||||||
if (node < 0) {
|
|
||||||
--
|
|
||||||
2.34.1
|
|
||||||
|
|
||||||
2
board/andes/ae350/patches/uboot/uboot.hash
Normal file
2
board/andes/ae350/patches/uboot/uboot.hash
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Locally calculated
|
||||||
|
sha256 0f933f6c5a426895bf306e93e6ac53c60870e4b54cda56d95211bec99e63bec7 u-boot-2025.07.tar.bz2
|
||||||
@@ -23,12 +23,13 @@ BR2_TARGET_OPENSBI_PLAT="generic"
|
|||||||
# BR2_TARGET_OPENSBI_INSTALL_JUMP_IMG is not set
|
# BR2_TARGET_OPENSBI_INSTALL_JUMP_IMG is not set
|
||||||
BR2_TARGET_UBOOT=y
|
BR2_TARGET_UBOOT=y
|
||||||
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
||||||
BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
|
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||||
BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,u-boot,u-boot,a5dfa3b8a0f7ad555495bad1386613d2de4ba619)/u-boot-a5dfa3b8a0f7ad555495bad1386613d2de4ba619.tar.gz"
|
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2025.07"
|
||||||
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="ae350_rv64_spl_xip"
|
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="ae350_rv64_spl_xip"
|
||||||
BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="board/andes/ae350/uboot.config.fragment"
|
BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="board/andes/ae350/uboot.config.fragment"
|
||||||
BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
|
BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
|
||||||
BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
|
BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
|
||||||
|
BR2_TARGET_UBOOT_NEEDS_GNUTLS=y
|
||||||
BR2_TARGET_UBOOT_NEEDS_OPENSBI=y
|
BR2_TARGET_UBOOT_NEEDS_OPENSBI=y
|
||||||
# BR2_TARGET_UBOOT_FORMAT_BIN is not set
|
# BR2_TARGET_UBOOT_FORMAT_BIN is not set
|
||||||
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
|
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
|
||||||
|
|||||||
Reference in New Issue
Block a user