]> git.proxmox.com Git - mirror_qemu.git/blame - roms/Makefile
roms: enable ipxe cross builds
[mirror_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)"
2397edd7 53 @echo " pxerom -- update nic roms (bios only)"
2f3f430d
GH
54 @echo " efirom -- update nic roms (bios+efi, this needs"
55 @echo " the EfiRom utility from edk2 / tianocore)"
bcf06c15 56 @echo " slof -- update slof.bin"
b1c0d031
GH
57
58bios: config.seabios
59 sh configure-seabios.sh $<
60 make -C seabios out/bios.bin
61 cp seabios/out/bios.bin ../pc-bios/bios.bin
7527bd85 62 cp seabios/out/*dsdt.aml ../pc-bios/
b4566776
GH
63
64seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants))
65
66seavgabios-%: config.vga.%
67 sh configure-seabios.sh $<
68 make -C seabios out/vgabios.bin
69 cp seabios/out/vgabios.bin ../pc-bios/vgabios-$*.bin
70
1ede4dd0 71
b4566776
GH
72lgplvgabios: $(patsubst %,lgplvgabios-%,$(vgabios_variants))
73
5a7bd333
GH
74lgplvgabios-isavga: build-lgplvgabios
75 cp vgabios/VGABIOS-lgpl-latest.bin ../pc-bios/vgabios.bin
1ede4dd0 76lgplvgabios-%: build-lgplvgabios
b4566776 77 cp vgabios/VGABIOS-lgpl-latest.$*.bin ../pc-bios/vgabios-$*.bin
2397edd7 78
1ede4dd0
GH
79build-lgplvgabios:
80 $(MAKE) $(MAKEFLAGS) -C vgabios $(vgabios_targets)
81
82
2397edd7
GH
83pxerom: $(patsubst %,pxe-rom-%,$(pxerom_variants))
84
46ef7f33 85pxe-rom-%: build-pxe-roms
2397edd7 86 cp ipxe/src/bin/$(VID)$(DID).rom ../pc-bios/pxe-$*.rom
2f3f430d
GH
87
88efirom: $(patsubst %,efi-rom-%,$(pxerom_variants))
89
46ef7f33 90efi-rom-%: build-pxe-roms build-efi-roms
2f3f430d
GH
91 $(EFIROM) -f "0x$(VID)" -i "0x$(DID)" -l 0x02 \
92 -b ipxe/src/bin/$(VID)$(DID).rom \
93 -ec ipxe/src/bin-i386-efi/$(VID)$(DID).efidrv \
94 -ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \
95 -o ../pc-bios/efi-$*.rom
95ca557d 96
46ef7f33
GH
97build-pxe-roms: ipxe/src/config/local/general.h
98 $(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
779fa9d7 99 CROSS_COMPILE=$(x86_64_cross_prefix) \
46ef7f33
GH
100 $(patsubst %,bin/%.rom,$(pxerom_targets))
101
102build-efi-roms: build-pxe-roms ipxe/src/config/local/general.h
103 $(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
779fa9d7 104 CROSS_COMPILE=$(x86_64_cross_prefix) \
46ef7f33
GH
105 $(patsubst %,bin-i386-efi/%.efidrv,$(pxerom_targets)) \
106 $(patsubst %,bin-x86_64-efi/%.efidrv,$(pxerom_targets))
107
95ca557d
GH
108ipxe/src/config/local/%: config.ipxe.%
109 cp $< $@
68875817
GH
110
111
bcf06c15
GH
112slof:
113 $(MAKE) $(MAKEFLAGS) -C SLOF CROSS=$(powerpc64_cross_prefix) qemu
114 cp SLOF/boot_rom.bin ../pc-bios/slof.bin
115
116
68875817
GH
117clean:
118 rm -rf seabios/.config seabios/out
119 $(MAKE) $(MAKEFLAGS) -C vgabios clean
120 rm -f vgabios/VGABIOS-lgpl-latest*
121 $(MAKE) $(MAKEFLAGS) -C ipxe/src veryclean
bcf06c15 122 $(MAKE) $(MAKEFLAGS) -C SLOF clean