131 lines
2.6 KiB
Plaintext
131 lines
2.6 KiB
Plaintext
# $NetBSD: files.bebox,v 1.40 2003/10/24 18:21:52 matt Exp $
|
|
#
|
|
# First try for bebox specific configuration info
|
|
#
|
|
maxpartitions 16
|
|
|
|
maxusers 2 8 64
|
|
|
|
defflag XSERVER
|
|
|
|
file arch/bebox/bebox/autoconf.c
|
|
file arch/bebox/bebox/clock.c
|
|
file arch/bebox/bebox/disksubr.c disk
|
|
file arch/bebox/bebox/extintr.c
|
|
file arch/bebox/bebox/machdep.c
|
|
|
|
file arch/powerpc/powerpc/bus_dma.c
|
|
file arch/powerpc/powerpc/bus_space.c
|
|
file arch/powerpc/powerpc/procfs_machdep.c procfs
|
|
|
|
# General files
|
|
file dev/cons.c
|
|
|
|
#
|
|
# Machine-independent SCSI drivers
|
|
#
|
|
include "dev/scsipi/files.scsipi"
|
|
|
|
#
|
|
# Machine-independent ATA drivers
|
|
#
|
|
|
|
include "dev/ata/files.ata"
|
|
|
|
#
|
|
# Memory Disk for install floppy
|
|
#
|
|
file dev/md_root.c memory_disk_hooks
|
|
|
|
#
|
|
# Machine-independent I2O drivers.
|
|
#
|
|
include "dev/i2o/files.i2o"
|
|
|
|
#
|
|
# System bus types
|
|
#
|
|
define mainbus { }
|
|
device mainbus: isabus, pcibus, mainbus
|
|
attach mainbus at root
|
|
|
|
device cpu
|
|
attach cpu at mainbus
|
|
|
|
file arch/bebox/bebox/mainbus.c mainbus|cpu needs-flag
|
|
#
|
|
# 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: pcibus
|
|
attach pchb at pci
|
|
file arch/bebox/pci/pchb.c pchb
|
|
|
|
# PCI-ISA bridges
|
|
device pcib: isabus
|
|
attach pcib at pci
|
|
file arch/bebox/pci/pcib.c pcib
|
|
|
|
#
|
|
# ISA and mixed ISA+PCI drivers
|
|
#
|
|
|
|
include "dev/isa/files.isa"
|
|
|
|
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 pckbcport { [irq = -1], [port = -1] }
|
|
|
|
# PC console support a la "pccons"
|
|
device pc: tty, pckbcport
|
|
attach pc at isa
|
|
device pcconskbd
|
|
attach pcconskbd at pckbc
|
|
file arch/bebox/isa/pccons.c pc | pcconskbd needs-flag
|
|
|
|
# PC Mice; Logitech-style, Microsoft-style, and PS/2-style
|
|
device lms
|
|
attach lms at isa
|
|
file arch/bebox/isa/lms.c lms needs-flag
|
|
device mms
|
|
attach mms at isa
|
|
file arch/bebox/isa/mms.c mms needs-flag
|
|
|
|
include "dev/wscons/files.wscons"
|
|
include "dev/wsfont/files.wsfont"
|
|
|
|
device pfb: wsemuldisplaydev, wsrasteremulops
|
|
attach pfb at pci
|
|
file arch/bebox/pci/pfb.c pfb needs-flag
|
|
|
|
include "dev/pckbc/files.pckbc"
|
|
|
|
# Floppy disk controller
|
|
device fdc {drive = -1}: isadma
|
|
file dev/isa/fd.c fdc needs-flag
|
|
|
|
attach fdc at isa with fdc_isa
|
|
file dev/isa/fdc_isa.c fdc_isa
|
|
|
|
device fd: disk
|
|
attach fd at fdc
|
|
|
|
# Game adapter (joystick)
|
|
file arch/bebox/isa/joy_timer.c joy
|
|
|
|
# ISA Plug 'n Play support
|
|
file arch/bebox/isa/isapnp_machdep.c isapnp
|
|
|
|
include "arch/bebox/conf/majors.bebox"
|