blob: 27835df30e3b9a58f4b0d7c8c3e04504980431d4 (
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
|
# $OpenBSD: SPOT,v 1.12 1997/06/23 02:26:37 gene Exp $
# $NetBSD: SPOT,v 1.22 1997/01/20 00:31:42 scottr Exp $
#
# SPOT
include "arch/mac68k/conf/std.mac68k"
maxusers 16
makeoptions COPTS="-O2 -m68030"
# Standard system option
option DIAGNOSTIC # DEBUG for extra kernel debugging
option KTRACE # system call tracing support
#option KGDB # support for kernel gdb
#option GDB # support for normal gdb
#option KGDBDEV=0xc01, KGDBRATE=38400 # device & baud rate
option UCONSOLE # non-root can grab console
# Filesystem option
option FIFO # POSIX fifo support (in all filesystems)
option DDB
option FFS
option QUOTA # fast filesystem with user and group quotas
option MFS # memory-based filesystem
option NFSSERVER # Sun NFS-compatible filesystem
option NFSCLIENT # Sun NFS-compatible filesystem
option CD9660 # ISO-9660 w/ RockRidge
option KERNFS # kernel data-structure filesystem
option FDESC # user file descriptor filesystem
option PROCFS # Process filesystem
option SCSI
# Networking option
option INET
option TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
option GATEWAY # IP packet forwarding
option PPP_BSDCOMP
option PPP_DEFLATE
option COMPAT_42
option COMPAT_43
option MAPMEM
option SYSVSHM,SYSVSEM,SYSVMSG
# Mac-specific option
option M68030
# SPOT-specific option
option RTC_OFFSET=360 # hardware clock is this many mins. west of GMT
config bsd swap generic
option GENERIC
mainbus0 at root
fpu0 at mainbus?
# on-board I/O
obio0 at mainbus?
adb0 at obio?
zsc0 at obio?
zstty* at zsc? channel ?
nubus0 at mainbus?
ae* at nubus?
macvid* at nubus?
grf* at macvid?
ite0 at grf?
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 ?
pseudo-device pty 32
pseudo-device bpfilter 16
pseudo-device vnd 2
pseudo-device ppp 2
pseudo-device loop
|