Add the atapi fd driver (LS120 & ZIP drive support)

This commit is contained in:
Søren Schmidt 1999-03-04 09:53:19 +00:00
parent 51e1b50529
commit 61f625f0f3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44458
5 changed files with 10 additions and 5 deletions

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.560 1999/02/22 18:19:57 des Exp $
# $Id: LINT,v 1.561 1999/03/01 21:19:18 sos Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -1016,6 +1016,7 @@ controller aha0 at isa? port ? cam irq ?
#controller ata0
#device atadisk0 # ATA disk drives
#device atapicd0 # ATAPI CDROM drives
#device atapifd0 # ATAPI floppy drives
#device atapist0 # ATAPI tape drives
#
# If you need ISA only devices, this is the lines to add:

View File

@ -1,7 +1,7 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.223 1999/02/20 11:17:59 julian Exp $
# $Id: files.i386,v 1.224 1999/03/01 21:19:19 sos Exp $
#
# The long compile-with and dependency lines are required because of
# limitations in config: backslash-newline doesn't work in strings, and
@ -28,6 +28,7 @@ dev/ata/ata-all.c optional ata device-driver
dev/ata/atapi-all.c optional ata device-driver
dev/ata/ata-disk.c optional atadisk device-driver
dev/ata/atapi-cd.c optional atapicd device-driver
dev/ata/atapi-fd.c optional atapifd device-driver
dev/ata/atapi-tape.c optional atapist device-driver
dev/fb/fb.c optional fb device-driver
dev/fb/fb.c optional vga device-driver

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.560 1999/02/22 18:19:57 des Exp $
# $Id: LINT,v 1.561 1999/03/01 21:19:18 sos Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -1016,6 +1016,7 @@ controller aha0 at isa? port ? cam irq ?
#controller ata0
#device atadisk0 # ATA disk drives
#device atapicd0 # ATAPI CDROM drives
#device atapifd0 # ATAPI floppy drives
#device atapist0 # ATAPI tape drives
#
# If you need ISA only devices, this is the lines to add:

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.560 1999/02/22 18:19:57 des Exp $
# $Id: LINT,v 1.561 1999/03/01 21:19:18 sos Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -1016,6 +1016,7 @@ controller aha0 at isa? port ? cam irq ?
#controller ata0
#device atadisk0 # ATA disk drives
#device atapicd0 # ATAPI CDROM drives
#device atapifd0 # ATAPI floppy drives
#device atapist0 # ATAPI tape drives
#
# If you need ISA only devices, this is the lines to add:

View File

@ -1,7 +1,7 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.223 1999/02/20 11:17:59 julian Exp $
# $Id: files.i386,v 1.224 1999/03/01 21:19:19 sos Exp $
#
# The long compile-with and dependency lines are required because of
# limitations in config: backslash-newline doesn't work in strings, and
@ -28,6 +28,7 @@ dev/ata/ata-all.c optional ata device-driver
dev/ata/atapi-all.c optional ata device-driver
dev/ata/ata-disk.c optional atadisk device-driver
dev/ata/atapi-cd.c optional atapicd device-driver
dev/ata/atapi-fd.c optional atapifd device-driver
dev/ata/atapi-tape.c optional atapist device-driver
dev/fb/fb.c optional fb device-driver
dev/fb/fb.c optional vga device-driver