From 42646f4bebc077002b469815cd9bd9e1b6c56187 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Tue, 22 Apr 2025 09:51:18 -0600 Subject: [PATCH] scripts: Use coreboot mirror for building toolchain The NASM website has been offline for days. Use the coreboot mirror to fix building the toolchain. Signed-off-by: Tim Crawford --- scripts/coreboot-sdk.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/coreboot-sdk.sh b/scripts/coreboot-sdk.sh index 7cdce828..59211f6b 100755 --- a/scripts/coreboot-sdk.sh +++ b/scripts/coreboot-sdk.sh @@ -61,8 +61,12 @@ else exit 1 fi +BUILDGCC_OPTIONS+="--mirror" +export BUILDGCC_OPTIONS + make -C coreboot \ crossgcc-x64 \ crossgcc-i386 \ CPUS="$(nproc)" \ + BUILDGCC_OPTIONS="${BUILDGCC_OPTIONS}" \ "${@}"