mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-01-11 15:00:39 +00:00
arm-bsp/u-boot: update patches for v2025.07
Update the FVP base u-boot patches to apply cleanly to u-boot v2025.07. Also, use a config fragment to change the default boot command to boot virtio image. This works around some changes in include/configs/vexpress_aemv8.h that change the boot behavior, which is not something we're using anyway. Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
# FVP base specific U-boot support
|
||||
|
||||
SRC_URI:append = " \
|
||||
file://virtio-boot.cfg \
|
||||
file://0001-vexpress64-Set-the-DM_RNG-property.patch \
|
||||
file://0002-vexpress64-Select-PSCI-RESET-by-default.patch \
|
||||
file://0003-vexpress64-Imply-CONFIG_ARM64_CRC32-by-default.patch \
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
From ddb132d10952366c359bdd04482c1a8c0ba08b8f Mon Sep 17 00:00:00 2001
|
||||
From 6813b56a11f423f3faa0e960bb044534e11d0104 Mon Sep 17 00:00:00 2001
|
||||
From: Debbie Martin <Debbie.Martin@arm.com>
|
||||
Date: Fri, 25 Aug 2023 15:09:33 +0100
|
||||
Subject: [PATCH] vexpress64: Set the DM_RNG property
|
||||
@@ -15,7 +15,7 @@ Signed-off-by: Debbie Martin <Debbie.Martin@arm.com>
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/board/armltd/vexpress64/Kconfig b/board/armltd/vexpress64/Kconfig
|
||||
index cf998096e45f..7ae5055f59b1 100644
|
||||
index 7e8709444fe3..f413c51ac43b 100644
|
||||
--- a/board/armltd/vexpress64/Kconfig
|
||||
+++ b/board/armltd/vexpress64/Kconfig
|
||||
@@ -21,6 +21,7 @@ config VEXPRESS64_BASE_MODEL
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
From fdf67502a8112bb54cb1d25657cb35a37035f3e9 Mon Sep 17 00:00:00 2001
|
||||
From ca70595913d7584605be1ea37362da25254fb829 Mon Sep 17 00:00:00 2001
|
||||
From: Diego Sueiro <diego.sueiro@arm.com>
|
||||
Date: Wed, 4 Oct 2023 06:31:50 +0100
|
||||
Subject: [PATCH] vexpress64: Select PSCI RESET by default
|
||||
@@ -16,24 +16,24 @@ Signed-off-by: Diego Sueiro <diego.sueiro@arm.com>
|
||||
2 files changed, 2 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/board/armltd/vexpress64/Kconfig b/board/armltd/vexpress64/Kconfig
|
||||
index 7ae5055f59b1..b8aead6cc35c 100644
|
||||
index f413c51ac43b..d0733ba62432 100644
|
||||
--- a/board/armltd/vexpress64/Kconfig
|
||||
+++ b/board/armltd/vexpress64/Kconfig
|
||||
@@ -30,6 +30,8 @@ config TARGET_VEXPRESS64_BASE_FVP
|
||||
bool "Support Versatile Express ARMv8a FVP BASE model"
|
||||
select VEXPRESS64_BASE_MODEL
|
||||
imply OF_HAS_PRIOR_STAGE
|
||||
imply OF_HAS_PRIOR_STAGE if !BLOBLIST
|
||||
+ select SYSRESET
|
||||
+ select SYSRESET_PSCI
|
||||
|
||||
config TARGET_VEXPRESS64_BASER_FVP
|
||||
bool "Support Versatile Express ARMv8r64 FVP BASE model"
|
||||
diff --git a/board/armltd/vexpress64/vexpress64.c b/board/armltd/vexpress64/vexpress64.c
|
||||
index ee65a596838a..f73de56464fa 100644
|
||||
index 0b75c1358f0b..e8f1c2fe9fe2 100644
|
||||
--- a/board/armltd/vexpress64/vexpress64.c
|
||||
+++ b/board/armltd/vexpress64/vexpress64.c
|
||||
@@ -207,11 +207,6 @@ void *board_fdt_blob_setup(int *err)
|
||||
}
|
||||
@@ -206,11 +206,6 @@ int board_fdt_blob_setup(void **fdtp)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
-/* Actual reset is done via PSCI. */
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
From 0b2c98baada9541af1595bb552b7e44d6b79c727 Mon Sep 17 00:00:00 2001
|
||||
From 9c98333d7c5f4c2611c76d60f5e7cb96bfdaca26 Mon Sep 17 00:00:00 2001
|
||||
From: Diego Sueiro <diego.sueiro@arm.com>
|
||||
Date: Wed, 4 Oct 2023 06:29:12 +0100
|
||||
Subject: [PATCH] vexpress64: Imply CONFIG_ARM64_CRC32 by default
|
||||
@@ -14,7 +14,7 @@ Signed-off-by: Diego Sueiro <diego.sueiro@arm.com>
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/board/armltd/vexpress64/Kconfig b/board/armltd/vexpress64/Kconfig
|
||||
index b8aead6cc35c..0c2e5f875950 100644
|
||||
index d0733ba62432..543cbdb5631b 100644
|
||||
--- a/board/armltd/vexpress64/Kconfig
|
||||
+++ b/board/armltd/vexpress64/Kconfig
|
||||
@@ -22,6 +22,7 @@ config VEXPRESS64_BASE_MODEL
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
CONFIG_BOOTCOMMAND="run virtio_boot"
|
||||
@@ -1,4 +1,4 @@
|
||||
From 3d266a5d77c908566b1a541f3ff8b717f17a9a8a Mon Sep 17 00:00:00 2001
|
||||
From ddf8928e53830ddce9dc5383143dcab75b4a4cfb Mon Sep 17 00:00:00 2001
|
||||
From: Jon Mason <jdmason@kudzu.us>
|
||||
Date: Mon, 19 Dec 2022 11:36:04 -0500
|
||||
Subject: [PATCH] configs: vexpress: modify to boot compressed initramfs
|
||||
@@ -10,10 +10,10 @@ Upstream-Status: Inappropriate
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/include/configs/vexpress_aemv8.h b/include/configs/vexpress_aemv8.h
|
||||
index 24d8ca086653..0935461340b7 100644
|
||||
index 5eee13b3fc01..82dff260c30c 100644
|
||||
--- a/include/configs/vexpress_aemv8.h
|
||||
+++ b/include/configs/vexpress_aemv8.h
|
||||
@@ -198,8 +198,10 @@
|
||||
@@ -213,8 +213,10 @@
|
||||
#define VEXPRESS_RAMDISK_ADDR 0x8fe00000
|
||||
|
||||
#define EXTRA_ENV_NAMES \
|
||||
|
||||
Reference in New Issue
Block a user