]> git.proxmox.com Git - mirror_qemu.git/blame - roms/Makefile
roms: add rules to build slof
[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)
34
2f3f430d
GH
35#
36# EfiRom utility is shipped with edk2 / tianocore, in BaseTools/
37#
38# We need that to combine multiple images (legacy bios,
39# efi ia32, efi x64) into a single rom binary.
40#
41# We try to find it in the path. You can also pass the location on
42# the command line, i.e. "make EFIROM=/path/to/EfiRom efirom"
43#
44EFIROM ?= $(shell which EfiRom 2>/dev/null)
b4566776 45
b1c0d031
GH
46default:
47 @echo "nothing is build by default"
48 @echo "available build targets:"
49 @echo " bios -- update bios.bin (seabios)"
b4566776
GH
50 @echo " seavgabios -- update vgabios binaries (seabios)"
51 @echo " lgplvgabios -- update vgabios binaries (lgpl)"
2397edd7 52 @echo " pxerom -- update nic roms (bios only)"
2f3f430d
GH
53 @echo " efirom -- update nic roms (bios+efi, this needs"
54 @echo " the EfiRom utility from edk2 / tianocore)"
bcf06c15 55 @echo " slof -- update slof.bin"
b1c0d031
GH
56
57bios: config.seabios
58 sh configure-seabios.sh $<
59 make -C seabios out/bios.bin
60 cp seabios/out/bios.bin ../pc-bios/bios.bin
7527bd85 61 cp seabios/out/*dsdt.aml ../pc-bios/
b4566776
GH
62
63seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants))
64
65seavgabios-%: config.vga.%
66 sh configure-seabios.sh $<
67 make -C seabios out/vgabios.bin
68 cp seabios/out/vgabios.bin ../pc-bios/vgabios-$*.bin
69
1ede4dd0 70
b4566776
GH
71lgplvgabios: $(patsubst %,lgplvgabios-%,$(vgabios_variants))
72
5a7bd333
GH
73lgplvgabios-isavga: build-lgplvgabios
74 cp vgabios/VGABIOS-lgpl-latest.bin ../pc-bios/vgabios.bin
1ede4dd0 75lgplvgabios-%: build-lgplvgabios
b4566776 76 cp vgabios/VGABIOS-lgpl-latest.$*.bin ../pc-bios/vgabios-$*.bin
2397edd7 77
1ede4dd0
GH
78build-lgplvgabios:
79 $(MAKE) $(MAKEFLAGS) -C vgabios $(vgabios_targets)
80
81
2397edd7
GH
82pxerom: $(patsubst %,pxe-rom-%,$(pxerom_variants))
83
46ef7f33 84pxe-rom-%: build-pxe-roms
2397edd7 85 cp ipxe/src/bin/$(VID)$(DID).rom ../pc-bios/pxe-$*.rom
2f3f430d
GH
86
87efirom: $(patsubst %,efi-rom-%,$(pxerom_variants))
88
46ef7f33 89efi-rom-%: build-pxe-roms build-efi-roms
2f3f430d
GH
90 $(EFIROM) -f "0x$(VID)" -i "0x$(DID)" -l 0x02 \
91 -b ipxe/src/bin/$(VID)$(DID).rom \
92 -ec ipxe/src/bin-i386-efi/$(VID)$(DID).efidrv \
93 -ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \
94 -o ../pc-bios/efi-$*.rom
95ca557d 95
46ef7f33
GH
96build-pxe-roms: ipxe/src/config/local/general.h
97 $(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
98 $(patsubst %,bin/%.rom,$(pxerom_targets))
99
100build-efi-roms: build-pxe-roms ipxe/src/config/local/general.h
101 $(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
102 $(patsubst %,bin-i386-efi/%.efidrv,$(pxerom_targets)) \
103 $(patsubst %,bin-x86_64-efi/%.efidrv,$(pxerom_targets))
104
95ca557d
GH
105ipxe/src/config/local/%: config.ipxe.%
106 cp $< $@
68875817
GH
107
108
bcf06c15
GH
109slof:
110 $(MAKE) $(MAKEFLAGS) -C SLOF CROSS=$(powerpc64_cross_prefix) qemu
111 cp SLOF/boot_rom.bin ../pc-bios/slof.bin
112
113
68875817
GH
114clean:
115 rm -rf seabios/.config seabios/out
116 $(MAKE) $(MAKEFLAGS) -C vgabios clean
117 rm -f vgabios/VGABIOS-lgpl-latest*
118 $(MAKE) $(MAKEFLAGS) -C ipxe/src veryclean
bcf06c15 119 $(MAKE) $(MAKEFLAGS) -C SLOF clean