]> git.proxmox.com Git - qemu.git/blame - roms/Makefile
qga: Fix compiler warnings (missing format attribute, wrong format strings)
[qemu.git] / roms / Makefile
CommitLineData
b1c0d031 1
5a7bd333
GH
2vgabios_variants := stdvga cirrus vmware qxl isavga
3vgabios_targets := $(subst -isavga,,$(patsubst %,vgabios-%.bin,$(vgabios_variants)))
2397edd7 4pxerom_variants := e1000 eepro100 ne2k_pci pcnet rtl8139 virtio
46ef7f33 5pxerom_targets := 8086100e 80861209 10500940 10222000 10ec8139 1af41000
2397edd7 6
2f3f430d
GH
7pxe-rom-e1000 efi-rom-e1000 : VID := 8086
8pxe-rom-e1000 efi-rom-e1000 : DID := 100e
9pxe-rom-eepro100 efi-rom-eepro100 : VID := 8086
10pxe-rom-eepro100 efi-rom-eepro100 : DID := 1209
11pxe-rom-ne2k_pci efi-rom-ne2k_pci : VID := 1050
12pxe-rom-ne2k_pci efi-rom-ne2k_pci : DID := 0940
13pxe-rom-pcnet efi-rom-pcnet : VID := 1022
14pxe-rom-pcnet efi-rom-pcnet : DID := 2000
15pxe-rom-rtl8139 efi-rom-rtl8139 : VID := 10ec
16pxe-rom-rtl8139 efi-rom-rtl8139 : DID := 8139
17pxe-rom-virtio efi-rom-virtio : VID := 1af4
18pxe-rom-virtio efi-rom-virtio : DID := 1000
19
bcf06c15
GH
20#
21# cross compiler auto detection
22#
23path := $(subst :, ,$(PATH))
24system := $(shell uname -s | tr "A-Z" "a-z")
25
26# first find cross binutils in path
27find-cross-ld = $(firstword $(wildcard $(patsubst %,%/$(1)-*$(system)*-ld,$(path))))
28# then check we have cross gcc too
29find-cross-gcc = $(firstword $(wildcard $(patsubst %ld,%gcc,$(call find-cross-ld,$(1)))))
30# finally strip off path + toolname so we get the prefix
31find-cross-prefix = $(subst gcc,,$(notdir $(call find-cross-gcc,$(1))))
32
33powerpc64_cross_prefix := $(call find-cross-prefix,powerpc64)
779fa9d7 34x86_64_cross_prefix := $(call find-cross-prefix,x86_64)
bcf06c15 35
2f3f430d
GH
36#
37# EfiRom utility is shipped with edk2 / tianocore, in BaseTools/
38#
39# We need that to combine multiple images (legacy bios,
40# efi ia32, efi x64) into a single rom binary.
41#
42# We try to find it in the path. You can also pass the location on
43# the command line, i.e. "make EFIROM=/path/to/EfiRom efirom"
44#
45EFIROM ?= $(shell which EfiRom 2>/dev/null)
b4566776 46
b1c0d031
GH
47default:
48 @echo "nothing is build by default"
49 @echo "available build targets:"
50 @echo " bios -- update bios.bin (seabios)"
b4566776
GH
51 @echo " seavgabios -- update vgabios binaries (seabios)"
52 @echo " lgplvgabios -- update vgabios binaries (lgpl)"
774e80ea 53 @echo " sgabios -- update sgabios binaries"
2397edd7 54 @echo " pxerom -- update nic roms (bios only)"
2f3f430d
GH
55 @echo " efirom -- update nic roms (bios+efi, this needs"
56 @echo " the EfiRom utility from edk2 / tianocore)"
bcf06c15 57 @echo " slof -- update slof.bin"
b1c0d031 58
95f7c680
GH
59bios: build-seabios-config-seabios
60 cp seabios/builds/seabios/bios.bin ../pc-bios/bios.bin
61 cp seabios/builds/seabios/*dsdt.aml ../pc-bios/
b4566776
GH
62
63seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants))
64
95f7c680
GH
65seavgabios-isavga: build-seabios-config-vga-isavga
66 cp seabios/builds/vga-isavga/vgabios.bin ../pc-bios/vgabios.bin
67
68seavgabios-%: build-seabios-config-vga-%
69 cp seabios/builds/vga-$*/vgabios.bin ../pc-bios/vgabios-$*.bin
70
71build-seabios-config-%: config.%
72 mkdir -p seabios/builds/$*
73 cp $< seabios/builds/$*/.config
74 $(MAKE) $(MAKEFLAGS) -C seabios \
75 KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \
76 OUT=$(CURDIR)/seabios/builds/$*/ oldnoconfig
77 $(MAKE) $(MAKEFLAGS) -C seabios \
78 KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \
79 OUT=$(CURDIR)/seabios/builds/$*/ all
b4566776 80
1ede4dd0 81
b4566776
GH
82lgplvgabios: $(patsubst %,lgplvgabios-%,$(vgabios_variants))
83
5a7bd333
GH
84lgplvgabios-isavga: build-lgplvgabios
85 cp vgabios/VGABIOS-lgpl-latest.bin ../pc-bios/vgabios.bin
1ede4dd0 86lgplvgabios-%: build-lgplvgabios
b4566776 87 cp vgabios/VGABIOS-lgpl-latest.$*.bin ../pc-bios/vgabios-$*.bin
2397edd7 88
1ede4dd0
GH
89build-lgplvgabios:
90 $(MAKE) $(MAKEFLAGS) -C vgabios $(vgabios_targets)
91
92
774e80ea
GH
93.PHONY: sgabios
94sgabios:
95 $(MAKE) $(MAKEFLAGS) -C sgabios
96 cp sgabios/sgabios.bin ../pc-bios
97
98
2397edd7
GH
99pxerom: $(patsubst %,pxe-rom-%,$(pxerom_variants))
100
46ef7f33 101pxe-rom-%: build-pxe-roms
2397edd7 102 cp ipxe/src/bin/$(VID)$(DID).rom ../pc-bios/pxe-$*.rom
2f3f430d
GH
103
104efirom: $(patsubst %,efi-rom-%,$(pxerom_variants))
105
46ef7f33 106efi-rom-%: build-pxe-roms build-efi-roms
2f3f430d
GH
107 $(EFIROM) -f "0x$(VID)" -i "0x$(DID)" -l 0x02 \
108 -b ipxe/src/bin/$(VID)$(DID).rom \
109 -ec ipxe/src/bin-i386-efi/$(VID)$(DID).efidrv \
110 -ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \
111 -o ../pc-bios/efi-$*.rom
95ca557d 112
46ef7f33
GH
113build-pxe-roms: ipxe/src/config/local/general.h
114 $(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
779fa9d7 115 CROSS_COMPILE=$(x86_64_cross_prefix) \
46ef7f33
GH
116 $(patsubst %,bin/%.rom,$(pxerom_targets))
117
118build-efi-roms: build-pxe-roms ipxe/src/config/local/general.h
119 $(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
779fa9d7 120 CROSS_COMPILE=$(x86_64_cross_prefix) \
46ef7f33
GH
121 $(patsubst %,bin-i386-efi/%.efidrv,$(pxerom_targets)) \
122 $(patsubst %,bin-x86_64-efi/%.efidrv,$(pxerom_targets))
123
95ca557d
GH
124ipxe/src/config/local/%: config.ipxe.%
125 cp $< $@
68875817
GH
126
127
bcf06c15
GH
128slof:
129 $(MAKE) $(MAKEFLAGS) -C SLOF CROSS=$(powerpc64_cross_prefix) qemu
130 cp SLOF/boot_rom.bin ../pc-bios/slof.bin
131
132
68875817 133clean:
95f7c680 134 rm -rf seabios/.config seabios/out seabios/builds
68875817
GH
135 $(MAKE) $(MAKEFLAGS) -C vgabios clean
136 rm -f vgabios/VGABIOS-lgpl-latest*
774e80ea
GH
137 $(MAKE) $(MAKEFLAGS) -C sgabios clean
138 rm -f sgabios/.depend
68875817 139 $(MAKE) $(MAKEFLAGS) -C ipxe/src veryclean
bcf06c15 140 $(MAKE) $(MAKEFLAGS) -C SLOF clean