add location of uefi firmware relative to Fedora, which is now the default

This commit is contained in:
Lukas Greve
2025-10-18 20:13:19 +02:00
parent 369ce1b88d
commit f146540ede

View File

@@ -19,9 +19,11 @@ module "shared_modules" {
image_location = "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img" image_location = "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
ssh_key = "" ssh_key = ""
enable_cloudinit = true enable_cloudinit = true
# ---- OPTIONAL UEFI SETTINGS ---------------------------------------------- # ---- UEFI SETTINGS ----------------------------------------------
uefi_firmware = "/usr/share/edk2/x64/OVMF_CODE.4m.fd" uefi_firmware = "/usr/share/edk2/ovmf/OVMF_CODE.fd" # Location on Fedora
uefi_nvram_template = "/usr/share/edk2/x64/OVMF_VARS.4m.fd" uefi_nvram_template = "/usr/share/edk2/ovmf/OVMF_VARS.fd" # Location on Fedora
# uefi_firmware = "/usr/share/edk2/x64/OVMF_CODE.4m.fd" # Location on Arch Linux
# uefi_nvram_template = "/usr/share/edk2/x64/OVMF_VARS.4m.fd" # Location on Arch Linux
uefi_nvram_file_suffix = "-uefi" uefi_nvram_file_suffix = "-uefi"
# ---------------------------------------------------------------- # ----------------------------------------------------------------