mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 16:10:46 +01:00
Add floppy tape support (missed these when changing G*)
This commit is contained in:
parent
6dac698341
commit
c1eeb17fc0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1115
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.50 1994/02/01 08:34:16 ache Exp $
|
||||
# $Id: LINT,v 1.51 1994/02/01 10:46:43 ache Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -121,9 +121,10 @@ controller bt0 at isa? port "IO_BT0" bio irq 12 vector btintr
|
||||
# driver for the Seagate ST01/ST02 card, not yet finished.
|
||||
#controller sg0 at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector sgintr
|
||||
#dcfclk device-driver
|
||||
controller fd0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fd0 drive 0
|
||||
disk fd1 at fd0 drive 1
|
||||
controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fdc0 drive 0
|
||||
disk fd1 at fdc0 drive 1
|
||||
tape ft0 at fdc0 drive 2
|
||||
# driver for the Western Digital and SMCC WD80xx cards, for the Novell
|
||||
# NE1000/200 card and the 3COM 3C503 card.
|
||||
device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.50 1994/02/01 08:34:16 ache Exp $
|
||||
# $Id: LINT,v 1.51 1994/02/01 10:46:43 ache Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -121,9 +121,10 @@ controller bt0 at isa? port "IO_BT0" bio irq 12 vector btintr
|
||||
# driver for the Seagate ST01/ST02 card, not yet finished.
|
||||
#controller sg0 at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector sgintr
|
||||
#dcfclk device-driver
|
||||
controller fd0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fd0 drive 0
|
||||
disk fd1 at fd0 drive 1
|
||||
controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fdc0 drive 0
|
||||
disk fd1 at fdc0 drive 1
|
||||
tape ft0 at fdc0 drive 2
|
||||
# driver for the Western Digital and SMCC WD80xx cards, for the Novell
|
||||
# NE1000/200 card and the 3COM 3C503 card.
|
||||
device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.50 1994/02/01 08:34:16 ache Exp $
|
||||
# $Id: LINT,v 1.51 1994/02/01 10:46:43 ache Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -121,9 +121,10 @@ controller bt0 at isa? port "IO_BT0" bio irq 12 vector btintr
|
||||
# driver for the Seagate ST01/ST02 card, not yet finished.
|
||||
#controller sg0 at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector sgintr
|
||||
#dcfclk device-driver
|
||||
controller fd0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fd0 drive 0
|
||||
disk fd1 at fd0 drive 1
|
||||
controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fdc0 drive 0
|
||||
disk fd1 at fdc0 drive 1
|
||||
tape ft0 at fdc0 drive 2
|
||||
# driver for the Western Digital and SMCC WD80xx cards, for the Novell
|
||||
# NE1000/200 card and the 3COM 3C503 card.
|
||||
device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# SYSCONS -- Generic machine with WD/AHx family disks and syscons
|
||||
#
|
||||
# $Id: SYSCONS,v 1.15 1994/01/05 14:56:50 rgrimes Exp $
|
||||
# $Id: SYSCONS,v 1.16 1994/01/25 11:08:25 rgrimes Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -29,9 +29,10 @@ config "386bsd" root on wd0 swap on wd0 and sd0 dumps on wd0
|
||||
|
||||
controller isa0
|
||||
|
||||
controller fd0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fd0 drive 0
|
||||
disk fd1 at fd0 drive 1
|
||||
controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fdc0 drive 0
|
||||
disk fd1 at fdc0 drive 1
|
||||
tape ft0 at fdc0 drive 2
|
||||
|
||||
controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr
|
||||
disk wd0 at wdc0 drive 0
|
||||
|
Loading…
Reference in New Issue
Block a user