summaryrefslogtreecommitdiff
path: root/i386
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1997-06-10 18:21:55 +0000
committerThomas Bushnell <thomas@gnu.org>1997-06-10 18:21:55 +0000
commit0751daa837c383c270d94bbf468190b99bb64267 (patch)
tree4099b01e99a7b0d5ea2ca6b4816d55fe6db1e428 /i386
parent1091d287bad2ce66223ad975dca4b54281ee83ba (diff)
Tue Jun 10 13:33:37 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* i386/Makefrag (objfiles += $(device_drivers)): Sort $(device_drivers) before adding to objfiles in order to remove duplicates. Mon Jun 9 22:14:09 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * i386/Drivers.in: Fix typos apt.o -> atp.o; 3c403.o -> 3c503.o. * Drivers.macros (AC_DRIVER): Test the class selected flag correctly.
Diffstat (limited to 'i386')
-rw-r--r--i386/Drivers.in4
-rw-r--r--i386/Makefrag2
2 files changed, 3 insertions, 3 deletions
diff --git a/i386/Drivers.in b/i386/Drivers.in
index 9fc53b1..bd90c36 100644
--- a/i386/Drivers.in
+++ b/i386/Drivers.in
@@ -95,7 +95,7 @@ AC_DRIVER(am53c974, CONFIG_SCSI_AM53C974, AM53C974.o, scsi)
dnl Ethernet controllers
AC_DRIVER(ne2000, CONFIG_NE2000, ne.o 8390.o, net)
-AC_DRIVER(el2, CONFIG_EL2, 3c403.o 8390.o, net)
+AC_DRIVER(el2, CONFIG_EL2, 3c503.o 8390.o, net)
AC_DRIVER(wd80x3, CONFIG_WD80x3, wd.o 8390.o, net)
AC_DRIVER(el1, CONFIG_EL1, 3c501.o, net)
AC_DRIVER(ul, CONFIG_ULTRA, smc-ultra.o 8390.o, net)
@@ -123,6 +123,6 @@ AC_DRIVER(de620, CONFIG_DE620, de620.o, net)
AC_DRIVER(skg16, CONFIG_SK_G16, sk_g16.o, net)
AC_DRIVER(ni52, CONFIG_NI52, ni52.o, net)
AC_DRIVER(ni65, CONFIG_NI65, ni65.o, net)
-AC_DRIVER(atp, CONFIG_ATP, apt.o, net)
+AC_DRIVER(atp, CONFIG_ATP, atp.o, net)
AC_OUTPUT(driverlist)
diff --git a/i386/Makefrag b/i386/Makefrag
index 0171130..9211f54 100644
--- a/i386/Makefrag
+++ b/i386/Makefrag
@@ -121,7 +121,7 @@ endif
include i386/driverlist
-objfiles += $(device_drivers)
+objfiles += $(sort $(device_drivers))