2021-09-23 12:55:29 +02:00
|
|
|
roms = []
|
2021-09-23 12:55:28 +02:00
|
|
|
if unpack_edk2_blobs
|
2019-07-15 19:22:31 +02:00
|
|
|
fds = [
|
|
|
|
'edk2-aarch64-code.fd',
|
|
|
|
'edk2-arm-code.fd',
|
|
|
|
'edk2-arm-vars.fd',
|
|
|
|
'edk2-i386-code.fd',
|
|
|
|
'edk2-i386-secure-code.fd',
|
|
|
|
'edk2-i386-vars.fd',
|
|
|
|
'edk2-x86_64-code.fd',
|
|
|
|
'edk2-x86_64-secure-code.fd',
|
|
|
|
]
|
|
|
|
|
|
|
|
foreach f : fds
|
2021-09-23 12:55:29 +02:00
|
|
|
roms += custom_target(f,
|
2021-01-22 21:44:32 +01:00
|
|
|
build_by_default: have_system,
|
2019-07-15 19:22:31 +02:00
|
|
|
output: f,
|
2021-11-08 10:45:30 +01:00
|
|
|
input: files('@0@.bz2'.format(f)),
|
2019-07-15 19:22:31 +02:00
|
|
|
capture: true,
|
2020-10-16 09:32:52 +02:00
|
|
|
install: get_option('install_blobs'),
|
2020-08-26 13:04:16 +02:00
|
|
|
install_dir: qemu_datadir,
|
2019-07-15 19:22:31 +02:00
|
|
|
command: [ bzip2, '-dc', '@INPUT0@' ])
|
|
|
|
endforeach
|
|
|
|
endif
|
|
|
|
|
2022-05-27 17:35:46 +02:00
|
|
|
blobs = [
|
2020-08-26 15:06:17 +02:00
|
|
|
'bios.bin',
|
|
|
|
'bios-256k.bin',
|
2020-09-15 14:08:51 +02:00
|
|
|
'bios-microvm.bin',
|
2020-09-15 14:08:49 +02:00
|
|
|
'qboot.rom',
|
2020-08-26 15:06:17 +02:00
|
|
|
'vgabios.bin',
|
|
|
|
'vgabios-cirrus.bin',
|
|
|
|
'vgabios-stdvga.bin',
|
|
|
|
'vgabios-vmware.bin',
|
|
|
|
'vgabios-qxl.bin',
|
|
|
|
'vgabios-virtio.bin',
|
|
|
|
'vgabios-ramfb.bin',
|
|
|
|
'vgabios-bochs-display.bin',
|
|
|
|
'vgabios-ati.bin',
|
|
|
|
'openbios-sparc32',
|
|
|
|
'openbios-sparc64',
|
|
|
|
'openbios-ppc',
|
|
|
|
'QEMU,tcx.bin',
|
|
|
|
'QEMU,cgthree.bin',
|
|
|
|
'pxe-e1000.rom',
|
|
|
|
'pxe-eepro100.rom',
|
|
|
|
'pxe-ne2k_pci.rom',
|
|
|
|
'pxe-pcnet.rom',
|
|
|
|
'pxe-rtl8139.rom',
|
|
|
|
'pxe-virtio.rom',
|
|
|
|
'efi-e1000.rom',
|
|
|
|
'efi-eepro100.rom',
|
|
|
|
'efi-ne2k_pci.rom',
|
|
|
|
'efi-pcnet.rom',
|
|
|
|
'efi-rtl8139.rom',
|
|
|
|
'efi-virtio.rom',
|
|
|
|
'efi-e1000e.rom',
|
|
|
|
'efi-vmxnet3.rom',
|
|
|
|
'qemu-nsis.bmp',
|
|
|
|
'multiboot.bin',
|
2021-10-20 14:55:04 +02:00
|
|
|
'multiboot_dma.bin',
|
2020-08-26 15:06:17 +02:00
|
|
|
'linuxboot.bin',
|
|
|
|
'linuxboot_dma.bin',
|
|
|
|
'kvmvapic.bin',
|
|
|
|
'pvh.bin',
|
|
|
|
's390-ccw.img',
|
|
|
|
's390-netboot.img',
|
|
|
|
'slof.bin',
|
|
|
|
'skiboot.lid',
|
|
|
|
'palcode-clipper',
|
|
|
|
'u-boot.e500',
|
|
|
|
'u-boot-sam460-20100605.bin',
|
|
|
|
'qemu_vga.ndrv',
|
|
|
|
'edk2-licenses.txt',
|
|
|
|
'hppa-firmware.img',
|
|
|
|
'opensbi-riscv32-generic-fw_dynamic.bin',
|
|
|
|
'opensbi-riscv64-generic-fw_dynamic.bin',
|
2020-09-11 07:20:53 +02:00
|
|
|
'npcm7xx_bootrom.bin',
|
2022-02-09 09:08:56 +01:00
|
|
|
'vof.bin',
|
|
|
|
'vof-nvram.bin',
|
2022-05-27 17:35:46 +02:00
|
|
|
]
|
2020-08-26 15:06:17 +02:00
|
|
|
|
2023-08-28 11:43:06 +02:00
|
|
|
dtc = find_program('dtc', required: false)
|
|
|
|
foreach f : [
|
|
|
|
'bamboo.dts',
|
|
|
|
'canyonlands.dts',
|
|
|
|
'petalogix-s3adsp1800.dts',
|
|
|
|
'petalogix-ml605.dts',
|
|
|
|
]
|
|
|
|
out = fs.replace_suffix(f, '.dtb')
|
|
|
|
if dtc.found()
|
|
|
|
custom_target(f,
|
|
|
|
build_by_default: have_system,
|
|
|
|
input: files(f),
|
|
|
|
output: out,
|
|
|
|
install: get_option('install_blobs'),
|
|
|
|
install_dir: qemu_datadir,
|
|
|
|
command: [ dtc, '-I', 'dts', '-O', 'dtb', '-o', '@OUTPUT@', '@INPUT0@' ])
|
|
|
|
else
|
|
|
|
blobs += out
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
2022-06-24 16:50:38 +02:00
|
|
|
if get_option('install_blobs')
|
|
|
|
install_data(blobs, install_dir: qemu_datadir)
|
|
|
|
endif
|
2020-08-26 15:06:17 +02:00
|
|
|
|
2019-07-15 19:22:31 +02:00
|
|
|
subdir('descriptors')
|
2019-09-19 18:24:43 +02:00
|
|
|
subdir('keymaps')
|