]>
Commit | Line | Data |
---|---|---|
b1c0d031 | 1 | |
75056cef | 2 | vgabios_variants := stdvga cirrus vmware qxl isavga virtio bochs-display ramfb |
5a7bd333 | 3 | vgabios_targets := $(subst -isavga,,$(patsubst %,vgabios-%.bin,$(vgabios_variants))) |
4d9dc8b7 GH |
4 | pxerom_variants := e1000 e1000e eepro100 ne2k_pci pcnet rtl8139 virtio vmxnet3 |
5 | pxerom_targets := 8086100e 808610d3 80861209 10500940 10222000 10ec8139 1af41000 15ad07b0 | |
2397edd7 | 6 | |
2f3f430d GH |
7 | pxe-rom-e1000 efi-rom-e1000 : VID := 8086 |
8 | pxe-rom-e1000 efi-rom-e1000 : DID := 100e | |
c9c3dc5f GH |
9 | pxe-rom-e1000e efi-rom-e1000e : VID := 8086 |
10 | pxe-rom-e1000e efi-rom-e1000e : DID := 10d3 | |
2f3f430d GH |
11 | pxe-rom-eepro100 efi-rom-eepro100 : VID := 8086 |
12 | pxe-rom-eepro100 efi-rom-eepro100 : DID := 1209 | |
13 | pxe-rom-ne2k_pci efi-rom-ne2k_pci : VID := 1050 | |
14 | pxe-rom-ne2k_pci efi-rom-ne2k_pci : DID := 0940 | |
15 | pxe-rom-pcnet efi-rom-pcnet : VID := 1022 | |
16 | pxe-rom-pcnet efi-rom-pcnet : DID := 2000 | |
17 | pxe-rom-rtl8139 efi-rom-rtl8139 : VID := 10ec | |
18 | pxe-rom-rtl8139 efi-rom-rtl8139 : DID := 8139 | |
19 | pxe-rom-virtio efi-rom-virtio : VID := 1af4 | |
20 | pxe-rom-virtio efi-rom-virtio : DID := 1000 | |
4d9dc8b7 GH |
21 | pxe-rom-vmxnet3 efi-rom-vmxnet3 : VID := 15ad |
22 | pxe-rom-vmxnet3 efi-rom-vmxnet3 : DID := 07b0 | |
2f3f430d | 23 | |
bcf06c15 GH |
24 | # |
25 | # cross compiler auto detection | |
26 | # | |
27 | path := $(subst :, ,$(PATH)) | |
28 | system := $(shell uname -s | tr "A-Z" "a-z") | |
29 | ||
30 | # first find cross binutils in path | |
31 | find-cross-ld = $(firstword $(wildcard $(patsubst %,%/$(1)-*$(system)*-ld,$(path)))) | |
32 | # then check we have cross gcc too | |
33 | find-cross-gcc = $(firstword $(wildcard $(patsubst %ld,%gcc,$(call find-cross-ld,$(1))))) | |
34 | # finally strip off path + toolname so we get the prefix | |
35 | find-cross-prefix = $(subst gcc,,$(notdir $(call find-cross-gcc,$(1)))) | |
36 | ||
37 | powerpc64_cross_prefix := $(call find-cross-prefix,powerpc64) | |
4e73c781 | 38 | powerpc_cross_prefix := $(call find-cross-prefix,powerpc) |
779fa9d7 | 39 | x86_64_cross_prefix := $(call find-cross-prefix,x86_64) |
91f3a2f0 AF |
40 | riscv32_cross_prefix := $(call find-cross-prefix,riscv32) |
41 | riscv64_cross_prefix := $(call find-cross-prefix,riscv64) | |
bcf06c15 | 42 | |
7edf2f0e | 43 | # tag our seabios builds |
af51dbed | 44 | SEABIOS_EXTRAVERSION="-prebuilt.qemu.org" |
7edf2f0e | 45 | |
2f3f430d GH |
46 | # |
47 | # EfiRom utility is shipped with edk2 / tianocore, in BaseTools/ | |
48 | # | |
49 | # We need that to combine multiple images (legacy bios, | |
50 | # efi ia32, efi x64) into a single rom binary. | |
51 | # | |
d912e795 | 52 | EDK2_EFIROM = edk2/BaseTools/Source/C/bin/EfiRom |
b4566776 | 53 | |
6f8a70f6 | 54 | default help: |
b1c0d031 GH |
55 | @echo "nothing is build by default" |
56 | @echo "available build targets:" | |
91f3a2f0 AF |
57 | @echo " bios -- update bios.bin (seabios)" |
58 | @echo " vgabios -- update vgabios binaries (seabios)" | |
59 | @echo " sgabios -- update sgabios binaries" | |
60 | @echo " pxerom -- update nic roms (bios only)" | |
61 | @echo " efirom -- update nic roms (bios+efi)" | |
62 | @echo " slof -- update slof.bin" | |
63 | @echo " skiboot -- update skiboot.lid" | |
64 | @echo " u-boot.e500 -- update u-boot.e500" | |
65 | @echo " u-boot.sam460 -- update u-boot.sam460" | |
66 | @echo " efi -- update UEFI (edk2) platform firmware" | |
67 | @echo " opensbi32-virt -- update OpenSBI for 32-bit virt machine" | |
68 | @echo " opensbi64-virt -- update OpenSBI for 64-bit virt machine" | |
69 | @echo " opensbi64-sifive_u -- update OpenSBI for 64-bit sifive_u machine" | |
0d5fae3e | 70 | @echo " bios-microvm -- update bios-microvm.bin (qboot)" |
91f3a2f0 AF |
71 | @echo " clean -- delete the files generated by the previous" \ |
72 | "build targets" | |
b1c0d031 | 73 | |
94e68caa GH |
74 | bios: build-seabios-config-seabios-128k build-seabios-config-seabios-256k |
75 | cp seabios/builds/seabios-128k/bios.bin ../pc-bios/bios.bin | |
76 | cp seabios/builds/seabios-256k/bios.bin ../pc-bios/bios-256k.bin | |
b4566776 | 77 | |
91b8eba9 | 78 | vgabios seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants)) |
b4566776 | 79 | |
95f7c680 GH |
80 | seavgabios-isavga: build-seabios-config-vga-isavga |
81 | cp seabios/builds/vga-isavga/vgabios.bin ../pc-bios/vgabios.bin | |
82 | ||
83 | seavgabios-%: build-seabios-config-vga-% | |
84 | cp seabios/builds/vga-$*/vgabios.bin ../pc-bios/vgabios-$*.bin | |
85 | ||
86 | build-seabios-config-%: config.% | |
87 | mkdir -p seabios/builds/$* | |
88 | cp $< seabios/builds/$*/.config | |
50df8d5d | 89 | $(MAKE) -C seabios \ |
437b8d8c | 90 | EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \ |
78ac44af | 91 | CROSS_PREFIX=$(x86_64_cross_prefix) \ |
95f7c680 GH |
92 | KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ |
93 | OUT=$(CURDIR)/seabios/builds/$*/ oldnoconfig | |
50df8d5d | 94 | $(MAKE) -C seabios \ |
437b8d8c | 95 | EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \ |
78ac44af | 96 | CROSS_PREFIX=$(x86_64_cross_prefix) \ |
95f7c680 GH |
97 | KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ |
98 | OUT=$(CURDIR)/seabios/builds/$*/ all | |
b4566776 | 99 | |
1ede4dd0 | 100 | |
bcad45de | 101 | .PHONY: sgabios skiboot |
774e80ea | 102 | sgabios: |
50df8d5d | 103 | $(MAKE) -C sgabios |
774e80ea GH |
104 | cp sgabios/sgabios.bin ../pc-bios |
105 | ||
106 | ||
2397edd7 GH |
107 | pxerom: $(patsubst %,pxe-rom-%,$(pxerom_variants)) |
108 | ||
46ef7f33 | 109 | pxe-rom-%: build-pxe-roms |
2397edd7 | 110 | cp ipxe/src/bin/$(VID)$(DID).rom ../pc-bios/pxe-$*.rom |
2f3f430d GH |
111 | |
112 | efirom: $(patsubst %,efi-rom-%,$(pxerom_variants)) | |
113 | ||
ee5ef780 | 114 | efi-rom-%: build-pxe-roms build-efi-roms edk2-basetools |
d912e795 | 115 | $(EDK2_EFIROM) -f "0x$(VID)" -i "0x$(DID)" -l 0x02 \ |
2f3f430d GH |
116 | -b ipxe/src/bin/$(VID)$(DID).rom \ |
117 | -ec ipxe/src/bin-i386-efi/$(VID)$(DID).efidrv \ | |
118 | -ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \ | |
119 | -o ../pc-bios/efi-$*.rom | |
95ca557d | 120 | |
cf2b4b5b GH |
121 | build-pxe-roms: |
122 | $(MAKE) -C ipxe/src CONFIG=qemu \ | |
779fa9d7 | 123 | CROSS_COMPILE=$(x86_64_cross_prefix) \ |
46ef7f33 GH |
124 | $(patsubst %,bin/%.rom,$(pxerom_targets)) |
125 | ||
cf2b4b5b GH |
126 | build-efi-roms: build-pxe-roms |
127 | $(MAKE) -C ipxe/src CONFIG=qemu \ | |
779fa9d7 | 128 | CROSS_COMPILE=$(x86_64_cross_prefix) \ |
46ef7f33 GH |
129 | $(patsubst %,bin-i386-efi/%.efidrv,$(pxerom_targets)) \ |
130 | $(patsubst %,bin-x86_64-efi/%.efidrv,$(pxerom_targets)) | |
131 | ||
652141e4 PMD |
132 | # Build scripts can pass compiler/linker flags to the EDK2 |
133 | # build tools via the EDK2_BASETOOLS_OPTFLAGS (CFLAGS) and | |
1cab4641 PMD |
134 | # EDK2_BASETOOLS_LDFLAGS (LDFLAGS) environment variables. |
135 | # | |
136 | # Example: | |
137 | # | |
138 | # make -C roms \ | |
139 | # EDK2_BASETOOLS_OPTFLAGS='...' \ | |
140 | # EDK2_BASETOOLS_LDFLAGS='...' \ | |
141 | # efirom | |
142 | # | |
ee5ef780 | 143 | edk2-basetools: |
1cab4641 | 144 | $(MAKE) -C edk2/BaseTools \ |
037973bb | 145 | PYTHON_COMMAND=$${EDK2_PYTHON_COMMAND:-python3} \ |
1cab4641 PMD |
146 | EXTRA_OPTFLAGS='$(EDK2_BASETOOLS_OPTFLAGS)' \ |
147 | EXTRA_LDFLAGS='$(EDK2_BASETOOLS_LDFLAGS)' | |
68875817 | 148 | |
bcf06c15 | 149 | slof: |
50df8d5d | 150 | $(MAKE) -C SLOF CROSS=$(powerpc64_cross_prefix) qemu |
bcf06c15 GH |
151 | cp SLOF/boot_rom.bin ../pc-bios/slof.bin |
152 | ||
4e73c781 AG |
153 | u-boot.e500: |
154 | $(MAKE) -C u-boot O=build.e500 qemu-ppce500_config | |
155 | $(MAKE) -C u-boot CROSS_COMPILE=$(powerpc_cross_prefix) \ | |
156 | O=build.e500 | |
157 | $(powerpc_cross_prefix)strip u-boot/build.e500/u-boot -o \ | |
158 | ../pc-bios/u-boot.e500 | |
bcf06c15 | 159 | |
b41a162c BZ |
160 | u-boot.sam460: |
161 | $(MAKE) -C u-boot-sam460ex Sam460ex_config | |
162 | $(MAKE) -C u-boot-sam460ex CROSS_COMPILE=$(powerpc_cross_prefix) | |
163 | cp u-boot-sam460ex/u-boot.bin ../pc-bios/u-boot-sam460-20100605.bin | |
164 | ||
bcad45de CLG |
165 | skiboot: |
166 | $(MAKE) -C skiboot CROSS=$(powerpc64_cross_prefix) | |
167 | cp skiboot/skiboot.lid ../pc-bios/skiboot.lid | |
168 | ||
536d2173 LE |
169 | efi: edk2-basetools |
170 | $(MAKE) -f Makefile.edk2 | |
171 | ||
91f3a2f0 AF |
172 | opensbi32-virt: |
173 | $(MAKE) -C opensbi \ | |
174 | CROSS_COMPILE=$(riscv32_cross_prefix) \ | |
175 | PLATFORM="qemu/virt" | |
176 | cp opensbi/build/platform/qemu/virt/firmware/fw_jump.bin ../pc-bios/opensbi-riscv32-virt-fw_jump.bin | |
177 | ||
178 | opensbi64-virt: | |
179 | $(MAKE) -C opensbi \ | |
180 | CROSS_COMPILE=$(riscv64_cross_prefix) \ | |
181 | PLATFORM="qemu/virt" | |
182 | cp opensbi/build/platform/qemu/virt/firmware/fw_jump.bin ../pc-bios/opensbi-riscv64-virt-fw_jump.bin | |
183 | ||
184 | opensbi64-sifive_u: | |
185 | $(MAKE) -C opensbi \ | |
186 | CROSS_COMPILE=$(riscv64_cross_prefix) \ | |
6c141fb7 BM |
187 | PLATFORM="sifive/fu540" |
188 | cp opensbi/build/platform/sifive/fu540/firmware/fw_jump.bin ../pc-bios/opensbi-riscv64-sifive_u-fw_jump.bin | |
91f3a2f0 | 189 | |
0d5fae3e SL |
190 | bios-microvm: |
191 | $(MAKE) -C qboot | |
192 | cp qboot/bios.bin ../pc-bios/bios-microvm.bin | |
193 | ||
68875817 | 194 | clean: |
95f7c680 | 195 | rm -rf seabios/.config seabios/out seabios/builds |
50df8d5d | 196 | $(MAKE) -C sgabios clean |
774e80ea | 197 | rm -f sgabios/.depend |
50df8d5d | 198 | $(MAKE) -C ipxe/src veryclean |
f590a812 | 199 | $(MAKE) -C edk2/BaseTools clean |
50df8d5d | 200 | $(MAKE) -C SLOF clean |
4e73c781 | 201 | rm -rf u-boot/build.e500 |
b41a162c | 202 | $(MAKE) -C u-boot-sam460ex distclean |
bcad45de | 203 | $(MAKE) -C skiboot clean |
536d2173 | 204 | $(MAKE) -f Makefile.edk2 clean |
91f3a2f0 | 205 | $(MAKE) -C opensbi clean |
0d5fae3e | 206 | $(MAKE) -C qboot clean |