mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-19 16:12:40 -06:00
The boot ROM is a minimal implementation designed to load an AST27x0 boot image. Its source code is available at: https://github.com/google/vbootrom Commit id: d6e3386709b3e49322a94ffadc2aaab9944ab77b Build Information: ``` Build Date : Apr 29 2025 01:23:18 FW Version : git-d6e3386 ``` Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com> Reviewed-by: Nabih Estefan <nabihestefan@google.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Tested-by: Nabih Estefan <nabihestefan@google.com> Link: https://lore.kernel.org/qemu-devel/20250429062822.1184920-2-jamin_lin@aspeedtech.com Signed-off-by: Cédric Le Goater <clg@redhat.com>
96 lines
2.1 KiB
Meson
96 lines
2.1 KiB
Meson
roms = []
|
|
if unpack_edk2_blobs
|
|
fds = [
|
|
'edk2-aarch64-code.fd',
|
|
'edk2-arm-code.fd',
|
|
'edk2-arm-vars.fd',
|
|
'edk2-riscv-code.fd',
|
|
'edk2-riscv-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',
|
|
'edk2-loongarch64-code.fd',
|
|
'edk2-loongarch64-vars.fd',
|
|
]
|
|
|
|
foreach f : fds
|
|
roms += custom_target(f,
|
|
build_by_default: have_system,
|
|
output: f,
|
|
input: files('@0@.bz2'.format(f)),
|
|
capture: true,
|
|
install: get_option('install_blobs'),
|
|
install_dir: qemu_datadir,
|
|
command: [ bzip2, '-dc', '@INPUT0@' ])
|
|
endforeach
|
|
endif
|
|
|
|
blobs = [
|
|
'ast27x0_bootrom.bin',
|
|
'bios.bin',
|
|
'bios-256k.bin',
|
|
'bios-microvm.bin',
|
|
'qboot.rom',
|
|
'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',
|
|
'multiboot_dma.bin',
|
|
'linuxboot.bin',
|
|
'linuxboot_dma.bin',
|
|
'kvmvapic.bin',
|
|
'pvh.bin',
|
|
's390-ccw.img',
|
|
'slof.bin',
|
|
'skiboot.lid',
|
|
'pnv-pnor.bin',
|
|
'palcode-clipper',
|
|
'u-boot.e500',
|
|
'u-boot-sam460-20100605.bin',
|
|
'qemu_vga.ndrv',
|
|
'edk2-licenses.txt',
|
|
'hppa-firmware.img',
|
|
'hppa-firmware64.img',
|
|
'opensbi-riscv32-generic-fw_dynamic.bin',
|
|
'opensbi-riscv64-generic-fw_dynamic.bin',
|
|
'npcm7xx_bootrom.bin',
|
|
'npcm8xx_bootrom.bin',
|
|
'vof.bin',
|
|
'vof-nvram.bin',
|
|
]
|
|
|
|
if get_option('install_blobs')
|
|
install_data(blobs, install_dir: qemu_datadir)
|
|
endif
|
|
|
|
subdir('descriptors')
|
|
subdir('dtb')
|
|
subdir('keymaps')
|