From 74b46d08da7adc49b01f7af7ebb9e1421b8a9362 Mon Sep 17 00:00:00 2001 From: Athaariq Ardhiansyah Date: Fri, 9 Aug 2024 13:43:45 +0200 Subject: [PATCH] configs/raspberrypi5: use correct CPU MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Raspberry Pi 5 uses a quad-core ARM Cortex-A76 CPU cluster[1]. This fixes incorrect CPU as it is no big.LITTLE CPU. [1]: https://www.raspberrypi.com/documentation/computers/processors.html#bcm2712 Signed-off-by: Athaariq Ardhiansyah Signed-off-by: Gaƫl PORTAY Signed-off-by: Thomas Petazzoni --- configs/raspberrypi5_defconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configs/raspberrypi5_defconfig b/configs/raspberrypi5_defconfig index 268bf2892a..18fdfa1382 100644 --- a/configs/raspberrypi5_defconfig +++ b/configs/raspberrypi5_defconfig @@ -1,6 +1,5 @@ BR2_aarch64=y -BR2_cortex_a76_a55=y -BR2_ARM_FPU_VFPV4=y +BR2_cortex_a76=y # patches BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches"