blob: 948ce314089b5d50efa06e7d1f11dcd2487bcaec (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# $OpenBSD: SPOT,v 1.4 1996/08/10 21:37:41 briggs Exp $
# $NetBSD: SPOT,v 1.11 1996/08/05 01:52:17 scottr Exp $
#
# SPOT
include "std.mac68k"
maxusers 16
makeoptions CC="cc -m68030"
options MAXFDESCS=2048
# Standard system options
options SWAPPAGER, VNODEPAGER, DEVPAGER # paging
options DIAGNOSTIC # DEBUG for extra kernel debugging
options KTRACE # system call tracing support
#options KGDB # support for kernel gdb
#options GDB # support for normal gdb
#options KGDBDEV=0xc01, KGDBRATE=38400 # device & baud rate
options UCONSOLE # non-root can grab console
# Filesystem options
options FIFO # POSIX fifo support (in all filesystems)
options DDB
options FFS
options QUOTA # fast filesystem with user and group quotas
options MFS # memory-based filesystem
options NFSSERVER # Sun NFS-compatible filesystem
options NFSCLIENT # Sun NFS-compatible filesystem
options NULLFS # Null (formerly loop-back) filesystem
options CD9660 # ISO-9660 w/ RockRidge
options KERNFS # kernel data-structure filesystem
options FDESC # user file descriptor filesystem
options UNION # union filesystem
#options UMAPFS # uid/gid remapping filesystem
#options LFS # Log-based filesystem (still experimental)
#options PORTAL # portal filesystem (still experimental)
options PROCFS # Process filesystem
options SCSI
#options SCSIDEBUG
#options NCR5380_DEBUG
#options SBC_DEBUG
# Networking options
options INET
options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
options GATEWAY # IP packet forwarding
#options ISO # OSI networking
#options TPIP
#options EON
options PPP_BSDCOMP
options PPP_DEFLATE
options COMPAT_42
options COMPAT_43
#options NS
options MAPMEM
options SYSVSHM,SYSVSEM,SYSVMSG
# Mac-specific options
options M68030
options COMPAT_NOMID
options COMPAT_SUNOS
options COMPAT_09
options COMPAT_10
options MACHINE_NONCONTIG
config bsd swap generic
options GENERIC
intvid0 at obio? # Internal video hardware
nubus0 at mainbus?
ae* at nubus?
macvid* at nubus?
# 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?
#ncrscsi0 at obio? # SCSI NCR 5380
#ncr96scsi0 at obio? # SCSI NCR 53C96
sbc0 at obio? flags 0x1 # MI NCR 5380 SCSI Bus Controller
scsibus* at scsi?
sd* at scsibus? target ? lun ?
st* at scsibus? target ? lun ?
cd* at scsibus? target ? lun ?
ch* at scsibus? target ? lun ?
pseudo-device pty 32
pseudo-device bpfilter 16
pseudo-device vnd 2
pseudo-device ppp 2
pseudo-device loop
#pseudo-device sl
|