roms: parallel ipxe builds
Enable parallel ipxe builds. Reduce the recursive make calls. Call recursive make properly using $(MAKE) $(MAKEFLAGS). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
5a7bd33385
commit
46ef7f33a2
@ -2,6 +2,7 @@
|
|||||||
vgabios_variants := stdvga cirrus vmware qxl isavga
|
vgabios_variants := stdvga cirrus vmware qxl isavga
|
||||||
vgabios_targets := $(subst -isavga,,$(patsubst %,vgabios-%.bin,$(vgabios_variants)))
|
vgabios_targets := $(subst -isavga,,$(patsubst %,vgabios-%.bin,$(vgabios_variants)))
|
||||||
pxerom_variants := e1000 eepro100 ne2k_pci pcnet rtl8139 virtio
|
pxerom_variants := e1000 eepro100 ne2k_pci pcnet rtl8139 virtio
|
||||||
|
pxerom_targets := 8086100e 80861209 10500940 10222000 10ec8139 1af41000
|
||||||
|
|
||||||
pxe-rom-e1000 efi-rom-e1000 : VID := 8086
|
pxe-rom-e1000 efi-rom-e1000 : VID := 8086
|
||||||
pxe-rom-e1000 efi-rom-e1000 : DID := 100e
|
pxe-rom-e1000 efi-rom-e1000 : DID := 100e
|
||||||
@ -64,22 +65,27 @@ build-lgplvgabios:
|
|||||||
|
|
||||||
pxerom: $(patsubst %,pxe-rom-%,$(pxerom_variants))
|
pxerom: $(patsubst %,pxe-rom-%,$(pxerom_variants))
|
||||||
|
|
||||||
pxe-rom-%: ipxe/src/config/local/general.h
|
pxe-rom-%: build-pxe-roms
|
||||||
make -C ipxe/src bin/$(VID)$(DID).rom
|
|
||||||
cp ipxe/src/bin/$(VID)$(DID).rom ../pc-bios/pxe-$*.rom
|
cp ipxe/src/bin/$(VID)$(DID).rom ../pc-bios/pxe-$*.rom
|
||||||
|
|
||||||
efirom: $(patsubst %,efi-rom-%,$(pxerom_variants))
|
efirom: $(patsubst %,efi-rom-%,$(pxerom_variants))
|
||||||
|
|
||||||
efi-rom-%: ipxe/src/config/local/general.h
|
efi-rom-%: build-pxe-roms build-efi-roms
|
||||||
make -C ipxe/src bin/$(VID)$(DID).rom
|
|
||||||
make -C ipxe/src bin-i386-efi/$(VID)$(DID).efidrv
|
|
||||||
make -C ipxe/src bin-x86_64-efi/$(VID)$(DID).efidrv
|
|
||||||
$(EFIROM) -f "0x$(VID)" -i "0x$(DID)" -l 0x02 \
|
$(EFIROM) -f "0x$(VID)" -i "0x$(DID)" -l 0x02 \
|
||||||
-b ipxe/src/bin/$(VID)$(DID).rom \
|
-b ipxe/src/bin/$(VID)$(DID).rom \
|
||||||
-ec ipxe/src/bin-i386-efi/$(VID)$(DID).efidrv \
|
-ec ipxe/src/bin-i386-efi/$(VID)$(DID).efidrv \
|
||||||
-ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \
|
-ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \
|
||||||
-o ../pc-bios/efi-$*.rom
|
-o ../pc-bios/efi-$*.rom
|
||||||
|
|
||||||
|
build-pxe-roms: ipxe/src/config/local/general.h
|
||||||
|
$(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
|
||||||
|
$(patsubst %,bin/%.rom,$(pxerom_targets))
|
||||||
|
|
||||||
|
build-efi-roms: build-pxe-roms ipxe/src/config/local/general.h
|
||||||
|
$(MAKE) $(MAKEFLAGS) -C ipxe/src GITVERSION="" \
|
||||||
|
$(patsubst %,bin-i386-efi/%.efidrv,$(pxerom_targets)) \
|
||||||
|
$(patsubst %,bin-x86_64-efi/%.efidrv,$(pxerom_targets))
|
||||||
|
|
||||||
ipxe/src/config/local/%: config.ipxe.%
|
ipxe/src/config/local/%: config.ipxe.%
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user