mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
Install fwupdx64.efi into /boot/EFI/arch/ before running fwupdmgr update so UEFI capsule updates work on systems using Limine.
19 lines
483 B
Bash
Executable File
19 lines
483 B
Bash
Executable File
#!/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
|
|
echo -e "\e[32mUpdate Firmware\e[0m"
|
|
|
|
if omarchy-cmd-missing fwupdmgr; then
|
|
omarchy-pkg-add fwupd
|
|
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
|
|
sudo fwupdmgr update
|