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
|
# $Id: MYBOX,v 1.1 1995/10/18 10:54:18 deraadt Exp $
include "std.m88k"
maxusers 8
options TIMEZONE=300, DST=1
options BYTE_MSF
options SWAPPAGER, VNODEPAGER, DEVPAGER
#options INET
options FFS, MFS, FDESC
#options "COMPAT_42", "COMPAT_43"
options GENERIC, KTRACE, DIAGNOSTIC, "NKMEMCLUSTERS=256"
#options PANICWAIT, DEBUG, DDB
options PANICWAIT, DEBUG, DDB
#options "CD9660", PORTAL, MSDOSFS, PROCFS, NULLFS, FIFO, KERNFS
#options NFSSERVER, NFSCLIENT
#options SYSVSHM, SYSVMSG, SYSVSEM
#options SYSCALL_DEBUG, SCSIDEBUG, KGDB
# scsi stuff, all possible
#m187le0 at mainbus0 # Ethernet
#m187tty0 at mainbus0 # tty
#ser0 at mainbus0 # tty
#ser0 at pcc0 # tty
bugtty0 at mainbus0 # bug tty
# scsi stuff, all possible
#m187scsi0 at mainbus0
#bugscsi0 at mainbus0
#bugscsi0 at pcc0
#scsibus0 at m187scsi0
#scsibus0 at bugscsi0
#scsibus0 at scsi0
#
# compat.
#
#sd0 at scsibus? target 0 lun 0
#sd1 at scsibus? target 1 lun 0
#sd2 at scsibus? target 2 lun 0
#sd3 at scsibus? target 3 lun 0
#sd4 at scsibus? target 4 lun 0
#sd5 at scsibus? target 5 lun 0
#sd6 at scsibus? target 6 lun 0
#
# This is nicer however many amiga setups expect sd units to refer to
# scsi target numbers. If this is not the case, you can remove the
# specific sdx lines above and each hard drive from low target to high
# will configure to the next available sd unit number
#sd* at scsibus? target ? lun ? # scsi disks
#st* at scsibus? target ? lun ? # scsi tapes
#cd* at scsibus? target ? lun ? # scsi cd's
#pseudo-device sl # slip
#pseudo-device ppp # ppp
#pseudo-device pty 16 # pseudo terminals
#pseudo-device loop # network loopback
#
config netbsd swap on generic
|