Fix firmware updates failing with Limine bootloader (#5077)
Install fwupdx64.efi into /boot/EFI/arch/ before running fwupdmgr update so UEFI capsule updates work on systems using Limine.
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Update system firmware using fwupd. Ensures the fwupd EFI binary is installed
|
||||||
|
# in the ESP so UEFI capsule updates work with the Limine bootloader.
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
echo -e "\e[32mUpdate Firmware\e[0m"
|
echo -e "\e[32mUpdate Firmware\e[0m"
|
||||||
|
|
||||||
@@ -7,5 +10,9 @@ if omarchy-cmd-missing fwupdmgr; then
|
|||||||
omarchy-pkg-add fwupd
|
omarchy-pkg-add fwupd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ -d /sys/firmware/efi ]] && [[ -f /usr/lib/fwupd/efi/fwupdx64.efi ]]; then
|
||||||
|
sudo install -D /usr/lib/fwupd/efi/fwupdx64.efi /boot/EFI/arch/fwupdx64.efi
|
||||||
|
fi
|
||||||
|
|
||||||
fwupdmgr refresh --force
|
fwupdmgr refresh --force
|
||||||
sudo fwupdmgr update
|
sudo fwupdmgr update
|
||||||
|
|||||||
Reference in New Issue
Block a user