Skip to content

Commit

Permalink
Changelog:
Browse files Browse the repository at this point in the history
- Fix4: Automatically add latest amd and intel ucode
  • Loading branch information
sebanc committed Nov 12, 2023
1 parent 290b432 commit 3a98842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_brunch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 3a98842

Please sign in to comment.