
Without descriptor libvirt cannot discover the EDK II binaries via the qemu:///system connection. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Message-ID: <20241212090059.94167-1-heinrich.schuchardt@canonical.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
19 lines
563 B
Meson
19 lines
563 B
Meson
if unpack_edk2_blobs and get_option('install_blobs')
|
|
foreach f: [
|
|
'50-edk2-i386-secure.json',
|
|
'50-edk2-x86_64-secure.json',
|
|
'60-edk2-aarch64.json',
|
|
'60-edk2-arm.json',
|
|
'60-edk2-i386.json',
|
|
'60-edk2-x86_64.json',
|
|
'60-edk2-loongarch64.json',
|
|
'60-edk2-riscv64.json'
|
|
]
|
|
configure_file(input: files(f),
|
|
output: f,
|
|
configuration: {'DATADIR': get_option('prefix') / qemu_datadir},
|
|
install: true,
|
|
install_dir: qemu_datadir / 'firmware')
|
|
endforeach
|
|
endif
|