Skip to content

Commit

Permalink
Merge pull request #374 from hartwork/issue-372-arch-ovmf-image-location
Browse files Browse the repository at this point in the history
Support new OVMF image location on Arch Linux and derivatives
  • Loading branch information
hartwork authored Jan 25, 2025
2 parents b2aab4d + aed9651 commit 8ed7565
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion grub2_theme_preview/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,9 @@ def _grub2_ovmf_tuple():
else:
candidates = [
"/usr/share/edk2-ovmf/OVMF_CODE.fd", # Gentoo and its derivatives
"/usr/share/edk2-ovmf/x64/OVMF_CODE.fd", # Arch Linux and its derivatives
"/usr/share/edk2-ovmf/x64/OVMF_CODE.fd", # Older Arch Linux and its derivatives
"/usr/share/edk2/x64/OVMF.4m.fd", # Arch Linux and its derivatives
"/usr/share/edk2/x64/OVMF_CODE.4m.fd", # Arch Linux and its derivatives
"/usr/share/OVMF/OVMF_CODE.fd", # Older Debian and its derivatives
"/usr/share/OVMF/OVMF_CODE_4M.fd", # Debian and its derivatives
"/usr/share/edk2/ovmf/OVMF_CODE.fd", # Fedora (and its derivatives?)
Expand Down

0 comments on commit 8ed7565

Please sign in to comment.