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; }