From 1fa2d87c8553c6fa31dbb07029764d90e18b7efa Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Sat, 13 Jun 2026 21:44:50 +0200 Subject: [PATCH] configs/qemu_{riscv64, x86_64}*_efi_defconfig: switch to Bootlin stable toolchain Update the qemu riscv64/x86_64 efi configurations to use the Bootlin glibc stable prebuilt external toolchain, as recommended in the Buildroot meeting report from ELCE 2024: https://elinux.org/Buildroot:DeveloperDaysELCE2024 This will reduce the number of Gilab-CI minutes by ~20 minutes. https://gitlab.com/buildroot.org/buildroot/-/jobs/14728914014 (qemu_riscv64_virt_efi_defconfig) https://gitlab.com/buildroot.org/buildroot/-/jobs/14728914021 (qemu_x86_64_efi_defconfig) Signed-off-by: Romain Naour Signed-off-by: Peter Korsgaard --- configs/qemu_riscv64_virt_efi_defconfig | 4 +++- configs/qemu_x86_64_efi_defconfig | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/configs/qemu_riscv64_virt_efi_defconfig b/configs/qemu_riscv64_virt_efi_defconfig index 4e698fcd5e..c279e159af 100644 --- a/configs/qemu_riscv64_virt_efi_defconfig +++ b/configs/qemu_riscv64_virt_efi_defconfig @@ -1,5 +1,7 @@ BR2_riscv=y -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_18=y +BR2_TOOLCHAIN_EXTERNAL=y +BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y +BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_LP64D_GLIBC_STABLE=y BR2_GLOBAL_PATCH_DIR="board/qemu/patches" BR2_DOWNLOAD_FORCE_CHECK_HASHES=y BR2_SYSTEM_DHCP="eth0" diff --git a/configs/qemu_x86_64_efi_defconfig b/configs/qemu_x86_64_efi_defconfig index 1fb3682354..60790857b5 100644 --- a/configs/qemu_x86_64_efi_defconfig +++ b/configs/qemu_x86_64_efi_defconfig @@ -1,5 +1,7 @@ BR2_x86_64=y -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_18=y +BR2_TOOLCHAIN_EXTERNAL=y +BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y +BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_GLIBC_STABLE=y BR2_GLOBAL_PATCH_DIR="board/qemu/patches" BR2_DOWNLOAD_FORCE_CHECK_HASHES=y BR2_SYSTEM_DHCP="eth0"