From 3a98842a249e50a7e9b48e85147c329b7a5db6fc Mon Sep 17 00:00:00 2001 From: sebanc Date: Sun, 12 Nov 2023 19:35:56 +0100 Subject: [PATCH] Changelog: - Fix4: Automatically add latest amd and intel ucode --- build_brunch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_brunch.sh b/build_brunch.sh index 8391c0d094..4ed4f9ab8e 100755 --- a/build_brunch.sh +++ b/build_brunch.sh @@ -335,7 +335,7 @@ mkdir -p ../rootc/lib/firmware || { echo "Failed to make firmware directory"; ex curl -L https://archlinux.org/packages/core/any/amd-ucode/download/ -o /tmp/amd-ucode.tar.zst || { echo "Failed to download amd ucode"; exit 1; } tar -C ../rootc/lib/firmware/ -xf /tmp/amd-ucode.tar.zst boot/amd-ucode.img --strip 1 || { echo "Failed to extract amd ucode"; exit 1; } rm /tmp/amd-ucode.tar.zst || { echo "Failed to cleanup amd ucode"; exit 1; } -curl -L https://archlinux.org/packages/core/any/intel-ucode/download/ -o /tmp/intel-ucode.tar.zst || { echo "Failed to download intel ucode"; exit 1; } +curl -L https://archlinux.org/packages/extra/any/intel-ucode/download/ -o /tmp/intel-ucode.tar.zst || { echo "Failed to download intel ucode"; exit 1; } tar -C ../rootc/lib/firmware/ -xf /tmp/intel-ucode.tar.zst boot/intel-ucode.img --strip 1 || { echo "Failed to extract intel ucode"; exit 1; } rm /tmp/intel-ucode.tar.zst || { echo "Failed to cleanup intel ucode"; exit 1; } cd ./out || { echo "Failed to enter the final firmware directory"; exit 1; }