diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index be9ad7c4..03800c8e 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -949,9 +949,8 @@ CLEANUP += $(BIN)/NIC # Doesn't match the $(BIN)/*.* pattern # Select drivers to be included in the all-drivers build # -DRIVERS = $(DRIVERS_net) $(DRIVERS_infiniband) \ +DRIVERS_ipxe = $(DRIVERS_net) $(DRIVERS_infiniband) \ $(DRIVERS_xen) $(DRIVERS_hyperv) -DRIVERS_ipxe = $(DRIVERS) # Analyse a target name (e.g. "bin/dfe538--prism2_pci.rom.tmp") and # derive the variables: diff --git a/src/util/parserom.pl b/src/util/parserom.pl index 2c59f486..28df6065 100755 --- a/src/util/parserom.pl +++ b/src/util/parserom.pl @@ -162,6 +162,7 @@ sub print_make_rules { print "# NIC\t\n"; print "# NIC\tfamily\t$state->{family}\n"; print "DRIVERS_$state->{driver_class} += $state->{driver_name}\n"; + print "DRIVERS += $state->{driver_name}\n"; print "\n"; $state->{'is_header_printed'} = 1; }