NetBSD/sys/arch/bebox/conf/files.bebox

149 lines
3.6 KiB
Plaintext
Raw Normal View History

# $NetBSD: files.bebox,v 1.6 1998/02/03 03:59:54 sakamoto Exp $
1997-10-14 10:47:17 +04:00
#
# First try for be specific configuration info
#
maxpartitions 16
maxusers 2 8 64
file arch/bebox/bebox/Locore.c
file arch/bebox/bebox/autoconf.c
file arch/bebox/bebox/bcopy.c
file arch/bebox/bebox/clock.c
file arch/bebox/bebox/conf.c
file arch/bebox/bebox/copyinstr.c
file arch/bebox/bebox/copyoutstr.c
file arch/bebox/bebox/copystr.c
file arch/bebox/bebox/disksubr.c disk
file arch/bebox/bebox/extintr.c
file arch/bebox/bebox/fpu.c
file arch/bebox/bebox/fubyte.c
file arch/bebox/bebox/fuswintr.c
file arch/bebox/bebox/in_cksum.c
file arch/bebox/bebox/ipkdb_glue.c ipkdb
file arch/bebox/bebox/machdep.c
file arch/bebox/bebox/mem.c
file arch/bebox/bebox/pmap.c
file arch/bebox/bebox/process_machdep.c
file arch/bebox/bebox/subyte.c
file arch/bebox/bebox/suword.c
file arch/bebox/bebox/suswintr.c
file arch/bebox/bebox/sys_machdep.c
file arch/bebox/bebox/trap.c
file arch/bebox/bebox/vm_machdep.c
file arch/bebox/bebox/bus_dma.c
file dev/cons.c
file arch/bebox/bebox/setjmp.s ddb
1997-10-14 10:47:17 +04:00
file arch/bebox/bebox/db_memrw.c ddb
file arch/bebox/bebox/db_disasm.c ddb
file arch/bebox/bebox/db_interface.c ddb
file arch/bebox/bebox/db_trace.c ddb
major {vnd = 14}
#
# Machine-independent SCSI drivers
#
include "dev/scsipi/files.scsipi"
1997-10-14 10:47:17 +04:00
major {sd = 4}
major {st = 5}
major {cd = 6}
#
# Machine-independent ATA drivers
#
include "dev/ata/files.ata"
major {wd = 0}
1997-10-14 10:47:17 +04:00
#
# System bus types
#
define mainbus { }
1998-01-12 21:18:01 +03:00
device mainbus class dull: isabus, pcibus, mainbus
1997-10-14 10:47:17 +04:00
attach mainbus at root
file arch/bebox/bebox/mainbus.c mainbus
#
# PCI-only drivers
# XXX MUST BE INCLUDED BEFORE files.isa, as long as files.isa attaches
# XXX devices to 'pci'.
#
include "../../../dev/pci/files.pci"
file arch/bebox/pci/pci_machdep.c pci
# PCI-Host bridge chipsets
device pchb class dull: pcibus
1997-10-14 10:47:17 +04:00
attach pchb at pci
file arch/bebox/pci/pchb.c pchb
# PCI-ISA bridges
1998-01-12 21:18:01 +03:00
device pcib class dull: isabus
1997-10-14 10:47:17 +04:00
attach pcib at pci
file arch/bebox/pci/pcib.c pcib
#
# ISA and mixed ISA+PCI drivers
#
include "dev/isa/files.isa"
1997-10-14 10:47:17 +04:00
major {mcd = 7}
#major {scd = 15}
major {wt = 3}
file arch/bebox/isa/isa_machdep.c isa
file arch/bebox/isa/isadma_machdep.c isa
# PC clock
file arch/bebox/isa/isaclock.c isa
# attribute used to represent the "keyboard controller"
# XXX should be a real device
define pckbd { [irq = -1], [port = -1] }
# PC console support a la "pccons"
1998-01-12 21:18:01 +03:00
device pc class tty: tty, pckbd
1997-10-14 10:47:17 +04:00
attach pc at isa
file arch/bebox/isa/pccons.c pc needs-flag
# PC console support a la "pcvt"
1998-01-12 21:18:01 +03:00
device vt class tty: tty, pckbd
1997-10-14 10:47:17 +04:00
attach vt at isa
file arch/bebox/isa/pcvt/pcvt_drv.c vt needs-flag
file arch/bebox/isa/pcvt/pcvt_ext.c vt needs-flag
file arch/bebox/isa/pcvt/pcvt_kbd.c vt needs-flag
file arch/bebox/isa/pcvt/pcvt_out.c vt needs-flag
file arch/bebox/isa/pcvt/pcvt_sup.c vt needs-flag
file arch/bebox/isa/pcvt/pcvt_vtf.c vt needs-flag
# PC Mice; Logitech-style, Microsoft-style, and PS/2-style
1998-01-12 21:18:01 +03:00
device lms class dull
1997-10-14 10:47:17 +04:00
attach lms at isa
file arch/bebox/isa/lms.c lms needs-flag
1998-01-12 21:18:01 +03:00
device mms class dull
1997-10-14 10:47:17 +04:00
attach mms at isa
file arch/bebox/isa/mms.c mms needs-flag
1998-01-12 21:18:01 +03:00
device pms class dull
1997-10-14 10:47:17 +04:00
attach pms at pckbd
file arch/bebox/isa/pms.c pms needs-flag
# Floppy disk controller
1998-01-12 21:18:01 +03:00
device fdc class dull {drive = -1}
1997-10-14 10:47:17 +04:00
attach fdc at isa
1998-01-12 21:18:01 +03:00
device fd class disk: disk, isadma
1997-10-14 10:47:17 +04:00
attach fd at fdc
file arch/bebox/isa/fd.c fdc needs-flag
major {fd = 2}
# PC speaker
1998-01-12 21:18:01 +03:00
device spkr class dull: tty
1997-10-14 10:47:17 +04:00
attach spkr at pckbd
file arch/bebox/isa/spkr.c spkr needs-flag
# Game adapter (joystick)
1998-01-12 21:18:01 +03:00
device joy class dull
1997-10-14 10:47:17 +04:00
file arch/bebox/isa/joy.c joy needs-flag
attach joy at isa with joy_isa
file arch/bebox/isa/joy_isa.c joy_isa