OSDN Git Service

hw/usb/vt82c686-uhci-pci: Use ISA instead of PCI interrupts
[qmiga/qemu.git] / pc-bios / meson.build
1 roms = []
2 if unpack_edk2_blobs
3   fds = [
4     'edk2-aarch64-code.fd',
5     'edk2-arm-code.fd',
6     'edk2-arm-vars.fd',
7     'edk2-i386-code.fd',
8     'edk2-i386-secure-code.fd',
9     'edk2-i386-vars.fd',
10     'edk2-x86_64-code.fd',
11     'edk2-x86_64-secure-code.fd',
12   ]
13
14   foreach f : fds
15     roms += custom_target(f,
16                   build_by_default: have_system,
17                   output: f,
18                   input: files('@0@.bz2'.format(f)),
19                   capture: true,
20                   install: get_option('install_blobs'),
21                   install_dir: qemu_datadir,
22                   command: [ bzip2, '-dc', '@INPUT0@' ])
23   endforeach
24 endif
25
26 blobs = [
27   'bios.bin',
28   'bios-256k.bin',
29   'bios-microvm.bin',
30   'qboot.rom',
31   'vgabios.bin',
32   'vgabios-cirrus.bin',
33   'vgabios-stdvga.bin',
34   'vgabios-vmware.bin',
35   'vgabios-qxl.bin',
36   'vgabios-virtio.bin',
37   'vgabios-ramfb.bin',
38   'vgabios-bochs-display.bin',
39   'vgabios-ati.bin',
40   'openbios-sparc32',
41   'openbios-sparc64',
42   'openbios-ppc',
43   'QEMU,tcx.bin',
44   'QEMU,cgthree.bin',
45   'pxe-e1000.rom',
46   'pxe-eepro100.rom',
47   'pxe-ne2k_pci.rom',
48   'pxe-pcnet.rom',
49   'pxe-rtl8139.rom',
50   'pxe-virtio.rom',
51   'efi-e1000.rom',
52   'efi-eepro100.rom',
53   'efi-ne2k_pci.rom',
54   'efi-pcnet.rom',
55   'efi-rtl8139.rom',
56   'efi-virtio.rom',
57   'efi-e1000e.rom',
58   'efi-vmxnet3.rom',
59   'qemu-nsis.bmp',
60   'multiboot.bin',
61   'multiboot_dma.bin',
62   'linuxboot.bin',
63   'linuxboot_dma.bin',
64   'kvmvapic.bin',
65   'pvh.bin',
66   's390-ccw.img',
67   's390-netboot.img',
68   'slof.bin',
69   'skiboot.lid',
70   'palcode-clipper',
71   'u-boot.e500',
72   'u-boot-sam460-20100605.bin',
73   'qemu_vga.ndrv',
74   'edk2-licenses.txt',
75   'hppa-firmware.img',
76   'opensbi-riscv32-generic-fw_dynamic.bin',
77   'opensbi-riscv64-generic-fw_dynamic.bin',
78   'npcm7xx_bootrom.bin',
79   'vof.bin',
80   'vof-nvram.bin',
81 ]
82
83 dtc = find_program('dtc', required: false)
84 foreach f : [
85   'bamboo.dts',
86   'canyonlands.dts',
87   'petalogix-s3adsp1800.dts',
88   'petalogix-ml605.dts',
89 ]
90   out = fs.replace_suffix(f, '.dtb')
91   if dtc.found()
92     custom_target(f,
93         build_by_default: have_system,
94         input: files(f),
95         output: out,
96         install: get_option('install_blobs'),
97         install_dir: qemu_datadir,
98         command: [ dtc, '-I', 'dts', '-O', 'dtb', '-o', '@OUTPUT@', '@INPUT0@' ])
99   else
100     blobs += out
101   endif
102 endforeach
103
104 if get_option('install_blobs')
105   install_data(blobs, install_dir: qemu_datadir)
106 endif
107
108 subdir('descriptors')
109 subdir('keymaps')