xref: /openbmc/qemu/pc-bios/descriptors/meson.build (revision fa232044a5b21da5721dd89c1d60509f7c9b109a)
1if unpack_edk2_blobs and get_option('install_blobs')
2  foreach f: [
3    '50-edk2-i386-secure.json',
4    '50-edk2-x86_64-secure.json',
5    '60-edk2-aarch64.json',
6    '60-edk2-arm.json',
7    '60-edk2-i386.json',
8    '60-edk2-x86_64.json',
9    '60-edk2-loongarch64.json',
10    '60-edk2-riscv64.json'
11  ]
12    configure_file(input: files(f),
13                   output: f,
14                   configuration: {'DATADIR': get_option('prefix') / qemu_datadir},
15                   install: true,
16                   install_dir: qemu_datadir / 'firmware')
17  endforeach
18endif
19