@@ -70,23 +70,30 @@ copy_from_local_path: false
70
70
# NOTE(dtantsur): secure boot capable firmware goes second because some systems
71
71
# (e.g. Ubuntu) provide it but refuse to boot. However, CentOS provides only
72
72
# secure boot capable firmware, and it works for both secure und normal boot.
73
+ # Detailed information on Debian/Ubuntu files:
74
+ # https://salsa.debian.org/qemu-team/edk2/-/blob/debian/debian/ovmf.README.Debian?ref_type=heads
73
75
efi_loader_locations_normal :
74
76
- /usr/share/edk2/ovmf/OVMF_CODE.fd
75
77
- /usr/share/edk2/ovmf/OVMF_CODE.secboot.fd
78
+ - /usr/share/OVMF/OVMF_CODE_4M.fd
76
79
- /usr/share/OVMF/OVMF_CODE.fd
80
+ - /usr/share/OVMF/OVMF_CODE_4M.secboot.fd
77
81
- /usr/share/OVMF/OVMF_CODE.secboot.fd
78
82
- /usr/share/qemu/ovmf-x86_64-code.bin
79
83
efi_loader_locations_secboot :
80
84
- /usr/share/edk2/ovmf/OVMF_CODE.secboot.fd
85
+ - /usr/share/OVMF/OVMF_CODE_4M.secboot.fd
81
86
- /usr/share/OVMF/OVMF_CODE.secboot.fd
82
87
efi_loader_locations : >-
83
88
{{ efi_loader_locations_secboot if test_vm_secure_boot | bool else efi_loader_locations_normal }}
84
89
efi_nvram_locations_normal :
85
90
- /usr/share/edk2/ovmf/OVMF_VARS.fd
91
+ - /usr/share/OVMF/OVMF_VARS_4M.fd
86
92
- /usr/share/OVMF/OVMF_VARS.fd
87
93
- /usr/share/qemu/ovmf-x86_64-vars.bin
88
94
efi_nvram_locations_secboot :
89
95
- /usr/share/edk2/ovmf/OVMF_VARS.secboot.fd
96
+ - /usr/share/OVMF/OVMF_VARS_4M.ms.fd
90
97
- /usr/share/OVMF/OVMF_VARS.secboot.fd
91
98
efi_nvram_locations : >-
92
99
{{ efi_nvram_locations_secboot if test_vm_secure_boot | bool else efi_nvram_locations_normal }}
0 commit comments