blob: 79f178bbae2fc4a8272dba307bc15760a5af605f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# $OpenBSD: GENERICSBC,v 1.14 2002/06/03 12:04:08 deraadt Exp $
# $NetBSD: GENERIC,v 1.52 1997/01/13 23:34:07 scottr Exp $
#
# GENERICSBC --- our generic kernel using the SBC SCSI driver
machine mac68k m68k
include "conf/GENERIC"
# Mac-specific options
option HZ=60 # Macs like 60hz
option M68040
option M68030
option M68020 # Must have 68851 PMMU
option FPSP
option FPU_EMULATE
option COMPAT_SUNOS # SunOS m68k binary compatibility
option ZS_CONSOLE_ABORT
option DISABLE_EXT_CACHE # Don't use IIci external cache
option DISABLE_ADB_WITH_SERIAL_CONSOLE
#option MRG_ADB # Use ROM-based ADB driver
config bsd swap generic
maxusers 16
mainbus0 at root
# on-board I/O
obio0 at mainbus?
adb0 at obio?
asc0 at obio? # ASC/EASC audio
esp0 at obio? # SCSI NCR 53C9x
esp1 at obio? # SCSI NCR 53C9x
intvid0 at obio? # Internal video hardware
mc* at obio? # MACE ethernet on Centris/Quadra 660av
sn* at obio? # Internal ethernet
zsc0 at obio? # Zilog serial chip
zstty* at zsc? channel ?
nubus0 at mainbus?
ae* at nubus? # Most Apple Ethernet Cards
macvid* at nubus? # NuBus video cards
sn* at nubus? # SONIC-based ethernet cards
# Attach grf semantics to all video hardware as it is found
grf* at intvid?
grf* at macvid?
# Attach ite semantics to the appropriate grf device
ite0 at grf?
# Use only one of ncrscsi or sbc
#ncrscsi0 at obio? # SCSI NCR 5380
sbc0 at obio? flags 0x1 # MI NCR 5380 SCSI Bus Controller
scsibus* at scsi?
sd* at scsibus? target ? lun ? # SCSI disk drives
st* at scsibus? target ? lun ? # SCSI tape drives
cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
ch* at scsibus? target ? lun ? # SCSI autochangers
ss* at scsibus? target ? lun ? # SCSI scanners
uk* at scsibus? target ? lun ? # SCSI unknown
|