From: Michael Brown Date: Thu, 12 Feb 2026 11:44:37 +0000 (+0000) Subject: [build] Include ISA drivers only in 32-bit BIOS builds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a1dd585027a6f308e08464a581048250f58724d;p=thirdparty%2Fipxe.git [build] Include ISA drivers only in 32-bit BIOS builds ISA hardware is vanishingly unlikely to be encountered in anything other than pre-64-bit x86 hardware with a BIOS firmware. Exclude the ISA drivers from all other builds. Signed-off-by: Michael Brown --- diff --git a/src/Makefile b/src/Makefile index 77a2bc284..cdbd6a44f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -243,7 +243,6 @@ version : # All drivers (excluding USB) # -DRIVERS_ipxe += $(DRIVERS_isa_net) DRIVERS_ipxe += $(DRIVERS_pci_net) DRIVERS_ipxe += $(DRIVERS_pci_infiniband) diff --git a/src/arch/i386/Makefile.pcbios b/src/arch/i386/Makefile.pcbios index dfb8db0a0..16eea1830 100644 --- a/src/arch/i386/Makefile.pcbios +++ b/src/arch/i386/Makefile.pcbios @@ -4,3 +4,7 @@ # MAKEDEPS += arch/x86/Makefile.pcbios include arch/x86/Makefile.pcbios + +# Include ISA drivers in the all-drivers build +# +DRIVERS_ipxe += $(DRIVERS_isa_net)