Skip to content

Commit b752a86

Browse files
committed
chore: talosctl: add openSUSE OVMF paths
Tested both secureboot and non-secure code. Not enabled SB by default Signed-off-by: Dmitry Sharshakov <dmitry.sharshakov@siderolabs.com>
1 parent 9456489 commit b752a86

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • pkg/provision/providers/qemu

pkg/provision/providers/qemu/arch.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,19 +106,22 @@ func (arch Arch) PFlash(uefiEnabled bool, extraUEFISearchPaths []string) []PFlas
106106
"OVMF_CODE.secboot.fd",
107107
"OVMF.secboot.fd",
108108
"edk2-x86_64-secure-code.fd", // Alpine Linux
109+
"ovmf-x86_64-ms-4m-code.bin",
109110
}
110111

111112
// Non-secure boot firmware files
112113
uefiSourceFilesInsecure := []string{
113114
"OVMF_CODE_4M.fd",
114115
"OVMF_CODE.fd",
115116
"OVMF.fd",
117+
"ovmf-x86_64-4m-code.bin",
116118
}
117119

118120
// Empty vars files
119121
uefiVarsFiles := []string{
120122
"OVMF_VARS_4M.fd",
121123
"OVMF_VARS.fd",
124+
"ovmf-x86_64-4m-vars.bin",
122125
}
123126

124127
uefiSourceFiles = append(uefiSourceFiles, uefiSourceFilesInsecure...)

0 commit comments

Comments
 (0)