summaryrefslogtreecommitdiff
path: root/i386/linux
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-04-26 05:38:39 +0000
committerThomas Bushnell <thomas@gnu.org>1999-04-26 05:38:39 +0000
commit73f9546026a251b5c305822aa2f081b1f437a27d (patch)
tree65d19227a3cb0bc2c63ceebcf139a49fe995b2c9 /i386/linux
parent3a4e8f5c1c60f87e1c9e0878ddb6cf7dac8c59c0 (diff)
1999-04-12 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
* i386/linux/Drivers.in: Fix the source paths for `asm' symbolic links. Reported by KONISHI Toru <sting@mb.infoweb.ne.jp>. 1999-03-01 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> * i386/linux/Drivers.in: Fix linking paths. * i386/linux/Makefile.in: Corrent include paths and fix Drivers.macros location. 1999-02-28 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> * Makefile.in (clean): Don't move device-drivers.h, because it is not in the top directory any longer. (distclean): Remove config.cache and config.log. * i386/Makefile.in (distclean): Remove config.status, config.log and Makefile. * i386/linux/Makefile.in (distclean): Remove config.status, config.log, Makefile and device-drivers.h. 1999-02-27 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> * i386/linux/Drivers.in: Don't link dev/include/asm-i386 to dev/include/asm. Check if directories already exist before mkdir_p's. Link directories manually, because AC_LINK_FILES is weak in linking files from non-current directories. * i386/i386at/i386at_ds_routines.c: Include <i386/linux/device-drivers.h> instead of <linux/device-drivers.h>. * device/ds_routines.c [LINUX_DEV]: Likewise. * i386/linux/Makefile.in (linux-gen-flags): Fix an extra slash. (distclean): Remove asm links. * linux/src/COPYING: Copied from linux-2.0.36. 1999-02-27 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> * Makefile.in: Omit to detect if com or lpr is used, and don't use linux.o. (objfiles): Add $(systype)/sysdep.o. (clean): Chain the target to $(systype). (distclean): Likewise. (mostlyclean): Likewise. (maintainer-clean): Likewise. (install-headers): Likewise. (install-kernel): Likewise. * configure.in: AC_CONFIG_SUBDIRS ${systype} instead of linux. (--disable-linuxdev): Deleted. (--disable-com): Likewise. (--enable-lpr): Likewise. * i386/Makefile.in: New file. * i386/configure.in: Likewise. * i386/Makefrag (DEFINES): Add -DLINUX_DEV. (objfiles): Always add com.o. If MACH_LPR is defined, then add lpr.o. * linux/Drivers.in: Moved to ... * i386/linux/Drivers.in: ... here. Include ../../aclocal.m4. (mkdir_p): New function to create the linux include dirs. * linux/Makefile.in: Moved to ... * i386/linux/Makefile.in: ... here, and modify so that paths are valid. (clean): New target. (distclean): Likewise. (mostlyclean): Likewise. (maintainer-clean): Likewise. * linux/src/include/linux/autoconf.h: Removed. * linux/dev/include/linux/autoconf.h: Moved to ... * i386/linux/dev/include/linux/autoconf.h: ... here. * linux/dev/arch/i386/linux_emul.h: Moved to ... * i386/linux/dev/include/linux_emul.h: ... here. * linux/device-drivers.h.in: Moved to ... * i386/linux/device-drivers.h.in: ... here. * linux/aclocal.m4: Removed. * linux/configure: Likewise.
Diffstat (limited to 'i386/linux')
-rw-r--r--i386/linux/Drivers.in233
-rw-r--r--i386/linux/Makefile.in207
-rwxr-xr-xi386/linux/configure3581
-rw-r--r--i386/linux/device-drivers.h.in85
4 files changed, 4106 insertions, 0 deletions
diff --git a/i386/linux/Drivers.in b/i386/linux/Drivers.in
new file mode 100644
index 0000000..c7f9903
--- /dev/null
+++ b/i386/linux/Drivers.in
@@ -0,0 +1,233 @@
+dnl Device driver options for i386
+dnl Copyright 1997, 1999 Free Software Foundation, Inc.
+
+dnl Permission to use, copy, modify and distribute this software and its
+dnl documentation is hereby granted, provided that both the copyright
+dnl notice and this permission notice appear in all copies of the
+dnl software, derivative works or modified versions, and any portions
+dnl thereof, and that both notices appear in supporting documentation.
+dnl
+dnl THE FREE SOFTWARE FOUNDATION ALLOWS FREE USE OF THIS SOFTWARE IN ITS
+dnl "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY
+dnl LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE
+dnl USE OF THIS SOFTWARE.
+
+AC_INIT(dev/include/linux/autoconf.h)
+AC_PREREQ(2.12)
+
+sinclude([../../Drivers.macros])
+sinclude([../../aclocal.m4])
+
+AC_CONFIG_HEADER(device-drivers.h)
+
+dnl Check the cpu type.
+
+AC_CANONICAL_HOST
+
+case "$host_cpu" in
+i386) AC_DEFINE(CONFIG_M386)
+ AC_DEFINE(CPU, 386) ;;
+i486) AC_DEFINE(CONFIG_M486)
+ AC_DEFINE(CPU, 486) ;;
+i586) AC_DEFINE(CONFIG_M586)
+ AC_DEFINE(CPU, 586) ;;
+i686) AC_DEFINE(CONFIG_M686)
+ AC_DEFINE(CPU, 686) ;;
+*) AC_DEFINE(CONFIG_M486)
+ AC_DEFINE(CPU, 486) ;;
+esac
+
+
+case "$host_cpu" in
+i[[3456]]86) systype=i386 ;;
+esac
+
+AC_SUBST(systype)
+
+AC_CHECK_TOOL(CC, gcc)
+AC_PROG_CC_LOCAL
+
+AC_CHECK_TOOL(LD, ld)
+
+
+dnl XXX: Autoconf is weak in linking files from non-current directories.
+dnl So I hardcode the following shell script.
+
+mkdir_p ()
+{
+ if test ! -d `dirname $1`; then
+ mkdir_p `dirname $1`
+ fi
+ mkdir $1;
+}
+
+if test ! -d ../../linux/src/include; then
+ mkdir_p ../../linux/src/include
+fi
+if test ! -d ../../linux/dev/include; then
+ mkdir_p ../../linux/dev/include
+fi
+
+ln -sf ../../../i386/linux/${srcdir}/../../linux/src/include/asm-${systype} \
+ ../../linux/src/include/asm
+ln -sf ../../../i386/linux/${srcdir}/../../linux/dev/include/asm-${systype} \
+ ../../linux/dev/include/asm
+
+
+dnl Aliases have to come first.
+
+AC_DRIVER_ALIAS(3c501, el1)
+AC_DRIVER_ALIAS(3c503, el2)
+AC_DRIVER_ALIAS(3c509, el3)
+AC_DRIVER_ALIAS(3c579, el3)
+AC_DRIVER_ALIAS(3c59x, vortex)
+AC_DRIVER_ALIAS(3c90x, vortex)
+AC_DRIVER_ALIAS(hpj2577, hp100)
+AC_DRIVER_ALIAS(hpj2573, hp100)
+AC_DRIVER_ALIAS(hpj2585, hp100)
+AC_DRIVER_ALIAS(hp27248b, hp100)
+AC_DRIVER_ALIAS(eth32, eth16i)
+AC_DRIVER_ALIAS(znote, znet)
+AC_DRIVER_ALIAS(de100, depca)
+AC_DRIVER_ALIAS(de101, depca)
+AC_DRIVER_ALIAS(de200, depca)
+AC_DRIVER_ALIAS(de201, depca)
+AC_DRIVER_ALIAS(de202, depca)
+AC_DRIVER_ALIAS(de210, depca)
+AC_DRIVER_ALIAS(de422, depca)
+AC_DRIVER_ALIAS(de203, ewrk3)
+AC_DRIVER_ALIAS(de204, ewrk3)
+AC_DRIVER_ALIAS(de205, ewrk3)
+AC_DRIVER_ALIAS(de425, de4x5)
+AC_DRIVER_ALIAS(de434, de4x5)
+AC_DRIVER_ALIAS(de435, de4x5)
+AC_DRIVER_ALIAS(de450, de4x5)
+AC_DRIVER_ALIAS(de500, de4x5)
+AC_DRIVER_ALIAS(3c507, el16)
+AC_DRIVER_ALIAS(3c505, elplus)
+AC_DRIVER_ALIAS(ne1000, ne2000)
+AC_DRIVER_ALIAS(at1500, lance)
+AC_DRIVER_ALIAS(ne2100, lance)
+AC_DRIVER_ALIAS(tulip, elcp)
+AC_DRIVER_ALIAS(rtl8129, rtl8139)
+AC_DRIVER_ALIAS(aha2825, aha152x)
+AC_DRIVER_ALIAS(ncr53c400, ncr5380)
+AC_DRIVER_ALIAS(t128f, t128)
+AC_DRIVER_ALIAS(t228, t128)
+AC_DRIVER_ALIAS(am79c974, am53c974)
+AC_DRIVER_ALIAS(dtc3180, dtc3280)
+AC_DRIVER_ALIAS(dc390u, dc390w)
+AC_DRIVER_ALIAS(dc390f, dc390w)
+AC_DRIVER_ALIAS(dc390, dc390t)
+AC_DRIVER_ALIAS(epic100, epic)
+
+
+dnl Kinds of drivers that have gobs of source files that get brought in.
+
+AC_DRIVER_CLASS(scsi, CONFIG_SCSI, constants.o hosts.o scsi.o scsi_ioctl.o scsi_proc.o scsicam.o sd.o sd_ioctl.o sr.o sr_ioctl.o)
+
+AC_DRIVER_CLASS(net, CONFIG_INET, auto_irq.o net.o Space.o dev.o net_init.o)
+
+dnl Strictly speaking, we could have a `linux' option too, but it's
+dnl not possible to built a useful kernel without at least one Linux
+dnl driver, so that's not really necessary.
+
+
+
+dnl non-SCSI Disk controllers
+
+AC_DRIVER(floppy, CONFIG_BLK_DEV_FD, floppy.o)
+AC_DRIVER(ide, CONFIG_BLK_DEV_IDE, cmd640.o ide-cd.o ide.o rz1000.o triton.o)
+
+
+dnl SCSI Disk controllers
+
+AC_DRIVER(advansys, CONFIG_SCSI_ADVANSYS, advansys.o, scsi)
+AC_DRIVER(buslogic, CONFIG_SCSI_BUSLOGIC, BusLogic.o, scsi)
+AC_DRIVER(u1434f, CONFIG_SCSI_U14_34F, u14-34f.o, scsi)
+AC_DRIVER(ultrastor, CONFIG_SCSI_ULTRASTOR, ultrastor.o, scsi)
+AC_DRIVER(aha152x, CONFIG_SCSI_AHA152X, aha152x.o, scsi)
+AC_DRIVER(aha1542, CONFIG_SCSI_AHA1542, aha1542.o, scsi)
+AC_DRIVER(aha1740, CONFIG_SCSI_AHA1740, aha1740.o, scsi)
+AC_DRIVER(aic7xxx, CONFIG_SCSI_AIC7XXX, aic7xxx.o, scsi)
+AC_DRIVER(futuredomain, CONFIG_SCSI_FUTURE_DOMAIN, fdomain.o, scsi)
+AC_DRIVER(in2000, CONFIG_SCSI_IN2000, in2000.o, scsi)
+AC_DRIVER(ncr5380, CONFIG_SCSI_GENERIC_NCR5380, g_NCR5380.o, scsi)
+AC_DRIVER(ncr53c406a, CONFIG_SCSI_NCR53C406A, NCR53c406a.o, scsi)
+AC_DRIVER(pas16, CONFIG_SCSI_PASS16, pas16.o, scsi)
+AC_DRIVER(seagate, CONFIG_SCSI_SEAGATE, seagate.o, scsi)
+AC_DRIVER(t128, CONFIG_SCSI_T128, t128.o, scsi)
+AC_DRIVER(ncr53c7xx, CONFIG_SCSI_NCR53C7xx, 53c78xx.o, scsi)
+AC_DRIVER(eatadma, CONFIG_SCSI_EATA_DMA, eata_dma.o, scsi)
+AC_DRIVER(eatapio, CONFIG_SCSI_EATA_PIO, eata_pio.o, scsi)
+AC_DRIVER(wd7000, CONFIG_SCSI_7000FASST, wd7000.o, scsi)
+AC_DRIVER(eata, CONFIG_SCSI_EATA, eata.o, scsi)
+AC_DRIVER(am53c974, CONFIG_SCSI_AM53C974, AM53C974.o, scsi)
+AC_DRIVER(dtc3280, CONFIG_SCSI_DTC3280, dtc.o, scsi)
+AC_DRIVER(ncr53c8xx, CONFIG_SCSI_NCR53C8XX, ncr53c8xx.o, scsi)
+AC_DRIVER(dc390w, CONFIG_SCSI_DC390W, tmscsiw.o, scsi)
+AC_DRIVER(dc390t, CONFIG_SCSI_DC390T, tmscsim.o, scsi)
+AC_DRIVER(ppa, CONFIG_SCSI_PPA, ppa.o, scsi)
+AC_DRIVER(qlogicfas, CONFIG_SCSI_QLOGIC_FAS, qlogicfas.o, scsi)
+AC_DRIVER(qlogicisp, CONFIG_SCSI_QLOGIC_ISP, qlogicisp.o, scsi)
+AC_DRIVER(gdth, CONFIG_SCSI_GDTH, gdth.o, scsi)
+
+
+dnl Dirty implementation...
+
+AC_ARG_ENABLE(flashpoint,,[
+if test ${enableval} = no; then
+ AC_DEFINE(CONFIG_SCSI_OMIT_FLASHPOINT)
+fi
+])
+
+
+dnl Ethernet controllers
+
+AC_DRIVER(ne2000, CONFIG_NE2000, ne.o 8390.o, net)
+AC_DRIVER(el2, CONFIG_EL2, 3c503.o 8390.o, net)
+AC_DRIVER(el3, CONFIG_EL3, 3c509.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)
+AC_DRIVER(ul32, CONFIG_ULTRA32, smc-ultra32.o 8390.o, net)
+AC_DRIVER(hplanplus, CONFIG_HPLAN_PLUS, hp-plus.o 8390.o, net)
+AC_DRIVER(hplan, CONFIG_HPLAN, hp.o 8390.o, net)
+AC_DRIVER(vortex, CONFIG_VORTEX, 3c59x.o, net)
+AC_DRIVER(seeq8005, CONFIG_SEEQ8005, seeq8005.o, net)
+AC_DRIVER(hp100, CONFIG_HP100, hp100.o, net)
+AC_DRIVER(ac3200, CONFIG_AC3200, ac3200.o 8390.o, net)
+AC_DRIVER(e2100, CONFIG_E2100, e2100.o 8390.o, net)
+AC_DRIVER(at1700, CONFIG_AT1700, at1700.o, net)
+AC_DRIVER(eth16i, CONFIG_ETH16I, eth16i.o, net)
+AC_DRIVER(znet, CONFIG_ZNET, znet.o, net)
+AC_DRIVER(eexpress, CONFIG_EEXPRESS, eexpress.o, net)
+AC_DRIVER(eexpresspro, CONFIG_EEXPRESS_PRO, eepro.o, net)
+AC_DRIVER(eexpresspro100, CONFIG_EEXPRESS_PRO100B, eepro100.o, net)
+AC_DRIVER(depca, CONFIG_DEPCA, depca.o, net)
+AC_DRIVER(ewrk3, CONFIG_EWRK3, ewrk3.o, net)
+AC_DRIVER(de4x5, CONFIG_DE4X5, de4x5.o, net)
+AC_DRIVER(apricot, CONFIG_APRICOT, apricot.o, net)
+AC_DRIVER(wavelan, CONFIG_WAVELAN, wavelan.o, net)
+AC_DRIVER(el16, CONFIG_EL16, 3c507.o, net)
+AC_DRIVER(elplus, CONFIG_ELPLUS, 3c505.o, net)
+AC_DRIVER(de600, CONFIG_DE600, de600.o, net)
+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, atp.o, net)
+AC_DRIVER(lance, CONFIG_LANCE, lance.o, net)
+AC_DRIVER(elcp, CONFIG_DEC_ELCP, tulip.o, net)
+AC_DRIVER(fmv18x, CONFIG_FMV18X, fmv18x.o, net)
+AC_DRIVER(3c515, CONFIG_3C515, 3c515.o, net)
+AC_DRIVER(pcnet32, CONFIG_PCNET32, pcnet32.o, net)
+AC_DRIVER(ne2kpci, CONFIG_NE2K_PCI, ne2k-pci.o 8390.o, net)
+AC_DRIVER(yellowfin, CONFIG_YELLOWFIN, yellowfin.o, net)
+AC_DRIVER(rtl8139, CONFIG_RTL8139, rtl8139.o, net)
+AC_DRIVER(epic, CONFIG_EPIC, epic100.o, net)
+AC_DRIVER(tlan, CONFIG_TLAN, tlan.o, net)
+AC_DRIVER(viarhine, CONFIG_VIA_RHINE, via-rhine.o, net)
+
+
+AC_OUTPUT(Makefile)
diff --git a/i386/linux/Makefile.in b/i386/linux/Makefile.in
new file mode 100644
index 0000000..cdcabb3
--- /dev/null
+++ b/i386/linux/Makefile.in
@@ -0,0 +1,207 @@
+# Makefile for Linux device drivers and the glue codes.
+# Copyright 1998, 1999 Free Software Foundation, Inc.
+#
+# Permission to use, copy, modify and distribute this software and its
+# documentation is hereby granted, provided that both the copyright
+# notice and this permission notice appear in all copies of the
+# software, derivative works or modified versions, and any portions
+# thereof, and that both notices appear in supporting documentation.
+#
+# THE FREE SOFTWARE FOUNDATION ALLOWS FREE USE OF THIS SOFTWARE IN ITS
+# "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY
+# LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE
+# USE OF THIS SOFTWARE.
+
+
+# Variables from `configure'.
+srcdir=@srcdir@
+systype=@systype@
+device_drivers=@device_drivers@
+
+sysdep=$(srcdir)/..
+linuxdir=../../linux
+linuxsrcdir=$(srcdir)/$(linuxdir)
+
+# Programs found by configure.
+CC = @CC@
+LD = @LD@
+
+CFLAGS = @CFLAGS@
+
+
+
+# Files for driver support.
+linux-c-files = version.c softirq.c dma.c resource.c printk.c \
+ bios32.c irq.c ctype.c vsprintf.c main.c misc.c sched.c \
+ kmem.c block.c setup.c
+
+# `dev' directory contains modified and glue source files.
+vpath %.c $(linuxsrcdir)/dev/kernel
+vpath %.c $(linuxsrcdir)/dev/init
+vpath %.c $(linuxsrcdir)/dev/arch/$(systype)/kernel
+vpath %.c $(linuxsrcdir)/dev/glue
+vpath %.c $(linuxsrcdir)/dev/lib
+
+# `src' directory contains original Linux source files.
+vpath %.c $(linuxsrcdir)/src/kernel
+vpath %.c $(linuxsrcdir)/src/init
+vpath %.c $(linuxsrcdir)/src/arch/$(systype)/kernel
+vpath %.c $(linuxsrcdir)/src/lib
+
+
+# XXX: Assembly source files must be treated separately... Uggg...
+linux-asm-files = delay.S semaphore.S
+vpath %.S $(linuxsrcdir)/dev/arch/$(systype)/lib
+vpath %.S $(linuxsrcdir)/src/arch/$(systype)/lib
+
+
+# Linux device drivers.
+linux-block-files = cmd640.c floppy.c genhd.c ide-cd.c ide.c rz1000.c triton.c
+vpath %.c $(linuxsrcdir)/dev/drivers/block
+vpath %.c $(linuxsrcdir)/src/drivers/block
+
+linux-net-files = auto_irq.c 3c501.c 3c503.c 3c505.c 3c507.c 3c509.c \
+ 3c59x.c 3c515.c 8390.c Space.c ac3200.c apricot.c at1700.c atp.c \
+ de4x5.c de600.c de620.c depca.c dev.c e2100.c eepro.c eepro100.c \
+ eexpress.c epic100.c eth16i.c ewrk3.c fmv18x.c hp-plus.c hp.c hp100.c \
+ lance.c ne.c ne2k-pci.c net_init.c ni52.c ni65.c pcnet32.c rtl8139.c \
+ seeq8005.c sk_g16.c smc-ultra.c smc-ultra32.c tlan.c tulip.c \
+ via-rhine.c wavelan.c wd.c yellowfin.c znet.c net.c
+vpath %.c $(linuxsrcdir)/dev/drivers/net
+vpath %.c $(linuxsrcdir)/dev/net/core
+vpath %.c $(linuxsrcdir)/src/drivers/net
+vpath %.c $(linuxsrcdir)/src/net/core
+
+linux-pci-files = pci.c
+vpath %.c $(linuxsrcdir)/dev/drivers/pci
+vpath %.c $(linuxsrcdir)/src/drivers/pci
+
+linux-scsi-files = 53c78xx.c AM53C974.c BusLogic.c NCR53c406a.c advansys.c \
+ aha152x.c aha1542.c aha1740.c aic7xxx.c constants.c dtc.c eata.c \
+ eata_dma.c eata_pio.c fdomain.c g_NCR5380.c gdth.c hosts.c in2000.c \
+ ncr53c8xx.c pas16.c ppa.c qlogicfas.c qlogicisp.c scsi.c scsi_ioctl.c \
+ scsi_proc.c scsicam.c sd.c sd_ioctl.c seagate.c sr.c sr_ioctl.c \
+ t128.c tmscsim.c tmscsiw.c u14-34f.c ultrastor.c wd7000.c
+vpath %.c $(linuxsrcdir)/dev/drivers/scsi
+vpath %.c $(linuxsrcdir)/src/drivers/scsi
+
+
+all-linux-files = $(linux-c-files) $(linux-block-files) \
+ $(linux-net-files) $(linux-pci-files) $(linux-scsi-files)
+
+# These are always used.
+linux-objs := $(subst .c,.o, $(linux-c-files) $(linux-pci-files)) genhd.o
+linux-objs += $(subst .S,.o, $(linux-asm-files))
+
+# These files need special flags for compilation; each one will
+# have a variable like wd7000.c-linux-flags with those flags.
+CFLAGS += $($(<F)-linux-flags)
+ASFLAGS += $($(<F)-linux-flags)
+
+CPPFLAGS = -DMACH -DCMU -DMACH_KERNEL -DKERNEL -DLINUX_DEV \
+ -DCONTINUATIONS -D__ELF__ -Di386 \
+ -I. -I.. -I$(srcdir)/.. -I../.. -I$(srcdir)/../.. \
+ -I$(srcdir)/../../include -I$(srcdir)/../../bogus \
+ -I$(srcdir)/../../util -I$(srcdir)/../../kern \
+ -I$(srcdir)/../../device -I$(sysdep)/i386at -I$(sysdep)/i386 \
+ -I$(sysdep)/include -I$(sysdep)/include/mach/sa -I$(sysdep)/bogus \
+ -I$(sysdep) -Wall
+
+# These flags are:
+# Instead of Mach's KERNEL, Linux uses __KERNEL__. Whee.
+# Arrange for special include directories too.
+# Because of the use of `extern inline' in some Linux header files without
+# corresponding text-segment definitions, we must always optimize.
+linux-gen-flags = -D__KERNEL__ -O2 \
+ -Idev/include -I$(srcdir)/dev/include \
+ -I$(linuxdir)/dev/include -I$(linuxdir)/src/include \
+ -I$(linuxsrcdir)/dev/include -I$(linuxsrcdir)/src/include
+linux-block-flags = -I$(linuxsrcdir)/dev/drivers/block \
+ -I$(linuxsrcdir)/src/drivers/block
+linux-net-flags = -I$(linuxsrcdir)/dev/drivers/net \
+ -I$(linuxsrcdir)/src/drivers/net
+linux-pci-flags = -I$(linuxsrcdir)/dev/drivers/pci \
+ -I$(linuxsrcdir)/src/drivers/pci
+linux-scsi-flags = -I$(linuxsrcdir)/dev/drivers/scsi \
+ -I$(linuxsrcdir)/src/drivers/scsi
+linux-asm-spec-flags = -D__KERNEL__ -D__ASSEMBLY__ -traditional \
+ -Idev/include -I$(linuxdir)/dev/include -I$(linuxdir)/src/include \
+ -I$(srcdir)/dev/include -I$(linuxsrcdir)/dev/include \
+ -I$(linuxsrcdir)/src/include
+
+
+# Here is where those specs are found.
+-include linux-flags
+
+# How to make this file:
+
+linux-flags: Makefile
+ rm -f $@
+ for i in $(linux-c-files); do \
+ echo $$i-linux-flags '= $$(linux-gen-flags)' >> $@; \
+ done
+ for i in $(linux-block-files); do \
+ echo $$i-linux-flags \
+ '= $$(linux-gen-flags) $$(linux-block-flags)' >> $@; \
+ done
+ for i in $(linux-net-files); do \
+ echo $$i-linux-flags \
+ '= $$(linux-gen-flags) $$(linux-net-flags)' >> $@; \
+ done
+ for i in $(linux-pci-files); do \
+ echo $$i-linux-flags \
+ '= $$(linux-gen-flags) $$(linux-pci-flags)' >> $@; \
+ done
+ for i in $(linux-scsi-files); do \
+ echo $$i-linux-flags \
+ '= $$(linux-gen-flags) $$(linux-scsi-flags)' >> $@; \
+ done
+ for i in $(linux-asm-files); do \
+ echo $$i-linux-flags '= $$(linux-asm-spec-flags)' >> $@; \
+ done
+ echo 'linux-flags-done='$(all-linux-files) $(linux-asm-files) >> $@
+
+# If we haven't included `linux-flags' properly, then don't try and build
+# .d files.
+ifneq ($(linux-flags-done),$(all-linux-files) $(linux-asm-files))
+no_deps=t
+endif
+
+linux-objs += $(sort $(device_drivers))
+
+
+
+# Autoconf support
+
+$(srcdir)/configure: $(srcdir)/Drivers.in $(srcdir)/../../Drivers.macros
+ cd $(srcdir) && rm -f configure && autoconf Drivers.in > configure
+
+device-drivers.h: $(srcdir)/Makefile.in config.status
+ ./config.status
+
+config.status: $(srcdir)/configure
+ ./config.status --recheck
+
+vpath %.in $(srcdir)
+vpath configure $(srcdir)
+
+
+
+# Create a linuxdev object file.
+all: linux.o
+
+linux.o: $(linux-objs) $(srcdir)/configure
+ rm -f $@
+ $(LD) -r -o $@ $(linux-objs)
+
+clean:
+ rm -f $(linux-objs) linux.o
+
+distclean: clean
+ rm -f $(linuxdir)/src/include/asm $(linuxdir)/dev/include/asm
+ rm -f config.status config.log Makefile device-drivers.h
+
+mostlyclean: distclean
+
+maintainer-clean: mostlyclean
+ rm -f $(srcdir)/configure
diff --git a/i386/linux/configure b/i386/linux/configure
new file mode 100755
index 0000000..bdd7e12
--- /dev/null
+++ b/i386/linux/configure
@@ -0,0 +1,3581 @@
+#! /bin/sh
+
+# Guess values for system-dependent variables and create Makefiles.
+# Generated automatically using autoconf version 2.14.1
+# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
+#
+# This configure script is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+
+# Defaults:
+ac_help=
+ac_default_prefix=/usr/local
+# Any additions from configure.in:
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+ac_help="$ac_help
+"
+
+# Initialize some variables set by options.
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+build=NONE
+cache_file=./config.cache
+exec_prefix=NONE
+host=NONE
+no_create=
+nonopt=NONE
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+target=NONE
+verbose=
+x_includes=NONE
+x_libraries=NONE
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datadir='${prefix}/share'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+libdir='${exec_prefix}/lib'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+infodir='${prefix}/info'
+mandir='${prefix}/man'
+
+# Initialize some other variables.
+subdirs=
+MFLAGS= MAKEFLAGS=
+SHELL=${CONFIG_SHELL-/bin/sh}
+# Maximum number of lines to put in a shell here document.
+ac_max_here_lines=12
+
+ac_prev=
+for ac_option
+do
+
+ # If the previous option needs an argument, assign it.
+ if test -n "$ac_prev"; then
+ eval "$ac_prev=\$ac_option"
+ ac_prev=
+ continue
+ fi
+
+ case "$ac_option" in
+ -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) ac_optarg= ;;
+ esac
+
+ # Accept the important Cygnus configure options, so we can diagnose typos.
+
+ case "$ac_option" in
+
+ -bindir | --bindir | --bindi | --bind | --bin | --bi)
+ ac_prev=bindir ;;
+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+ bindir="$ac_optarg" ;;
+
+ -build | --build | --buil | --bui | --bu)
+ ac_prev=build ;;
+ -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+ build="$ac_optarg" ;;
+
+ -cache-file | --cache-file | --cache-fil | --cache-fi \
+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+ ac_prev=cache_file ;;
+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+ cache_file="$ac_optarg" ;;
+
+ -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
+ ac_prev=datadir ;;
+ -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
+ | --da=*)
+ datadir="$ac_optarg" ;;
+
+ -disable-* | --disable-*)
+ ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
+ { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
+ fi
+ ac_feature=`echo $ac_feature| sed 's/-/_/g'`
+ eval "enable_${ac_feature}=no" ;;
+
+ -enable-* | --enable-*)
+ ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
+ { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
+ fi
+ ac_feature=`echo $ac_feature| sed 's/-/_/g'`
+ case "$ac_option" in
+ *=*) ;;
+ *) ac_optarg=yes ;;
+ esac
+ eval "enable_${ac_feature}='$ac_optarg'" ;;
+
+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+ | --exec | --exe | --ex)
+ ac_prev=exec_prefix ;;
+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+ | --exec=* | --exe=* | --ex=*)
+ exec_prefix="$ac_optarg" ;;
+
+ -gas | --gas | --ga | --g)
+ # Obsolete; use --with-gas.
+ with_gas=yes ;;
+
+ -help | --help | --hel | --he)
+ # Omit some internal or obsolete options to make the list less imposing.
+ # This message is too long to be a string in the A/UX 3.1 sh.
+ cat << EOF
+Usage: configure [options] [host]
+Options: [defaults in brackets after descriptions]
+Configuration:
+ --cache-file=FILE cache test results in FILE
+ --help print this message
+ --no-create do not create output files
+ --quiet, --silent do not print \`checking...' messages
+ --version print the version of autoconf that created configure
+Directory and file names:
+ --prefix=PREFIX install architecture-independent files in PREFIX
+ [$ac_default_prefix]
+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
+ [same as prefix]
+ --bindir=DIR user executables in DIR [EPREFIX/bin]
+ --sbindir=DIR system admin executables in DIR [EPREFIX/sbin]
+ --libexecdir=DIR program executables in DIR [EPREFIX/libexec]
+ --datadir=DIR read-only architecture-independent data in DIR
+ [PREFIX/share]
+ --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc]
+ --sharedstatedir=DIR modifiable architecture-independent data in DIR
+ [PREFIX/com]
+ --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
+ --libdir=DIR object code libraries in DIR [EPREFIX/lib]
+ --includedir=DIR C header files in DIR [PREFIX/include]
+ --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
+ --infodir=DIR info documentation in DIR [PREFIX/info]
+ --mandir=DIR man documentation in DIR [PREFIX/man]
+ --srcdir=DIR find the sources in DIR [configure dir or ..]
+ --program-prefix=PREFIX prepend PREFIX to installed program names
+ --program-suffix=SUFFIX append SUFFIX to installed program names
+ --program-transform-name=PROGRAM
+ run sed PROGRAM on installed program names
+EOF
+ cat << EOF
+Host type:
+ --build=BUILD configure for building on BUILD [BUILD=HOST]
+ --host=HOST configure for HOST [guessed]
+ --target=TARGET configure for TARGET [TARGET=HOST]
+Features and packages:
+ --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
+ --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
+ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
+ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
+ --x-includes=DIR X include files are in DIR
+ --x-libraries=DIR X library files are in DIR
+EOF
+ if test -n "$ac_help"; then
+ echo "--enable and --with options recognized:$ac_help"
+ fi
+ exit 0 ;;
+
+ -host | --host | --hos | --ho)
+ ac_prev=host ;;
+ -host=* | --host=* | --hos=* | --ho=*)
+ host="$ac_optarg" ;;
+
+ -includedir | --includedir | --includedi | --included | --include \
+ | --includ | --inclu | --incl | --inc)
+ ac_prev=includedir ;;
+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+ | --includ=* | --inclu=* | --incl=* | --inc=*)
+ includedir="$ac_optarg" ;;
+
+ -infodir | --infodir | --infodi | --infod | --info | --inf)
+ ac_prev=infodir ;;
+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+ infodir="$ac_optarg" ;;
+
+ -libdir | --libdir | --libdi | --libd)
+ ac_prev=libdir ;;
+ -libdir=* | --libdir=* | --libdi=* | --libd=*)
+ libdir="$ac_optarg" ;;
+
+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+ | --libexe | --libex | --libe)
+ ac_prev=libexecdir ;;
+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+ | --libexe=* | --libex=* | --libe=*)
+ libexecdir="$ac_optarg" ;;
+
+ -localstatedir | --localstatedir | --localstatedi | --localstated \
+ | --localstate | --localstat | --localsta | --localst \
+ | --locals | --local | --loca | --loc | --lo)
+ ac_prev=localstatedir ;;
+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+ | --localstate=* | --localstat=* | --localsta=* | --localst=* \
+ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
+ localstatedir="$ac_optarg" ;;
+
+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+ ac_prev=mandir ;;
+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+ mandir="$ac_optarg" ;;
+
+ -nfp | --nfp | --nf)
+ # Obsolete; use --without-fp.
+ with_fp=no ;;
+
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c)
+ no_create=yes ;;
+
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+ no_recursion=yes ;;
+
+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+ | --oldin | --oldi | --old | --ol | --o)
+ ac_prev=oldincludedir ;;
+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+ oldincludedir="$ac_optarg" ;;
+
+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+ ac_prev=prefix ;;
+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+ prefix="$ac_optarg" ;;
+
+ -program-prefix | --program-prefix | --program-prefi | --program-pref \
+ | --program-pre | --program-pr | --program-p)
+ ac_prev=program_prefix ;;
+ -program-prefix=* | --program-prefix=* | --program-prefi=* \
+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+ program_prefix="$ac_optarg" ;;
+
+ -program-suffix | --program-suffix | --program-suffi | --program-suff \
+ | --program-suf | --program-su | --program-s)
+ ac_prev=program_suffix ;;
+ -program-suffix=* | --program-suffix=* | --program-suffi=* \
+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+ program_suffix="$ac_optarg" ;;
+
+ -program-transform-name | --program-transform-name \
+ | --program-transform-nam | --program-transform-na \
+ | --program-transform-n | --program-transform- \
+ | --program-transform | --program-transfor \
+ | --program-transfo | --program-transf \
+ | --program-trans | --program-tran \
+ | --progr-tra | --program-tr | --program-t)
+ ac_prev=program_transform_name ;;
+ -program-transform-name=* | --program-transform-name=* \
+ | --program-transform-nam=* | --program-transform-na=* \
+ | --program-transform-n=* | --program-transform-=* \
+ | --program-transform=* | --program-transfor=* \
+ | --program-transfo=* | --program-transf=* \
+ | --program-trans=* | --program-tran=* \
+ | --progr-tra=* | --program-tr=* | --program-t=*)
+ program_transform_name="$ac_optarg" ;;
+
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ silent=yes ;;
+
+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+ ac_prev=sbindir ;;
+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+ | --sbi=* | --sb=*)
+ sbindir="$ac_optarg" ;;
+
+ -sharedstatedir | --sharedstatedir | --sharedstatedi \
+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+ | --sharedst | --shareds | --shared | --share | --shar \
+ | --sha | --sh)
+ ac_prev=sharedstatedir ;;
+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+ | --sha=* | --sh=*)
+ sharedstatedir="$ac_optarg" ;;
+
+ -site | --site | --sit)
+ ac_prev=site ;;
+ -site=* | --site=* | --sit=*)
+ site="$ac_optarg" ;;
+
+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+ ac_prev=srcdir ;;
+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+ srcdir="$ac_optarg" ;;
+
+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+ | --syscon | --sysco | --sysc | --sys | --sy)
+ ac_prev=sysconfdir ;;
+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+ sysconfdir="$ac_optarg" ;;
+
+ -target | --target | --targe | --targ | --tar | --ta | --t)
+ ac_prev=target ;;
+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+ target="$ac_optarg" ;;
+
+ -v | -verbose | --verbose | --verbos | --verbo | --verb)
+ verbose=yes ;;
+
+ -version | --version | --versio | --versi | --vers)
+ echo "configure generated by autoconf version 2.14.1"
+ exit 0 ;;
+
+ -with-* | --with-*)
+ ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
+ { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
+ fi
+ ac_package=`echo $ac_package| sed 's/-/_/g'`
+ case "$ac_option" in
+ *=*) ;;
+ *) ac_optarg=yes ;;
+ esac
+ eval "with_${ac_package}='$ac_optarg'" ;;
+
+ -without-* | --without-*)
+ ac_package=`echo $ac_option|sed -e 's/-*without-//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
+ { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
+ fi
+ ac_package=`echo $ac_package| sed 's/-/_/g'`
+ eval "with_${ac_package}=no" ;;
+
+ --x)
+ # Obsolete; use --with-x.
+ with_x=yes ;;
+
+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+ | --x-incl | --x-inc | --x-in | --x-i)
+ ac_prev=x_includes ;;
+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+ x_includes="$ac_optarg" ;;
+
+ -x-libraries | --x-libraries | --x-librarie | --x-librari \
+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+ ac_prev=x_libraries ;;
+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+ x_libraries="$ac_optarg" ;;
+
+ -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
+ ;;
+
+ *)
+ if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
+ echo "configure: warning: $ac_option: invalid host type" 1>&2
+ fi
+ if test "x$nonopt" != xNONE; then
+ { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
+ fi
+ nonopt="$ac_option"
+ ;;
+
+ esac
+done
+
+if test -n "$ac_prev"; then
+ { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
+fi
+
+trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
+
+# File descriptor usage:
+# 0 standard input
+# 1 file creation
+# 2 errors and warnings
+# 3 some systems may open it to /dev/tty
+# 4 used on the Kubota Titan
+# 6 checking for... messages and results
+# 5 compiler messages saved in config.log
+if test "$silent" = yes; then
+ exec 6>/dev/null
+else
+ exec 6>&1
+fi
+exec 5>./config.log
+
+echo "\
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+" 1>&5
+
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Also quote any args containing shell metacharacters.
+ac_configure_args=
+for ac_arg
+do
+ case "$ac_arg" in
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c) ;;
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
+ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
+ ac_configure_args="$ac_configure_args '$ac_arg'" ;;
+ *) ac_configure_args="$ac_configure_args $ac_arg" ;;
+ esac
+done
+
+# NLS nuisances.
+# Only set these to C if already set. These must not be set unconditionally
+# because not all systems understand e.g. LANG=C (notably SCO).
+# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
+# Non-C LC_CTYPE values break the ctype check.
+if test "${LANG+set}" = set; then LANG=C; export LANG; fi
+if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
+if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
+if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -rf conftest* confdefs.h
+# AIX cpp loses on an empty file, so make sure it contains at least a newline.
+echo > confdefs.h
+
+# A filename unique to this package, relative to the directory that
+# configure is in, which we can look for to find out if srcdir is correct.
+ac_unique_file=dev/include/linux/autoconf.h
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+ ac_srcdir_defaulted=yes
+ # Try the directory containing this script, then its parent.
+ ac_prog=$0
+ ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
+ test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
+ srcdir=$ac_confdir
+ if test ! -r $srcdir/$ac_unique_file; then
+ srcdir=..
+ fi
+else
+ ac_srcdir_defaulted=no
+fi
+if test ! -r $srcdir/$ac_unique_file; then
+ if test "$ac_srcdir_defaulted" = yes; then
+ { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
+ else
+ { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
+ fi
+fi
+srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
+
+# Prefer explicitly selected file to automatically selected ones.
+if test -z "$CONFIG_SITE"; then
+ if test "x$prefix" != xNONE; then
+ CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
+ else
+ CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
+ fi
+fi
+for ac_site_file in $CONFIG_SITE; do
+ if test -r "$ac_site_file"; then
+ echo "loading site script $ac_site_file"
+ . "$ac_site_file"
+ fi
+done
+
+if test -r "$cache_file"; then
+ echo "loading cache $cache_file"
+ test -f "$cache_file" && . $cache_file
+else
+ echo "creating cache $cache_file"
+ > $cache_file
+fi
+
+ac_ext=c
+# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
+ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
+cross_compiling=$ac_cv_prog_cc_cross
+
+ac_exeext=
+ac_objext=o
+if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
+ # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
+ if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
+ ac_n= ac_c='
+' ac_t=' '
+ else
+ ac_n=-n ac_c= ac_t=
+ fi
+else
+ ac_n= ac_c='\c' ac_t=
+fi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ac_aux_dir=
+for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
+ if test -f $ac_dir/install-sh; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install-sh -c"
+ break
+ elif test -f $ac_dir/install.sh; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install.sh -c"
+ break
+ fi
+done
+if test -z "$ac_aux_dir"; then
+ { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
+fi
+ac_config_guess="$SHELL $ac_aux_dir/config.guess"
+ac_config_sub="$SHELL $ac_aux_dir/config.sub"
+ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
+
+
+echo $ac_n "checking host system type""... $ac_c" 1>&6
+echo "configure:811: checking host system type" >&5
+if test "x$ac_cv_host" = "x" || (test "x$host" != "xNONE" && test "x$host" != "x$ac_cv_host_alias"); then
+
+# Make sure we can run config.sub.
+ if $ac_config_sub sun4 >/dev/null 2>&1; then :
+ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
+ fi
+
+ ac_cv_host_alias=$host
+ case "$ac_cv_host_alias" in
+ NONE)
+ case $nonopt in
+ NONE)
+ if ac_cv_host_alias=`$ac_config_guess`; then :
+ else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; }
+ fi ;;
+ *) ac_cv_host_alias=$nonopt ;;
+ esac ;;
+ esac
+
+ ac_cv_host=`$ac_config_sub $ac_cv_host_alias`
+ ac_cv_host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+ ac_cv_host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+ ac_cv_host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+else
+ echo $ac_n "(cached) $ac_c" 1>&6
+fi
+
+echo "$ac_t""$ac_cv_host" 1>&6
+
+host=$ac_cv_host
+host_alias=$ac_cv_host_alias
+host_cpu=$ac_cv_host_cpu
+host_vendor=$ac_cv_host_vendor
+host_os=$ac_cv_host_os
+
+
+
+
+
+case "$host_cpu" in
+i386) cat >> confdefs.h <<\EOF
+#define CONFIG_M386 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define CPU 386
+EOF
+ ;;
+i486) cat >> confdefs.h <<\EOF
+#define CONFIG_M486 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define CPU 486
+EOF
+ ;;
+i586) cat >> confdefs.h <<\EOF
+#define CONFIG_M586 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define CPU 586
+EOF
+ ;;
+i686) cat >> confdefs.h <<\EOF
+#define CONFIG_M686 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define CPU 686
+EOF
+ ;;
+*) cat >> confdefs.h <<\EOF
+#define CONFIG_M486 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define CPU 486
+EOF
+ ;;
+esac
+
+
+case "$host_cpu" in
+i[3456]86) systype=i386 ;;
+esac
+
+
+
+
+echo $ac_n "checking build system type""... $ac_c" 1>&6
+echo "configure:903: checking build system type" >&5
+if test "x$ac_cv_build" = "x" || (test "x$build" != "xNONE" && test "x$build" != "x$ac_cv_build_alias"); then
+
+# Make sure we can run config.sub.
+ if $ac_config_sub sun4 >/dev/null 2>&1; then :
+ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
+ fi
+
+ ac_cv_build_alias=$build
+ case "$ac_cv_build_alias" in
+ NONE)
+ case $nonopt in
+ NONE)
+ ac_cv_build_alias=$host_alias ;;
+
+ *) ac_cv_build_alias=$nonopt ;;
+ esac ;;
+ esac
+
+ ac_cv_build=`$ac_config_sub $ac_cv_build_alias`
+ ac_cv_build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+ ac_cv_build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+ ac_cv_build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+else
+ echo $ac_n "(cached) $ac_c" 1>&6
+fi
+
+echo "$ac_t""$ac_cv_build" 1>&6
+
+build=$ac_cv_build
+build_alias=$ac_cv_build_alias
+build_cpu=$ac_cv_build_cpu
+build_vendor=$ac_cv_build_vendor
+build_os=$ac_cv_build_os
+
+
+
+
+if test $host != $build; then
+ ac_tool_prefix=${host_alias}-
+else
+ ac_tool_prefix=
+fi
+
+# Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
+set dummy ${ac_tool_prefix}gcc; ac_word=$2
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+echo "configure:950: checking for $ac_word" >&5
+if eval "test \"\${ac_cv_prog_CC+set}\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_dummy="$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/$ac_word; then
+ ac_cv_prog_CC="${ac_tool_prefix}gcc"
+ break
+ fi
+ done
+ IFS="$ac_save_ifs"
+ test -z "$ac_cv_prog_CC" && ac_cv_prog_CC="gcc"
+fi
+fi
+CC="$ac_cv_prog_CC"
+if test -n "$CC"; then
+ echo "$ac_t""$CC" 1>&6
+else
+ echo "$ac_t""no" 1>&6
+fi
+
+
+
+# Extract the first word of "gcc", so it can be a program name with args.
+set dummy gcc; ac_word=$2
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+echo "configure:982: checking for $ac_word" >&5
+if eval "test \"\${ac_cv_prog_CC+set}\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_dummy="$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/$ac_word; then
+ ac_cv_prog_CC="gcc"
+ break
+ fi
+ done
+ IFS="$ac_save_ifs"
+fi
+fi
+CC="$ac_cv_prog_CC"
+if test -n "$CC"; then
+ echo "$ac_t""$CC" 1>&6
+else
+ echo "$ac_t""no" 1>&6
+fi
+
+if test -z "$CC"; then
+ # Extract the first word of "cc", so it can be a program name with args.
+set dummy cc; ac_word=$2
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+echo "configure:1012: checking for $ac_word" >&5
+if eval "test \"\${ac_cv_prog_CC+set}\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_prog_rejected=no
+ ac_dummy="$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/$ac_word; then
+ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
+ ac_prog_rejected=yes
+ continue
+ fi
+ ac_cv_prog_CC="cc"
+ break
+ fi
+ done
+ IFS="$ac_save_ifs"
+if test $ac_prog_rejected = yes; then
+ # We found a bogon in the path, so make sure we never use it.
+ set dummy $ac_cv_prog_CC
+ shift
+ if test $# -gt 0; then
+ # We chose a different compiler from the bogus one.
+ # However, it has the same basename, so the bogon will be chosen
+ # first if we set CC to just the basename; use the full file name.
+ shift
+ set dummy "$ac_dir/$ac_word" "$@"
+ shift
+ ac_cv_prog_CC="$@"
+ fi
+fi
+fi
+fi
+CC="$ac_cv_prog_CC"
+if test -n "$CC"; then
+ echo "$ac_t""$CC" 1>&6
+else
+ echo "$ac_t""no" 1>&6
+fi
+
+ test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
+fi
+
+echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
+echo "configure:1061: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
+
+ac_ext=c
+# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
+ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
+cross_compiling=$ac_cv_prog_cc_cross
+
+cat > conftest.$ac_ext << EOF
+
+#line 1072 "configure"
+#include "confdefs.h"
+
+main(){return(0);}
+EOF
+if { (eval echo configure:1077: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ ac_cv_prog_cc_works=yes
+ # If we can't run a trivial program, we are probably using a cross compiler.
+ if (./conftest; exit) 2>/dev/null; then
+ ac_cv_prog_cc_cross=no
+ else
+ ac_cv_prog_cc_cross=yes
+ fi
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_cv_prog_cc_works=no
+fi
+rm -fr conftest*
+ac_ext=c
+# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
+ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
+cross_compiling=$ac_cv_prog_cc_cross
+
+echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
+if test $ac_cv_prog_cc_works = no; then
+ cross_linkable=no
+ ac_cv_prog_cc_cross=yes
+ # AC_MSG_ERROR([installation or configuration problem: C compiler cannot create executables.])
+else
+ cross_linkable=yes
+fi
+echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
+echo "configure:1107: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
+echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
+
+cross_compiling=$ac_cv_prog_cc_cross
+
+echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
+echo "configure:1113: checking whether we are using GNU C" >&5
+if eval "test \"\${ac_cv_prog_gcc+set}\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ cat > conftest.c <<EOF
+#ifdef __GNUC__
+ yes;
+#endif
+EOF
+if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1122: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
+ ac_cv_prog_gcc=yes
+else
+ ac_cv_prog_gcc=no
+fi
+fi
+
+echo "$ac_t""$ac_cv_prog_gcc" 1>&6
+
+if test $ac_cv_prog_gcc = yes; then
+ GCC=yes
+ ac_test_CFLAGS="${CFLAGS+set}"
+ ac_save_CFLAGS="$CFLAGS"
+ CFLAGS=
+ if test "$ac_test_CFLAGS" = set; then
+ CFLAGS="$ac_save_CFLAGS"
+ else
+ # Add "-O" to both the CC and CPP commands, to eliminate possible confusion
+ # that results from __OPTIMIZE__ being defined for CC but not CPP.
+ if echo "$CC " | grep ' -O[1-9 ]' > /dev/null 2>&1; then
+ : # already optimizing
+ else
+ CC="$CC -O"
+ ac_cv_prog_CC="$CC"
+ fi
+ fi
+else
+ GCC=
+fi
+
+
+# Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
+set dummy ${ac_tool_prefix}ld; ac_word=$2
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+echo "configure:1156: checking for $ac_word" >&5
+if eval "test \"\${ac_cv_prog_LD+set}\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test -n "$LD"; then
+ ac_cv_prog_LD="$LD" # Let the user override the test.
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_dummy="$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/$ac_word; then
+ ac_cv_prog_LD="${ac_tool_prefix}ld"
+ break
+ fi
+ done
+ IFS="$ac_save_ifs"
+ test -z "$ac_cv_prog_LD" && ac_cv_prog_LD="ld"
+fi
+fi
+LD="$ac_cv_prog_LD"
+if test -n "$LD"; then
+ echo "$ac_t""$LD" 1>&6
+else
+ echo "$ac_t""no" 1>&6
+fi
+
+
+
+
+
+
+mkdir_p ()
+{
+ if test ! -d `dirname $1`; then
+ mkdir_p `dirname $1`
+ fi
+ mkdir $1;
+}
+
+if test ! -d ../../linux/src/include; then
+ mkdir_p ../../linux/src/include
+fi
+if test ! -d ../../linux/dev/include; then
+ mkdir_p ../../linux/dev/include
+fi
+
+ln -sf ../../../i386/linux/${srcdir}/../../linux/src/include/asm-${systype} \
+ ../../linux/src/include/asm
+ln -sf ../../../i386/linux/${srcdir}/../../linux/dev/include/asm-${systype} \
+ ../../linux/dev/include/asm
+
+
+
+
+# Checking for alias 3c501
+# Check whether --enable-3c501 or --disable-3c501 was given.
+if test "${enable_3c501+set}" = set; then
+ enableval="$enable_3c501"
+ enable_el1="$enable_3c501"
+
+fi
+
+
+# Checking for alias 3c503
+# Check whether --enable-3c503 or --disable-3c503 was given.
+if test "${enable_3c503+set}" = set; then
+ enableval="$enable_3c503"
+ enable_el2="$enable_3c503"
+
+fi
+
+
+# Checking for alias 3c509
+# Check whether --enable-3c509 or --disable-3c509 was given.
+if test "${enable_3c509+set}" = set; then
+ enableval="$enable_3c509"
+ enable_el3="$enable_3c509"
+
+fi
+
+
+# Checking for alias 3c579
+# Check whether --enable-3c579 or --disable-3c579 was given.
+if test "${enable_3c579+set}" = set; then
+ enableval="$enable_3c579"
+ enable_el3="$enable_3c579"
+
+fi
+
+
+# Checking for alias 3c59x
+# Check whether --enable-3c59x or --disable-3c59x was given.
+if test "${enable_3c59x+set}" = set; then
+ enableval="$enable_3c59x"
+ enable_vortex="$enable_3c59x"
+
+fi
+
+
+# Checking for alias 3c90x
+# Check whether --enable-3c90x or --disable-3c90x was given.
+if test "${enable_3c90x+set}" = set; then
+ enableval="$enable_3c90x"
+ enable_vortex="$enable_3c90x"
+
+fi
+
+
+# Checking for alias hpj2577
+# Check whether --enable-hpj2577 or --disable-hpj2577 was given.
+if test "${enable_hpj2577+set}" = set; then
+ enableval="$enable_hpj2577"
+ enable_hp100="$enable_hpj2577"
+
+fi
+
+
+# Checking for alias hpj2573
+# Check whether --enable-hpj2573 or --disable-hpj2573 was given.
+if test "${enable_hpj2573+set}" = set; then
+ enableval="$enable_hpj2573"
+ enable_hp100="$enable_hpj2573"
+
+fi
+
+
+# Checking for alias hpj2585
+# Check whether --enable-hpj2585 or --disable-hpj2585 was given.
+if test "${enable_hpj2585+set}" = set; then
+ enableval="$enable_hpj2585"
+ enable_hp100="$enable_hpj2585"
+
+fi
+
+
+# Checking for alias hp27248b
+# Check whether --enable-hp27248b or --disable-hp27248b was given.
+if test "${enable_hp27248b+set}" = set; then
+ enableval="$enable_hp27248b"
+ enable_hp100="$enable_hp27248b"
+
+fi
+
+
+# Checking for alias eth32
+# Check whether --enable-eth32 or --disable-eth32 was given.
+if test "${enable_eth32+set}" = set; then
+ enableval="$enable_eth32"
+ enable_eth16i="$enable_eth32"
+
+fi
+
+
+# Checking for alias znote
+# Check whether --enable-znote or --disable-znote was given.
+if test "${enable_znote+set}" = set; then
+ enableval="$enable_znote"
+ enable_znet="$enable_znote"
+
+fi
+
+
+# Checking for alias de100
+# Check whether --enable-de100 or --disable-de100 was given.
+if test "${enable_de100+set}" = set; then
+ enableval="$enable_de100"
+ enable_depca="$enable_de100"
+
+fi
+
+
+# Checking for alias de101
+# Check whether --enable-de101 or --disable-de101 was given.
+if test "${enable_de101+set}" = set; then
+ enableval="$enable_de101"
+ enable_depca="$enable_de101"
+
+fi
+
+
+# Checking for alias de200
+# Check whether --enable-de200 or --disable-de200 was given.
+if test "${enable_de200+set}" = set; then
+ enableval="$enable_de200"
+ enable_depca="$enable_de200"
+
+fi
+
+
+# Checking for alias de201
+# Check whether --enable-de201 or --disable-de201 was given.
+if test "${enable_de201+set}" = set; then
+ enableval="$enable_de201"
+ enable_depca="$enable_de201"
+
+fi
+
+
+# Checking for alias de202
+# Check whether --enable-de202 or --disable-de202 was given.
+if test "${enable_de202+set}" = set; then
+ enableval="$enable_de202"
+ enable_depca="$enable_de202"
+
+fi
+
+
+# Checking for alias de210
+# Check whether --enable-de210 or --disable-de210 was given.
+if test "${enable_de210+set}" = set; then
+ enableval="$enable_de210"
+ enable_depca="$enable_de210"
+
+fi
+
+
+# Checking for alias de422
+# Check whether --enable-de422 or --disable-de422 was given.
+if test "${enable_de422+set}" = set; then
+ enableval="$enable_de422"
+ enable_depca="$enable_de422"
+
+fi
+
+
+# Checking for alias de203
+# Check whether --enable-de203 or --disable-de203 was given.
+if test "${enable_de203+set}" = set; then
+ enableval="$enable_de203"
+ enable_ewrk3="$enable_de203"
+
+fi
+
+
+# Checking for alias de204
+# Check whether --enable-de204 or --disable-de204 was given.
+if test "${enable_de204+set}" = set; then
+ enableval="$enable_de204"
+ enable_ewrk3="$enable_de204"
+
+fi
+
+
+# Checking for alias de205
+# Check whether --enable-de205 or --disable-de205 was given.
+if test "${enable_de205+set}" = set; then
+ enableval="$enable_de205"
+ enable_ewrk3="$enable_de205"
+
+fi
+
+
+# Checking for alias de425
+# Check whether --enable-de425 or --disable-de425 was given.
+if test "${enable_de425+set}" = set; then
+ enableval="$enable_de425"
+ enable_de4x5="$enable_de425"
+
+fi
+
+
+# Checking for alias de434
+# Check whether --enable-de434 or --disable-de434 was given.
+if test "${enable_de434+set}" = set; then
+ enableval="$enable_de434"
+ enable_de4x5="$enable_de434"
+
+fi
+
+
+# Checking for alias de435
+# Check whether --enable-de435 or --disable-de435 was given.
+if test "${enable_de435+set}" = set; then
+ enableval="$enable_de435"
+ enable_de4x5="$enable_de435"
+
+fi
+
+
+# Checking for alias de450
+# Check whether --enable-de450 or --disable-de450 was given.
+if test "${enable_de450+set}" = set; then
+ enableval="$enable_de450"
+ enable_de4x5="$enable_de450"
+
+fi
+
+
+# Checking for alias de500
+# Check whether --enable-de500 or --disable-de500 was given.
+if test "${enable_de500+set}" = set; then
+ enableval="$enable_de500"
+ enable_de4x5="$enable_de500"
+
+fi
+
+
+# Checking for alias 3c507
+# Check whether --enable-3c507 or --disable-3c507 was given.
+if test "${enable_3c507+set}" = set; then
+ enableval="$enable_3c507"
+ enable_el16="$enable_3c507"
+
+fi
+
+
+# Checking for alias 3c505
+# Check whether --enable-3c505 or --disable-3c505 was given.
+if test "${enable_3c505+set}" = set; then
+ enableval="$enable_3c505"
+ enable_elplus="$enable_3c505"
+
+fi
+
+
+# Checking for alias ne1000
+# Check whether --enable-ne1000 or --disable-ne1000 was given.
+if test "${enable_ne1000+set}" = set; then
+ enableval="$enable_ne1000"
+ enable_ne2000="$enable_ne1000"
+
+fi
+
+
+# Checking for alias at1500
+# Check whether --enable-at1500 or --disable-at1500 was given.
+if test "${enable_at1500+set}" = set; then
+ enableval="$enable_at1500"
+ enable_lance="$enable_at1500"
+
+fi
+
+
+# Checking for alias ne2100
+# Check whether --enable-ne2100 or --disable-ne2100 was given.
+if test "${enable_ne2100+set}" = set; then
+ enableval="$enable_ne2100"
+ enable_lance="$enable_ne2100"
+
+fi
+
+
+# Checking for alias tulip
+# Check whether --enable-tulip or --disable-tulip was given.
+if test "${enable_tulip+set}" = set; then
+ enableval="$enable_tulip"
+ enable_elcp="$enable_tulip"
+
+fi
+
+
+# Checking for alias rtl8129
+# Check whether --enable-rtl8129 or --disable-rtl8129 was given.
+if test "${enable_rtl8129+set}" = set; then
+ enableval="$enable_rtl8129"
+ enable_rtl8139="$enable_rtl8129"
+
+fi
+
+
+# Checking for alias aha2825
+# Check whether --enable-aha2825 or --disable-aha2825 was given.
+if test "${enable_aha2825+set}" = set; then
+ enableval="$enable_aha2825"
+ enable_aha152x="$enable_aha2825"
+
+fi
+
+
+# Checking for alias ncr53c400
+# Check whether --enable-ncr53c400 or --disable-ncr53c400 was given.
+if test "${enable_ncr53c400+set}" = set; then
+ enableval="$enable_ncr53c400"
+ enable_ncr5380="$enable_ncr53c400"
+
+fi
+
+
+# Checking for alias t128f
+# Check whether --enable-t128f or --disable-t128f was given.
+if test "${enable_t128f+set}" = set; then
+ enableval="$enable_t128f"
+ enable_t128="$enable_t128f"
+
+fi
+
+
+# Checking for alias t228
+# Check whether --enable-t228 or --disable-t228 was given.
+if test "${enable_t228+set}" = set; then
+ enableval="$enable_t228"
+ enable_t128="$enable_t228"
+
+fi
+
+
+# Checking for alias am79c974
+# Check whether --enable-am79c974 or --disable-am79c974 was given.
+if test "${enable_am79c974+set}" = set; then
+ enableval="$enable_am79c974"
+ enable_am53c974="$enable_am79c974"
+
+fi
+
+
+# Checking for alias dtc3180
+# Check whether --enable-dtc3180 or --disable-dtc3180 was given.
+if test "${enable_dtc3180+set}" = set; then
+ enableval="$enable_dtc3180"
+ enable_dtc3280="$enable_dtc3180"
+
+fi
+
+
+# Checking for alias dc390u
+# Check whether --enable-dc390u or --disable-dc390u was given.
+if test "${enable_dc390u+set}" = set; then
+ enableval="$enable_dc390u"
+ enable_dc390w="$enable_dc390u"
+
+fi
+
+
+# Checking for alias dc390f
+# Check whether --enable-dc390f or --disable-dc390f was given.
+if test "${enable_dc390f+set}" = set; then
+ enableval="$enable_dc390f"
+ enable_dc390w="$enable_dc390f"
+
+fi
+
+
+# Checking for alias dc390
+# Check whether --enable-dc390 or --disable-dc390 was given.
+if test "${enable_dc390+set}" = set; then
+ enableval="$enable_dc390"
+ enable_dc390t="$enable_dc390"
+
+fi
+
+
+# Checking for alias epic100
+# Check whether --enable-epic100 or --disable-epic100 was given.
+if test "${enable_epic100+set}" = set; then
+ enableval="$enable_epic100"
+ enable_epic="$enable_epic100"
+
+fi
+
+
+
+
+
+driver_class_scsi_option=CONFIG_SCSI
+driver_class_scsi_files="constants.o hosts.o scsi.o scsi_ioctl.o scsi_proc.o scsicam.o sd.o sd_ioctl.o sr.o sr_ioctl.o"
+
+
+
+driver_class_net_option=CONFIG_INET
+driver_class_net_files="auto_irq.o net.o Space.o dev.o net_init.o"
+
+
+
+
+
+
+
+# Checking for device driver option floppy
+# Check whether --enable-floppy or --disable-floppy was given.
+if test "${enable_floppy+set}" = set; then
+ enableval="$enable_floppy"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_BLK_DEV_FD 1
+EOF
+
+device_drivers="$device_drivers floppy.o"
+if test "${driver_class__selected+set}" != set; then
+ driver_class__selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class__option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class__files"
+fi
+
+fi
+
+
+# Checking for device driver option ide
+# Check whether --enable-ide or --disable-ide was given.
+if test "${enable_ide+set}" = set; then
+ enableval="$enable_ide"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_BLK_DEV_IDE 1
+EOF
+
+device_drivers="$device_drivers cmd640.o ide-cd.o ide.o rz1000.o triton.o"
+if test "${driver_class__selected+set}" != set; then
+ driver_class__selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class__option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class__files"
+fi
+
+fi
+
+
+
+
+
+# Checking for device driver option advansys
+# Check whether --enable-advansys or --disable-advansys was given.
+if test "${enable_advansys+set}" = set; then
+ enableval="$enable_advansys"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_ADVANSYS 1
+EOF
+
+device_drivers="$device_drivers advansys.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option buslogic
+# Check whether --enable-buslogic or --disable-buslogic was given.
+if test "${enable_buslogic+set}" = set; then
+ enableval="$enable_buslogic"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_BUSLOGIC 1
+EOF
+
+device_drivers="$device_drivers BusLogic.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option u1434f
+# Check whether --enable-u1434f or --disable-u1434f was given.
+if test "${enable_u1434f+set}" = set; then
+ enableval="$enable_u1434f"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_U14_34F 1
+EOF
+
+device_drivers="$device_drivers u14-34f.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option ultrastor
+# Check whether --enable-ultrastor or --disable-ultrastor was given.
+if test "${enable_ultrastor+set}" = set; then
+ enableval="$enable_ultrastor"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_ULTRASTOR 1
+EOF
+
+device_drivers="$device_drivers ultrastor.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option aha152x
+# Check whether --enable-aha152x or --disable-aha152x was given.
+if test "${enable_aha152x+set}" = set; then
+ enableval="$enable_aha152x"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_AHA152X 1
+EOF
+
+device_drivers="$device_drivers aha152x.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option aha1542
+# Check whether --enable-aha1542 or --disable-aha1542 was given.
+if test "${enable_aha1542+set}" = set; then
+ enableval="$enable_aha1542"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_AHA1542 1
+EOF
+
+device_drivers="$device_drivers aha1542.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option aha1740
+# Check whether --enable-aha1740 or --disable-aha1740 was given.
+if test "${enable_aha1740+set}" = set; then
+ enableval="$enable_aha1740"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_AHA1740 1
+EOF
+
+device_drivers="$device_drivers aha1740.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option aic7xxx
+# Check whether --enable-aic7xxx or --disable-aic7xxx was given.
+if test "${enable_aic7xxx+set}" = set; then
+ enableval="$enable_aic7xxx"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_AIC7XXX 1
+EOF
+
+device_drivers="$device_drivers aic7xxx.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option futuredomain
+# Check whether --enable-futuredomain or --disable-futuredomain was given.
+if test "${enable_futuredomain+set}" = set; then
+ enableval="$enable_futuredomain"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_FUTURE_DOMAIN 1
+EOF
+
+device_drivers="$device_drivers fdomain.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option in2000
+# Check whether --enable-in2000 or --disable-in2000 was given.
+if test "${enable_in2000+set}" = set; then
+ enableval="$enable_in2000"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_IN2000 1
+EOF
+
+device_drivers="$device_drivers in2000.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option ncr5380
+# Check whether --enable-ncr5380 or --disable-ncr5380 was given.
+if test "${enable_ncr5380+set}" = set; then
+ enableval="$enable_ncr5380"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_GENERIC_NCR5380 1
+EOF
+
+device_drivers="$device_drivers g_NCR5380.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option ncr53c406a
+# Check whether --enable-ncr53c406a or --disable-ncr53c406a was given.
+if test "${enable_ncr53c406a+set}" = set; then
+ enableval="$enable_ncr53c406a"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_NCR53C406A 1
+EOF
+
+device_drivers="$device_drivers NCR53c406a.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option pas16
+# Check whether --enable-pas16 or --disable-pas16 was given.
+if test "${enable_pas16+set}" = set; then
+ enableval="$enable_pas16"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_PASS16 1
+EOF
+
+device_drivers="$device_drivers pas16.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option seagate
+# Check whether --enable-seagate or --disable-seagate was given.
+if test "${enable_seagate+set}" = set; then
+ enableval="$enable_seagate"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_SEAGATE 1
+EOF
+
+device_drivers="$device_drivers seagate.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option t128
+# Check whether --enable-t128 or --disable-t128 was given.
+if test "${enable_t128+set}" = set; then
+ enableval="$enable_t128"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_T128 1
+EOF
+
+device_drivers="$device_drivers t128.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option ncr53c7xx
+# Check whether --enable-ncr53c7xx or --disable-ncr53c7xx was given.
+if test "${enable_ncr53c7xx+set}" = set; then
+ enableval="$enable_ncr53c7xx"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_NCR53C7xx 1
+EOF
+
+device_drivers="$device_drivers 53c78xx.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option eatadma
+# Check whether --enable-eatadma or --disable-eatadma was given.
+if test "${enable_eatadma+set}" = set; then
+ enableval="$enable_eatadma"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_EATA_DMA 1
+EOF
+
+device_drivers="$device_drivers eata_dma.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option eatapio
+# Check whether --enable-eatapio or --disable-eatapio was given.
+if test "${enable_eatapio+set}" = set; then
+ enableval="$enable_eatapio"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_EATA_PIO 1
+EOF
+
+device_drivers="$device_drivers eata_pio.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option wd7000
+# Check whether --enable-wd7000 or --disable-wd7000 was given.
+if test "${enable_wd7000+set}" = set; then
+ enableval="$enable_wd7000"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_7000FASST 1
+EOF
+
+device_drivers="$device_drivers wd7000.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option eata
+# Check whether --enable-eata or --disable-eata was given.
+if test "${enable_eata+set}" = set; then
+ enableval="$enable_eata"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_EATA 1
+EOF
+
+device_drivers="$device_drivers eata.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option am53c974
+# Check whether --enable-am53c974 or --disable-am53c974 was given.
+if test "${enable_am53c974+set}" = set; then
+ enableval="$enable_am53c974"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_AM53C974 1
+EOF
+
+device_drivers="$device_drivers AM53C974.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option dtc3280
+# Check whether --enable-dtc3280 or --disable-dtc3280 was given.
+if test "${enable_dtc3280+set}" = set; then
+ enableval="$enable_dtc3280"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_DTC3280 1
+EOF
+
+device_drivers="$device_drivers dtc.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option ncr53c8xx
+# Check whether --enable-ncr53c8xx or --disable-ncr53c8xx was given.
+if test "${enable_ncr53c8xx+set}" = set; then
+ enableval="$enable_ncr53c8xx"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_NCR53C8XX 1
+EOF
+
+device_drivers="$device_drivers ncr53c8xx.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option dc390w
+# Check whether --enable-dc390w or --disable-dc390w was given.
+if test "${enable_dc390w+set}" = set; then
+ enableval="$enable_dc390w"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_DC390W 1
+EOF
+
+device_drivers="$device_drivers tmscsiw.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option dc390t
+# Check whether --enable-dc390t or --disable-dc390t was given.
+if test "${enable_dc390t+set}" = set; then
+ enableval="$enable_dc390t"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_DC390T 1
+EOF
+
+device_drivers="$device_drivers tmscsim.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option ppa
+# Check whether --enable-ppa or --disable-ppa was given.
+if test "${enable_ppa+set}" = set; then
+ enableval="$enable_ppa"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_PPA 1
+EOF
+
+device_drivers="$device_drivers ppa.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option qlogicfas
+# Check whether --enable-qlogicfas or --disable-qlogicfas was given.
+if test "${enable_qlogicfas+set}" = set; then
+ enableval="$enable_qlogicfas"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_QLOGIC_FAS 1
+EOF
+
+device_drivers="$device_drivers qlogicfas.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option qlogicisp
+# Check whether --enable-qlogicisp or --disable-qlogicisp was given.
+if test "${enable_qlogicisp+set}" = set; then
+ enableval="$enable_qlogicisp"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_QLOGIC_ISP 1
+EOF
+
+device_drivers="$device_drivers qlogicisp.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+# Checking for device driver option gdth
+# Check whether --enable-gdth or --disable-gdth was given.
+if test "${enable_gdth+set}" = set; then
+ enableval="$enable_gdth"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_GDTH 1
+EOF
+
+device_drivers="$device_drivers gdth.o"
+if test "${driver_class_scsi_selected+set}" != set; then
+ driver_class_scsi_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_scsi_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_scsi_files"
+fi
+
+fi
+
+
+
+
+# Check whether --enable-flashpoint or --disable-flashpoint was given.
+if test "${enable_flashpoint+set}" = set; then
+ enableval="$enable_flashpoint"
+
+if test ${enableval} = no; then
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SCSI_OMIT_FLASHPOINT 1
+EOF
+
+fi
+
+fi
+
+
+
+
+
+# Checking for device driver option ne2000
+# Check whether --enable-ne2000 or --disable-ne2000 was given.
+if test "${enable_ne2000+set}" = set; then
+ enableval="$enable_ne2000"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_NE2000 1
+EOF
+
+device_drivers="$device_drivers ne.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option el2
+# Check whether --enable-el2 or --disable-el2 was given.
+if test "${enable_el2+set}" = set; then
+ enableval="$enable_el2"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EL2 1
+EOF
+
+device_drivers="$device_drivers 3c503.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option el3
+# Check whether --enable-el3 or --disable-el3 was given.
+if test "${enable_el3+set}" = set; then
+ enableval="$enable_el3"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EL3 1
+EOF
+
+device_drivers="$device_drivers 3c509.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option wd80x3
+# Check whether --enable-wd80x3 or --disable-wd80x3 was given.
+if test "${enable_wd80x3+set}" = set; then
+ enableval="$enable_wd80x3"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_WD80x3 1
+EOF
+
+device_drivers="$device_drivers wd.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option el1
+# Check whether --enable-el1 or --disable-el1 was given.
+if test "${enable_el1+set}" = set; then
+ enableval="$enable_el1"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EL1 1
+EOF
+
+device_drivers="$device_drivers 3c501.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option ul
+# Check whether --enable-ul or --disable-ul was given.
+if test "${enable_ul+set}" = set; then
+ enableval="$enable_ul"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_ULTRA 1
+EOF
+
+device_drivers="$device_drivers smc-ultra.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option ul32
+# Check whether --enable-ul32 or --disable-ul32 was given.
+if test "${enable_ul32+set}" = set; then
+ enableval="$enable_ul32"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_ULTRA32 1
+EOF
+
+device_drivers="$device_drivers smc-ultra32.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option hplanplus
+# Check whether --enable-hplanplus or --disable-hplanplus was given.
+if test "${enable_hplanplus+set}" = set; then
+ enableval="$enable_hplanplus"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_HPLAN_PLUS 1
+EOF
+
+device_drivers="$device_drivers hp-plus.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option hplan
+# Check whether --enable-hplan or --disable-hplan was given.
+if test "${enable_hplan+set}" = set; then
+ enableval="$enable_hplan"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_HPLAN 1
+EOF
+
+device_drivers="$device_drivers hp.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option vortex
+# Check whether --enable-vortex or --disable-vortex was given.
+if test "${enable_vortex+set}" = set; then
+ enableval="$enable_vortex"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_VORTEX 1
+EOF
+
+device_drivers="$device_drivers 3c59x.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option seeq8005
+# Check whether --enable-seeq8005 or --disable-seeq8005 was given.
+if test "${enable_seeq8005+set}" = set; then
+ enableval="$enable_seeq8005"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SEEQ8005 1
+EOF
+
+device_drivers="$device_drivers seeq8005.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option hp100
+# Check whether --enable-hp100 or --disable-hp100 was given.
+if test "${enable_hp100+set}" = set; then
+ enableval="$enable_hp100"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_HP100 1
+EOF
+
+device_drivers="$device_drivers hp100.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option ac3200
+# Check whether --enable-ac3200 or --disable-ac3200 was given.
+if test "${enable_ac3200+set}" = set; then
+ enableval="$enable_ac3200"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_AC3200 1
+EOF
+
+device_drivers="$device_drivers ac3200.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option e2100
+# Check whether --enable-e2100 or --disable-e2100 was given.
+if test "${enable_e2100+set}" = set; then
+ enableval="$enable_e2100"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_E2100 1
+EOF
+
+device_drivers="$device_drivers e2100.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option at1700
+# Check whether --enable-at1700 or --disable-at1700 was given.
+if test "${enable_at1700+set}" = set; then
+ enableval="$enable_at1700"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_AT1700 1
+EOF
+
+device_drivers="$device_drivers at1700.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option eth16i
+# Check whether --enable-eth16i or --disable-eth16i was given.
+if test "${enable_eth16i+set}" = set; then
+ enableval="$enable_eth16i"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_ETH16I 1
+EOF
+
+device_drivers="$device_drivers eth16i.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option znet
+# Check whether --enable-znet or --disable-znet was given.
+if test "${enable_znet+set}" = set; then
+ enableval="$enable_znet"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_ZNET 1
+EOF
+
+device_drivers="$device_drivers znet.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option eexpress
+# Check whether --enable-eexpress or --disable-eexpress was given.
+if test "${enable_eexpress+set}" = set; then
+ enableval="$enable_eexpress"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EEXPRESS 1
+EOF
+
+device_drivers="$device_drivers eexpress.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option eexpresspro
+# Check whether --enable-eexpresspro or --disable-eexpresspro was given.
+if test "${enable_eexpresspro+set}" = set; then
+ enableval="$enable_eexpresspro"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EEXPRESS_PRO 1
+EOF
+
+device_drivers="$device_drivers eepro.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option eexpresspro100
+# Check whether --enable-eexpresspro100 or --disable-eexpresspro100 was given.
+if test "${enable_eexpresspro100+set}" = set; then
+ enableval="$enable_eexpresspro100"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EEXPRESS_PRO100B 1
+EOF
+
+device_drivers="$device_drivers eepro100.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option depca
+# Check whether --enable-depca or --disable-depca was given.
+if test "${enable_depca+set}" = set; then
+ enableval="$enable_depca"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_DEPCA 1
+EOF
+
+device_drivers="$device_drivers depca.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option ewrk3
+# Check whether --enable-ewrk3 or --disable-ewrk3 was given.
+if test "${enable_ewrk3+set}" = set; then
+ enableval="$enable_ewrk3"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EWRK3 1
+EOF
+
+device_drivers="$device_drivers ewrk3.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option de4x5
+# Check whether --enable-de4x5 or --disable-de4x5 was given.
+if test "${enable_de4x5+set}" = set; then
+ enableval="$enable_de4x5"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_DE4X5 1
+EOF
+
+device_drivers="$device_drivers de4x5.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option apricot
+# Check whether --enable-apricot or --disable-apricot was given.
+if test "${enable_apricot+set}" = set; then
+ enableval="$enable_apricot"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_APRICOT 1
+EOF
+
+device_drivers="$device_drivers apricot.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option wavelan
+# Check whether --enable-wavelan or --disable-wavelan was given.
+if test "${enable_wavelan+set}" = set; then
+ enableval="$enable_wavelan"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_WAVELAN 1
+EOF
+
+device_drivers="$device_drivers wavelan.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option el16
+# Check whether --enable-el16 or --disable-el16 was given.
+if test "${enable_el16+set}" = set; then
+ enableval="$enable_el16"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EL16 1
+EOF
+
+device_drivers="$device_drivers 3c507.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option elplus
+# Check whether --enable-elplus or --disable-elplus was given.
+if test "${enable_elplus+set}" = set; then
+ enableval="$enable_elplus"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_ELPLUS 1
+EOF
+
+device_drivers="$device_drivers 3c505.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option de600
+# Check whether --enable-de600 or --disable-de600 was given.
+if test "${enable_de600+set}" = set; then
+ enableval="$enable_de600"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_DE600 1
+EOF
+
+device_drivers="$device_drivers de600.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option de620
+# Check whether --enable-de620 or --disable-de620 was given.
+if test "${enable_de620+set}" = set; then
+ enableval="$enable_de620"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_DE620 1
+EOF
+
+device_drivers="$device_drivers de620.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option skg16
+# Check whether --enable-skg16 or --disable-skg16 was given.
+if test "${enable_skg16+set}" = set; then
+ enableval="$enable_skg16"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_SK_G16 1
+EOF
+
+device_drivers="$device_drivers sk_g16.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option ni52
+# Check whether --enable-ni52 or --disable-ni52 was given.
+if test "${enable_ni52+set}" = set; then
+ enableval="$enable_ni52"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_NI52 1
+EOF
+
+device_drivers="$device_drivers ni52.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option ni65
+# Check whether --enable-ni65 or --disable-ni65 was given.
+if test "${enable_ni65+set}" = set; then
+ enableval="$enable_ni65"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_NI65 1
+EOF
+
+device_drivers="$device_drivers ni65.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option atp
+# Check whether --enable-atp or --disable-atp was given.
+if test "${enable_atp+set}" = set; then
+ enableval="$enable_atp"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_ATP 1
+EOF
+
+device_drivers="$device_drivers atp.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option lance
+# Check whether --enable-lance or --disable-lance was given.
+if test "${enable_lance+set}" = set; then
+ enableval="$enable_lance"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_LANCE 1
+EOF
+
+device_drivers="$device_drivers lance.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option elcp
+# Check whether --enable-elcp or --disable-elcp was given.
+if test "${enable_elcp+set}" = set; then
+ enableval="$enable_elcp"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_DEC_ELCP 1
+EOF
+
+device_drivers="$device_drivers tulip.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option fmv18x
+# Check whether --enable-fmv18x or --disable-fmv18x was given.
+if test "${enable_fmv18x+set}" = set; then
+ enableval="$enable_fmv18x"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_FMV18X 1
+EOF
+
+device_drivers="$device_drivers fmv18x.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option 3c515
+# Check whether --enable-3c515 or --disable-3c515 was given.
+if test "${enable_3c515+set}" = set; then
+ enableval="$enable_3c515"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_3C515 1
+EOF
+
+device_drivers="$device_drivers 3c515.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option pcnet32
+# Check whether --enable-pcnet32 or --disable-pcnet32 was given.
+if test "${enable_pcnet32+set}" = set; then
+ enableval="$enable_pcnet32"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_PCNET32 1
+EOF
+
+device_drivers="$device_drivers pcnet32.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option ne2kpci
+# Check whether --enable-ne2kpci or --disable-ne2kpci was given.
+if test "${enable_ne2kpci+set}" = set; then
+ enableval="$enable_ne2kpci"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_NE2K_PCI 1
+EOF
+
+device_drivers="$device_drivers ne2k-pci.o 8390.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option yellowfin
+# Check whether --enable-yellowfin or --disable-yellowfin was given.
+if test "${enable_yellowfin+set}" = set; then
+ enableval="$enable_yellowfin"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_YELLOWFIN 1
+EOF
+
+device_drivers="$device_drivers yellowfin.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option rtl8139
+# Check whether --enable-rtl8139 or --disable-rtl8139 was given.
+if test "${enable_rtl8139+set}" = set; then
+ enableval="$enable_rtl8139"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_RTL8139 1
+EOF
+
+device_drivers="$device_drivers rtl8139.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option epic
+# Check whether --enable-epic or --disable-epic was given.
+if test "${enable_epic+set}" = set; then
+ enableval="$enable_epic"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_EPIC 1
+EOF
+
+device_drivers="$device_drivers epic100.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option tlan
+# Check whether --enable-tlan or --disable-tlan was given.
+if test "${enable_tlan+set}" = set; then
+ enableval="$enable_tlan"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_TLAN 1
+EOF
+
+device_drivers="$device_drivers tlan.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+# Checking for device driver option viarhine
+# Check whether --enable-viarhine or --disable-viarhine was given.
+if test "${enable_viarhine+set}" = set; then
+ enableval="$enable_viarhine"
+ cat >> confdefs.h <<\EOF
+#define CONFIG_VIA_RHINE 1
+EOF
+
+device_drivers="$device_drivers via-rhine.o"
+if test "${driver_class_net_selected+set}" != set; then
+ driver_class_net_selected=yes
+ cat >> confdefs.h <<EOF
+#define $driver_class_net_option 1
+EOF
+
+ device_drivers="$device_drivers $driver_class_net_files"
+fi
+
+fi
+
+
+
+trap '' 1 2 15
+cat > confcache <<\EOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs. It is not useful on other systems.
+# If it contains results you don't want to keep, you may remove or edit it.
+#
+# By default, configure uses ./config.cache as the cache file,
+# creating it if it does not exist already. You can give configure
+# the --cache-file=FILE option to use a different cache file; that is
+# what configure does when it calls configure scripts in
+# subdirectories, so they share the cache.
+# Giving --cache-file=/dev/null disables caching, for debugging configure.
+# config.status only pays attention to the cache file if you give it the
+# --recheck option to rerun configure.
+#
+EOF
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, don't put newlines in cache variables' values.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+(set) 2>&1 |
+ case `(ac_space=' '; set | grep ac_space) 2>&1` in
+ *ac_space=\ *)
+ # `set' does not quote correctly, so add quotes (double-quote substitution
+ # turns \\\\ into \\, and sed turns \\ into \).
+ sed -n \
+ -e "s/'/'\\\\''/g" \
+ -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
+ ;;
+ *)
+ # `set' quotes correctly as required by POSIX, so do not add quotes.
+ sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
+ ;;
+ esac >> confcache
+if cmp -s $cache_file confcache; then
+ :
+else
+ if test -w $cache_file; then
+ echo "updating cache $cache_file"
+ cat confcache > $cache_file
+ else
+ echo "not updating unwritable cache $cache_file"
+ fi
+fi
+rm -f confcache
+
+trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+# Let make expand exec_prefix.
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+
+# Any assignment to VPATH causes Sun make to only execute
+# the first set of double-colon rules, so remove it if not needed.
+# If there is a colon in the path, we need to keep it.
+if test "x$srcdir" = x.; then
+ ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d'
+fi
+
+trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
+
+DEFS=-DHAVE_CONFIG_H
+
+# Without the "./", some shells look in PATH for config.status.
+: ${CONFIG_STATUS=./config.status}
+
+echo creating $CONFIG_STATUS
+rm -f $CONFIG_STATUS
+cat > $CONFIG_STATUS <<EOF
+#! /bin/sh
+# Generated automatically by configure.
+# Run this file to recreate the current configuration.
+# This directory was configured as follows,
+# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
+#
+# $0 $ac_configure_args
+#
+# Compiler output produced by configure, useful for debugging
+# configure, is in ./config.log if it exists.
+
+ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
+for ac_option
+do
+ case "\$ac_option" in
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+ echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
+ exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
+ -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
+ echo "$CONFIG_STATUS generated by autoconf version 2.14.1"
+ exit 0 ;;
+ -help | --help | --hel | --he | --h)
+ echo "\$ac_cs_usage"; exit 0 ;;
+ *) echo "\$ac_cs_usage"; exit 1 ;;
+ esac
+done
+
+ac_given_srcdir=$srcdir
+
+trap 'rm -fr `echo "Makefile device-drivers.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
+EOF
+cat >> $CONFIG_STATUS <<EOF
+
+# Protect against being on the right side of a sed subst in config.status.
+sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
+ s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
+$ac_vpsub
+$extrasub
+s%@SHELL@%$SHELL%g
+s%@CFLAGS@%$CFLAGS%g
+s%@CPPFLAGS@%$CPPFLAGS%g
+s%@CXXFLAGS@%$CXXFLAGS%g
+s%@FFLAGS@%$FFLAGS%g
+s%@DEFS@%$DEFS%g
+s%@LDFLAGS@%$LDFLAGS%g
+s%@LIBS@%$LIBS%g
+s%@exec_prefix@%$exec_prefix%g
+s%@prefix@%$prefix%g
+s%@program_transform_name@%$program_transform_name%g
+s%@bindir@%$bindir%g
+s%@sbindir@%$sbindir%g
+s%@libexecdir@%$libexecdir%g
+s%@datadir@%$datadir%g
+s%@sysconfdir@%$sysconfdir%g
+s%@sharedstatedir@%$sharedstatedir%g
+s%@localstatedir@%$localstatedir%g
+s%@libdir@%$libdir%g
+s%@includedir@%$includedir%g
+s%@oldincludedir@%$oldincludedir%g
+s%@infodir@%$infodir%g
+s%@mandir@%$mandir%g
+s%@device_drivers@%$device_drivers%g
+s%@host@%$host%g
+s%@host_alias@%$host_alias%g
+s%@host_cpu@%$host_cpu%g
+s%@host_vendor@%$host_vendor%g
+s%@host_os@%$host_os%g
+s%@systype@%$systype%g
+s%@build@%$build%g
+s%@build_alias@%$build_alias%g
+s%@build_cpu@%$build_cpu%g
+s%@build_vendor@%$build_vendor%g
+s%@build_os@%$build_os%g
+s%@CC@%$CC%g
+s%@cross_linkable@%$cross_linkable%g
+s%@LD@%$LD%g
+
+CEOF
+EOF
+
+cat >> $CONFIG_STATUS <<\EOF
+
+# Split the substitutions into bite-sized pieces for seds with
+# small command number limits, like on Digital OSF/1 and HP-UX.
+ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
+ac_file=1 # Number of current file.
+ac_beg=1 # First line for current file.
+ac_end=$ac_max_sed_cmds # Line after last line for current file.
+ac_more_lines=:
+ac_sed_cmds=""
+while $ac_more_lines; do
+ if test $ac_beg -gt 1; then
+ sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
+ else
+ sed "${ac_end}q" conftest.subs > conftest.s$ac_file
+ fi
+ if test ! -s conftest.s$ac_file; then
+ ac_more_lines=false
+ rm -f conftest.s$ac_file
+ else
+ if test -z "$ac_sed_cmds"; then
+ ac_sed_cmds="sed -f conftest.s$ac_file"
+ else
+ ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
+ fi
+ ac_file=`expr $ac_file + 1`
+ ac_beg=$ac_end
+ ac_end=`expr $ac_end + $ac_max_sed_cmds`
+ fi
+done
+if test -z "$ac_sed_cmds"; then
+ ac_sed_cmds=cat
+fi
+EOF
+
+cat >> $CONFIG_STATUS <<EOF
+
+CONFIG_FILES=\${CONFIG_FILES-"Makefile"}
+EOF
+cat >> $CONFIG_STATUS <<\EOF
+for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
+ # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+ case "$ac_file" in
+ *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
+ ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
+ *) ac_file_in="${ac_file}.in" ;;
+ esac
+
+ # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
+
+ # Remove last slash and all that follows it. Not all systems have dirname.
+ ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
+ if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
+ # The file is in a subdirectory.
+ test ! -d "$ac_dir" && mkdir "$ac_dir"
+ ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`"
+ # A "../" for each directory in $ac_dir_suffix.
+ ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
+ else
+ ac_dir_suffix= ac_dots=
+ fi
+
+ case "$ac_given_srcdir" in
+ .) srcdir=.
+ if test -z "$ac_dots"; then top_srcdir=.
+ else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
+ /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
+ *) # Relative path.
+ srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
+ top_srcdir="$ac_dots$ac_given_srcdir" ;;
+ esac
+
+
+ echo creating "$ac_file"
+ rm -f "$ac_file"
+ configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
+ case "$ac_file" in
+ *Makefile*) ac_comsub="1i\\
+# $configure_input" ;;
+ *) ac_comsub= ;;
+ esac
+
+ ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
+ sed -e "$ac_comsub
+s%@configure_input@%$configure_input%g
+s%@srcdir@%$srcdir%g
+s%@top_srcdir@%$top_srcdir%g
+" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
+fi; done
+rm -f conftest.s*
+
+# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
+# NAME is the cpp macro being defined and VALUE is the value it is being given.
+#
+# ac_d sets the value in "#define NAME VALUE" lines.
+ac_dA='s%^\([ ]*\)#\([ ]*define[ ][ ]*\)'
+ac_dB='\([ ][ ]*\)[^ ]*%\1#\2'
+ac_dC='\3'
+ac_dD='%g'
+# ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE".
+ac_uA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
+ac_uB='\([ ]\)%\1#\2define\3'
+ac_uC=' '
+ac_uD='\4%g'
+# ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
+ac_eA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
+ac_eB='$%\1#\2define\3'
+ac_eC=' '
+ac_eD='%g'
+
+if test "${CONFIG_HEADERS+set}" != set; then
+EOF
+cat >> $CONFIG_STATUS <<EOF
+ CONFIG_HEADERS="device-drivers.h"
+EOF
+cat >> $CONFIG_STATUS <<\EOF
+fi
+for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
+ # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+ case "$ac_file" in
+ *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
+ ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
+ *) ac_file_in="${ac_file}.in" ;;
+ esac
+
+ echo creating $ac_file
+
+ rm -f conftest.frag conftest.in conftest.out
+ ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
+ cat $ac_file_inputs > conftest.in
+
+EOF
+
+# Transform confdefs.h into a sed script conftest.vals that substitutes
+# the proper values into config.h.in to produce config.h. And first:
+# Protect against being on the right side of a sed subst in config.status.
+# Protect against being in an unquoted here document in config.status.
+rm -f conftest.vals
+cat > conftest.hdr <<\EOF
+s/[\\&%]/\\&/g
+s%[\\$`]%\\&%g
+s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp
+s%ac_d%ac_u%gp
+s%ac_u%ac_e%gp
+EOF
+sed -n -f conftest.hdr confdefs.h > conftest.vals
+rm -f conftest.hdr
+
+# This sed command replaces #undef with comments. This is necessary, for
+# example, in the case of _POSIX_SOURCE, which is predefined and required
+# on some systems where configure will not decide to define it.
+cat >> conftest.vals <<\EOF
+s%^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */%
+EOF
+
+# Break up conftest.vals because some shells have a limit on
+# the size of here documents, and old seds have small limits too.
+
+rm -f conftest.tail
+while :
+do
+ ac_lines=`grep -c . conftest.vals`
+ # grep -c gives empty output for an empty file on some AIX systems.
+ if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi
+ # Write a limited-size here document to conftest.frag.
+ echo ' cat > conftest.frag <<CEOF' >> $CONFIG_STATUS
+ sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS
+ echo 'CEOF
+ sed -f conftest.frag conftest.in > conftest.out
+ rm -f conftest.in
+ mv conftest.out conftest.in
+' >> $CONFIG_STATUS
+ sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail
+ rm -f conftest.vals
+ mv conftest.tail conftest.vals
+done
+rm -f conftest.vals
+
+cat >> $CONFIG_STATUS <<\EOF
+ rm -f conftest.frag conftest.h
+ echo "/* $ac_file. Generated automatically by configure. */" > conftest.h
+ cat conftest.in >> conftest.h
+ rm -f conftest.in
+ if cmp -s $ac_file conftest.h 2>/dev/null; then
+ echo "$ac_file is unchanged"
+ rm -f conftest.h
+ else
+ # Remove last slash and all that follows it. Not all systems have dirname.
+ ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
+ if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
+ # The file is in a subdirectory.
+ test ! -d "$ac_dir" && mkdir "$ac_dir"
+ fi
+ rm -f $ac_file
+ mv conftest.h $ac_file
+ fi
+fi; done
+
+EOF
+cat >> $CONFIG_STATUS <<EOF
+
+EOF
+cat >> $CONFIG_STATUS <<\EOF
+
+exit 0
+EOF
+chmod +x $CONFIG_STATUS
+rm -fr confdefs* $ac_clean_files
+test "$no_create" = yes || $SHELL $CONFIG_STATUS || exit 1
+
diff --git a/i386/linux/device-drivers.h.in b/i386/linux/device-drivers.h.in
new file mode 100644
index 0000000..7cb7df8
--- /dev/null
+++ b/i386/linux/device-drivers.h.in
@@ -0,0 +1,85 @@
+/* All possible device drivers; must match Drivers.in. */
+
+#undef CONFIG_M386
+#undef CONFIG_M486
+#undef CONFIG_M586
+#undef CONFIG_M686
+#undef CPU
+#undef CONFIG_SCSI
+#undef CONFIG_INET
+#undef CONFIG_BLK_DEV_FD
+#undef CONFIG_BLK_DEV_IDE
+#undef CONFIG_SCSI_ADVANSYS
+#undef CONFIG_SCSI_BUSLOGIC
+#undef CONFIG_SCSI_OMIT_FLASHPOINT
+#undef CONFIG_SCSI_U14_34F
+#undef CONFIG_SCSI_ULTRASTOR
+#undef CONFIG_SCSI_AHA152X
+#undef CONFIG_SCSI_AHA1542
+#undef CONFIG_SCSI_AHA1740
+#undef CONFIG_SCSI_AIC7XXX
+#undef CONFIG_SCSI_FUTURE_DOMAIN
+#undef CONFIG_SCSI_IN2000
+#undef CONFIG_SCSI_GENERIC_NCR5380
+#undef CONFIG_SCSI_NCR53C406A
+#undef CONFIG_SCSI_PASS16
+#undef CONFIG_SCSI_SEAGATE
+#undef CONFIG_SCSI_T128
+#undef CONFIG_SCSI_NCR53C7xx
+#undef CONFIG_SCSI_EATA_DMA
+#undef CONFIG_SCSI_EATA_PIO
+#undef CONFIG_SCSI_7000FASST
+#undef CONFIG_SCSI_EATA
+#undef CONFIG_SCSI_AM53C974
+#undef CONFIG_SCSI_DTC3280
+#undef CONFIG_SCSI_NCR53C8XX
+#undef CONFIG_SCSI_DC390W
+#undef CONFIG_SCSI_DC390T
+#undef CONFIG_SCSI_PPA
+#undef CONFIG_SCSI_QLOGIC_FAS
+#undef CONFIG_SCSI_QLOGIC_ISP
+#undef CONFIG_SCSI_GDTH
+#undef CONFIG_NE2000
+#undef CONFIG_EL2
+#undef CONFIG_EL3
+#undef CONFIG_WD80x3
+#undef CONFIG_EL1
+#undef CONFIG_ULTRA
+#undef CONFIG_ULTRA32
+#undef CONFIG_HPLAN_PLUS
+#undef CONFIG_HPLAN
+#undef CONFIG_VORTEX
+#undef CONFIG_SEEQ8005
+#undef CONFIG_HP100
+#undef CONFIG_AC3200
+#undef CONFIG_E2100
+#undef CONFIG_AT1700
+#undef CONFIG_ETH16I
+#undef CONFIG_ZNET
+#undef CONFIG_EEXPRESS
+#undef CONFIG_EEXPRESS_PRO
+#undef CONFIG_EEXPRESS_PRO100B
+#undef CONFIG_DEPCA
+#undef CONFIG_EWRK3
+#undef CONFIG_DE4X5
+#undef CONFIG_APRICOT
+#undef CONFIG_WAVELAN
+#undef CONFIG_EL16
+#undef CONFIG_ELPLUS
+#undef CONFIG_DE600
+#undef CONFIG_DE620
+#undef CONFIG_SK_G16
+#undef CONFIG_NI52
+#undef CONFIG_NI65
+#undef CONFIG_ATP
+#undef CONFIG_LANCE
+#undef CONFIG_DEC_ELCP
+#undef CONFIG_FMV18X
+#undef CONFIG_3C515
+#undef CONFIG_PCNET32
+#undef CONFIG_NE2K_PCI
+#undef CONFIG_YELLOWFIN
+#undef CONFIG_RTL8139
+#undef CONFIG_EPIC
+#undef CONFIG_TLAN
+#undef CONFIG_VIA_RHINE