files.bebox revision 1.2
1#
2# First try for be specific configuration info
3#
4maxpartitions 16
5
6maxusers 2 8 64
7
8file	arch/bebox/bebox/Locore.c
9file	arch/bebox/bebox/autoconf.c
10file	arch/bebox/bebox/bcopy.c
11file	arch/bebox/bebox/clock.c
12file	arch/bebox/bebox/conf.c
13file	arch/bebox/bebox/copyinstr.c
14file	arch/bebox/bebox/copyoutstr.c
15file	arch/bebox/bebox/copystr.c
16file	arch/bebox/bebox/disksubr.c		disk
17file	arch/bebox/bebox/extintr.c
18file	arch/bebox/bebox/fpu.c
19file	arch/bebox/bebox/fubyte.c
20file	arch/bebox/bebox/fuswintr.c
21file	arch/bebox/bebox/in_cksum.c
22file	arch/bebox/bebox/ipkdb_glue.c		ipkdb
23file	arch/bebox/bebox/machdep.c
24file	arch/bebox/bebox/mem.c
25file	arch/bebox/bebox/pmap.c
26file	arch/bebox/bebox/process_machdep.c
27file	arch/bebox/bebox/subyte.c
28file	arch/bebox/bebox/suword.c
29file	arch/bebox/bebox/suswintr.c
30file	arch/bebox/bebox/sys_machdep.c
31file	arch/bebox/bebox/trap.c
32file	arch/bebox/bebox/vm_machdep.c
33file	arch/bebox/bebox/bus_dma.c
34file	dev/cons.c
35file	dev/cninit.c
36file    arch/bebox/bebox/setjmp.S                   ddb
37file    arch/bebox/bebox/db_memrw.c                 ddb
38file    arch/bebox/bebox/db_disasm.c                ddb
39file    arch/bebox/bebox/db_interface.c             ddb
40file    arch/bebox/bebox/db_trace.c                 ddb
41
42major	{vnd = 14}
43
44#
45# Machine-independent SCSI drivers
46#
47include "../../../dev/scsipi/files.scsipi"
48major	{sd = 4}
49major	{st = 5}
50major	{cd = 6}
51
52#
53# System bus types
54#
55define mainbus { }
56device	mainbus: isabus, pcibus, mainbus
57attach	mainbus at root
58file	arch/bebox/bebox/mainbus.c	mainbus
59
60#
61# PCI-only drivers
62# XXX MUST BE INCLUDED BEFORE files.isa, as long as files.isa attaches
63# XXX devices to 'pci'.
64#
65include "../../../dev/pci/files.pci"
66file	arch/bebox/pci/pci_machdep.c	pci
67
68# PCI-Host bridge chipsets
69device	pchb
70attach	pchb at pci
71file	arch/bebox/pci/pchb.c		pchb
72
73# PCI-ISA bridges
74device	pcib: isabus
75attach	pcib at pci
76file	arch/bebox/pci/pcib.c		pcib
77
78#
79# ISA and mixed ISA+PCI drivers
80#
81
82include "arch/bebox/conf/files.isa"
83major	{mcd = 7}
84#major	{scd = 15}
85major	{wd = 0}
86major	{wt = 3}
87
88file	arch/bebox/isa/isa_machdep.c	isa
89file	arch/bebox/isa/isadma_machdep.c	isa
90
91# PC clock
92file	arch/bebox/isa/isaclock.c		isa
93
94# attribute used to represent the "keyboard controller"
95# XXX should be a real device
96define pckbd { [irq = -1], [port = -1] }
97
98# PC console support a la "pccons"
99device	pc: tty, pckbd
100attach	pc at isa
101file	arch/bebox/isa/pccons.c		pc needs-flag
102
103# PC console support a la "pcvt"
104device	vt: tty, pckbd
105attach	vt at isa
106file	arch/bebox/isa/pcvt/pcvt_drv.c	vt needs-flag
107file	arch/bebox/isa/pcvt/pcvt_ext.c	vt needs-flag
108file	arch/bebox/isa/pcvt/pcvt_kbd.c	vt needs-flag
109file	arch/bebox/isa/pcvt/pcvt_out.c	vt needs-flag
110file	arch/bebox/isa/pcvt/pcvt_sup.c	vt needs-flag
111file	arch/bebox/isa/pcvt/pcvt_vtf.c	vt needs-flag
112
113# PC Mice; Logitech-style, Microsoft-style, and PS/2-style
114device	lms
115attach	lms at isa
116file	arch/bebox/isa/lms.c		lms needs-flag
117device	mms
118attach	mms at isa
119file	arch/bebox/isa/mms.c		mms needs-flag
120device	pms
121attach	pms at pckbd
122file	arch/bebox/isa/pms.c		pms needs-flag
123
124# Floppy disk controller
125device	fdc {drive = -1}
126attach	fdc at isa
127device	fd: disk, isadma
128attach	fd at fdc
129file	arch/bebox/isa/fd.c		fdc needs-flag
130major	{fd = 2}
131
132# PC speaker
133device	spkr: tty
134attach	spkr at pckbd
135file	arch/bebox/isa/spkr.c		spkr needs-flag
136
137# Game adapter (joystick)
138device	joy
139file	arch/bebox/isa/joy.c		joy needs-flag
140
141attach	joy at isa with joy_isa
142file	arch/bebox/isa/joy_isa.c		joy_isa
143