blob: 1e59e26b1e703419df5a6f0be9015f483911ef06 (
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
|
# $OpenBSD: RAMDISK,v 1.5 1996/08/10 21:37:41 briggs Exp $
# $NetBSD: RAMDISK,v 1.6 1996/08/05 01:52:16 scottr Exp $
# RAMDISK
# Support Root/swap on ramdisk
#
include "std.mac68k"
maxusers 2
# Enable the hooks used for initializing the ram-disk
options RAMDISK_HOOKS
options MINIROOTSIZE=512 # 256K
# Standard system options
options SWAPPAGER, VNODEPAGER, DEVPAGER # paging
# Filesystem options
options FIFO # POSIX fifo support (in all filesystems)
options DDB
options FFS
options NFSCLIENT # Sun NFS-compatible filesystem
options CD9660 # ISO-9660 w/ RockRidge
options KERNFS # Kernel filesystem
options SCSI
# Networking options
options INET
options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
# Mac-specific options
options M68040
options M68030
options M68020 # Must have 68851 PMMU
options FPSP
options FPU_EMULATE
options COMPAT_09
options COMPAT_10
options MACHINE_NONCONTIG
config bsd root on rd0a swap on rd0b
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 mainbus? # SCSI NCR 5380
ncr96scsi0 at mainbus? # SCSI NCR 53C96
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 rd 2
pseudo-device ppp
pseudo-device sl
pseudo-device loop
|