blob: 45275b37e79e3c1e220d1ee6a694fca1686b0ebd (
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#
# GENERIC AMIGA
#
# $Id: GENERIC,v 1.3 1996/08/31 02:09:29 deraadt Exp $
#
# This configuration file contains all possible options
#
include "std.mvme1x7"
maxusers 8
options TIMEZONE=300, DST=1
#
# processors this kernel should support
#
options "M88000" # support for 88K
options SWAPPAGER # Pager for processes (Required)
options VNODEPAGER # Pager for vnodes (Required)
options DEVPAGER # Pager for devices (Required)
#
# Networking options
#
options INET # IP networking support (Required)
#options ISO # ISO Networking support
#options TPIP # ARGO TP networking support
#options CCITT # CCITT X.25
#options NS # Xerox XNS
#options EON # ISO CLNL over IP
#options GATEWAY # Packet forwarding
#options DIRECTED_BROADCAST # Broadcast across subnets
#options NSIP # XNS over IP
#
# File system related options
#
options QUOTA # Disk quotas for local disks
options NFSSERVER # Network File System server side code
options NFSCLIENT # Network File System client side code
#
# File systems
#
options FFS # Berkeley fast file system
options MFS # Memory based filesystem
options PROCFS # Process filesystem
options KERNFS # Kernel parameter filesystem (Recommended)
options FDESC # /dev/fd filesystem
options NULLFS # Loopback filesystem
options FIFO # FIFO operations on vnodes (Recommended)
options "CD9660" # ISO 9660 file system, with Rock Ridge
#options PORTAL # Portal filesystem
#options MSDOSFS # MS-DOS filesystem
#
# Compatability options for various existing systems
#
options "COMPAT_09" # compatability with older NetBSD release
options "COMPAT_43" # 4.3 BSD compatible system calls
#options "TCP_COMPAT_42" # Use 4.2 BSD style TCP
options "COMPAT_NOMID" # allow nonvalid machine id executables
#options COMPAT_HPUX # HP300 compatability
#
# Support for System V IPC facilities.
#
#options SYSVSHM # System V-like shared memory
#options SYSVMSG # System V-like messages
#options SYSVSEM # System V-like semaphores
#
# Support for various kernel options
#
options GENERIC # Mini-root boot support
#options LKM # Loadable kernel modules
options KTRACE # Add kernel tracing system call
options DIAGNOSTIC # Add additional error checking code
options "NKMEMCLUSTERS=256" # Size of kernel malloc area
#
# Misc. debuging options
#
options PANICWAIT # Require keystroke to dump/reboot
options DEBUG # Add debugging statements
#options DDB # Kernel debugger
#options SYSCALL_DEBUG # debug all syscalls.
#options SCSIDEBUG # Add SCSI debugging statements
#options KGDB # Kernel debugger (KGDB) support
#options PANICBUTTON # Forced crash via keypress (???)
#
# devices
#
m187le0 at mainbus0 # Ethernet
m187tty0 at mainbus # tty
# scsi stuff, all possible
m187scsi0 at mainbus0
bugscsi0 at mainbus0
scsibus0 at m187scsi0
scsibus1 at bugscsi0
# 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
ch* at scsibus? target ? lun ? # scsi cd changers
ss* at scsibus? target ? lun ? # scsi scanners
uk* at scsibus? target ? lun ? # unknown scsi
pseudo-device sl # slip
pseudo-device ppp # ppp
pseudo-device pty 16 # pseudo terminals
pseudo-device loop # network loopback
config netbsd swap on generic
|