Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / sparc / conf / MRCOFFEE
blob0f7af2c573b0b457c5bb7ab02134679c4d47f63b
1 # $NetBSD: MRCOFFEE,v 1.30 2009/08/16 19:12:55 uwe Exp $
2 # From: NetBSD: GENERIC,v 1.197 2006/12/04 23:43:35 elad Exp
4 # Mr.Coffee (JavaStation 1) machine description file
6 # This configuration is for machines using Open Boot Prom only!
7 # The OpenFirmware-variants of JavaStation 1 should use the MRCOFFEE_OFW
8 # kernel.
11 include         "arch/sparc/conf/std.sparc"
13 options         INCLUDE_CONFIG_FILE     # embed config file in kernel binary
15 #ident          "MRCOFFEE-$Revision: 1.31 $"
17 maxusers        32
19 ## System kernel configuration.  See options(4) for more detail.
22 # Options for variants of the Sun SPARC architecure.
23 # We currently support three architecture types; at least one is required.
24 options         SUN4M           # sun4m - SS10, SS20, Classic, etc.
27 ## System options specific to the sparc machine type
29 # Blink the power LED on some machines to indicate the system load.
30 #options        BLINK
32 # builtin terminal emulations
33 options         WSEMUL_SUN              # sun terminal emulation
34 options         WSEMUL_VT100            # VT100 / VT220 emulation
35 options         WSEMUL_DEFAULT="\"vt100\""
37 # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
38 options         WSDISPLAY_COMPAT_RAWKBD
39 options         WSDISPLAY_CUSTOM_OUTPUT
40 options         WS_DEFAULT_FG=WSCOL_BLACK
41 options         WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
42 options         WS_KERNEL_FG=WSCOL_GREEN
43 options         WS_KERNEL_BG=WSCOL_LIGHT_WHITE
44 options         WSDISPLAY_SCROLLSUPPORT
45 options         FONT_GALLANT12x22       # the console font
48 #### System options that are the same for all ports
50 ## Root device configuration: change the ?'s if you are going to use a
51 ## nonstandard root partition (other than where the kernel is booted from)
52 ## and/or nonstandard root type (not ffs or nfs).  Normally this can be
53 ## automagically determined at boot time.
55 config          netbsd  root on ? type ?
57 ## System call tracing (see ktrace(1)).
58 options         KTRACE
60 ## Collect statistics on kernel malloc's and free's.  This does have a
61 ## significant performance hit on slower machines, so it is intended for
62 ## diagnostic use only.
63 #options        KMEMSTATS
65 ## System V compatible IPC subsystem.  (msgctl(2), semctl(2), and shmctl(2))
66 options         SYSVMSG         # System V message queues
67 options         SYSVSEM         # System V semaphores
68 #options        SEMMNI=10       # number of semaphore identifiers
69 #options        SEMMNS=60       # number of semaphores in system
70 #options        SEMUME=10       # max number of undo entries per process
71 #options        SEMMNU=30       # number of undo structures in system
72 options         SYSVSHM         # System V shared memory
73 options         P1003_1B_SEMAPHORE # p1003.1b semaphore support
75 ## Loadable kernel module support; still under development.
77 options         USERCONF        # userconf(4) support
78 #options        PIPE_SOCKETPAIR # smaller, but slower pipe(2)
79 options         SYSCTL_INCLUDE_DESCR    # Include sysctl descriptions in kernel
81 # Enable experimental buffer queue strategy for better responsiveness under 
82 # high disk I/O load. Use it with caution - it's not proven to be stable yet.
83 #options        BUFQ_READPRIO
84 #options        BUFQ_PRIOCSCAN
86 ## NFS boot options; tries DHCP/BOOTP then BOOTPARAM
87 options         NFS_BOOT_BOOTPARAM
88 #options        NFS_BOOT_BOOTP
89 options         NFS_BOOT_DHCP
91 #### Debugging options
93 ## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
94 ## serial console break or keyboard reset, where the PROM would normally
95 ## intercept.  DDB_HISTORY_SIZE adds up/down arrow command history.
96 options         DDB                     # kernel dynamic debugger
97 options         DDB_HISTORY_SIZE=100    # enable history editing in DDB
98 #options        DDB_ONPANIC=1           # see also sysctl(8): `ddb.onpanic'
100 ## You may also use gdb, on another computer connected to this machine over
101 ## a serial port.  Both KGDB_DEV and KGDB_DEVRATE should be specified;
102 ## KGDB_DEV is a dev_t encoded device number of the serial port to use, where
103 ## the minor device number encodes the PROM enumeration of the serial ports,
104 ## i.e.:
105 ## 0xc00 = ttya, 0xc01 = ttyb, 0xc02 = ttyc, 0xc03 = ttyd.
106 ## (Note: ttyc and ttyd are available only on some sun4 models)
107 #options        KGDB                    # support for kernel gdb
108 #options        KGDB_DEV=0xc01          # kgdb device number (this is `ttyb')
109 #options        KGDB_DEVRATE=38400      # baud rate
112 ## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
113 ## such that gdb(1) can be used on a kernel coredump.
115 #makeoptions    DEBUG="-g"
116 makeoptions     COPTS="-pipe -mcpu=supersparc -O2"
120 ## Adds code to the kernel that does internal consistency checks, and will
121 ## cause the kernel to panic if corruption of internal data structures
122 ## is detected.
123 #options        DIAGNOSTIC      # extra kernel sanity checking
125 ## Enable (possibly expensive) debugging code that may also display messages
126 ## on the system console
127 #options        DEBUG
129 ## Make SCSI error messages more verbose when explaining their meanings.
130 options         SCSIVERBOSE
132 options         MIIVERBOSE      # verbose PHY autoconfig messages
134 ## `INSECURE' turns off the kernel security level (securelevel = 0 always).
135 ## This allows writing to /dev/mem, loading kernel modules while multi-user,
136 ## and other insecurities good only for development work.  Do not use this
137 ## option on a production machine.
138 #options        INSECURE
140 ## `FDSCRIPTS' allows non-readable but executable scripts by providing a
141 ## pre-opened opaque file to the script interpreter.  `SETUIDSCRIPTS',
142 ## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
143 ## opaque file mechanism.  Perl calls this "secure setuid scripts."
145 #options        FDSCRIPTS
146 #options        SETUIDSCRIPTS
148 ## Options for compatibility with previous releases foreign system binaries.
149 ## In the cases of COMPAT_SUNOS and COMPAT_SVR4, you may need to set up
150 ## additional user-level utilities or system configuration files. See
151 ## compat_sunos(8) and compat_svr4(8).
153 options         COMPAT_43       # 4.3BSD system interfaces
154 options         COMPAT_10       # NetBSD 1.0 binary compatibility
155 options         COMPAT_11       # NetBSD 1.1 binary compatibility
156 options         COMPAT_12       # NetBSD 1.2 binary compatibility
157 options         COMPAT_13       # NetBSD 1.3 binary compatibility
158 options         COMPAT_14       # NetBSD 1.4 binary compatibility
159 options         COMPAT_15       # NetBSD 1.5 binary compatibility
160 options         COMPAT_16       # NetBSD 1.6 binary compatibility
161 options         COMPAT_20       # NetBSD 2.0 binary compatibility
162 options         COMPAT_30       # NetBSD 3.0 binary compatibility
163 options         COMPAT_40       # NetBSD 4.0 binary compatibility
164 options         COMPAT_50       # NetBSD 5.0 binary compatibility
165 options         COMPAT_SUNOS    # SunOS 4.x binary compatibility
166 options         COMPAT_SVR4     # SunOS 5.x binary compatibility
167 options         COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
169 ## File systems.  You probably need at least one of FFS or NFS.
170 file-system     FFS             # Berkeley Fast Filesystem
171 file-system     NFS             # Sun NFS-compatible filesystem client
172 file-system     KERNFS          # kernel data-structure filesystem
173 file-system     NULLFS          # NULL layered filesystem
174 file-system     OVERLAY         # overlay file system
175 file-system     MFS             # memory-based filesystem
176 file-system     FDESC           # user file descriptor filesystem
177 file-system     UMAPFS          # uid/gid remapping filesystem
178 #file-system    LFS             # Log-based filesystem (still experimental)
179 file-system     PUFFS           # Userspace file systems (e.g. ntfs-3g & sshfs)
180 file-system     PROCFS          # /proc
181 #file-system    CD9660          # ISO 9660 + Rock Ridge file system
182 #file-system    UNION           # union file system
183 #file-system    MSDOSFS         # MS-DOS FAT filesystem(s).
184 #file-system    CODA            # Coda File System; also needs vcoda (below)
185 file-system     PTYFS           # /dev/pts/N support
186 #file-system    TMPFS           # Efficient memory file-system
187 #file-system    UDF             # experimental - OSTA UDF CD/DVD file-system
189 ## File system options.
190 #options        NFSSERVER       # Sun NFS-compatible filesystem server
191 #options        QUOTA           # FFS quotas
192 #options        FFS_EI          # FFS Endian Independent support
193 #options        UFS_DIRHASH     # UFS Large Directory Hashing - Experimental
194 options         FFS_NO_SNAPSHOT # No FFS snapshot support
196 ## Network protocol support.  In most environments, INET is required.
197 options         INET            # IP (Internet Protocol) v4
198 options         INET6           # IPV6
199 #options        IPSEC           # IP security
200 #options        IPSEC_ESP       # IP security (encryption part; define w/IPSEC)
201 #options        IPSEC_NAT_T     # IPsec NAT traversal (NAT-T)
202 #options        IPSEC_DEBUG     # debug for IP security
203 #options        GATEWAY         # packet forwarding ("router switch")
204 #options        MROUTING        # packet forwarding of multicast packets
205 #options        PIM             # Protocol Independent Multicast
206 #options        DIRECTED_BROADCAST      # allow broadcasts through routers
207 options         ISO,TPIP        # OSI networking
208 #options        EON             # OSI tunneling over IP
209 #options        NETATALK        # AppleTalk (over Ethernet) protocol
210 options         NTP             # Network Time Protocol in-kernel support
211 #options        PPS_SYNC        # Add serial line synchronization for NTP
212 #options        PFIL_HOOKS      # Add pfil(9) hooks, intended for custom LKMs.
213 #options        IPFILTER_LOG    # Add ipmon(8) logging for ipfilter device
214 #options        IPFILTER_LOOKUP # ippool(8) support
215 #options        IPFILTER_DEFAULT_BLOCK  # block all packets by default
216 #options        PPP_BSDCOMP     # Add BSD compression to ppp device
217 #options        PPP_DEFLATE     # Add deflate (libz) compression to ppp device
218 #options        PPP_FILTER      # Add active filters for ppp (via bpf)
222 #### Main bus and CPU .. all systems.
223 mainbus0 at root
224 cpu0    at mainbus0
226 #### Bus types found on SPARC systems.
228 obio0   at mainbus0                             # sun4 and sun4m
230 iommu0  at mainbus0                             # sun4m
231 sbus0   at iommu0                               # sun4m
234 #### Standard system devices -- all required for a given architecture
236 ## Auxiliary system registers on sun4c and sun4m
237 auxreg0 at obio0                                # sun4m
239 ## Mostek clock found on 4/300, sun4c, sun4m and sun4d systems.
240 clock0  at obio0                                # sun4m
242 ## Timer chip found on 4/300, sun4c, and sun4m systems.
243 timer0  at obio0                                # sun4m
246 #### Serial port configuration
248 ## NS16x50 serial chips and clones.  Present on the
249 ## Sun JavaStation-1 and Tadpole SPARCbook 3
250 com0    at obio0                                        # sun4m
253 #### Keyboard and mouse
255 pckbc0  at obio0
256 #kbd0   at pckbc0
257 #ms0    at pckbc0
258 #wskbd*                 at kbd? console ?
259 #wsmouse*       at ms? mux 0
260 pckbd*          at pckbc?               # PC keyboard
261 pms*            at pckbc?               # PS/2 mouse for wsmouse
262 wskbd*          at pckbd? console ?
263 wsmouse*        at pms? mux 0
265 #### Disk controllers and disks
267 ## A disk-like interface to files.  Can be used to create floppy, CD,
268 ## miniroot images, etc.
270 #pseudo-device  vnd     
271 #options        VND_COMPRESSION         # compressed vnd(4)
273 #### Network interfaces
275 ## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue
276 ledma0          at sbus0 slot ? offset ?                # sun4m on-board
277 le0             at ledma0                               # sun4m on-board
280 ## Loopback network interface; required
281 pseudo-device   loop
283 ## SLIP and CSLIP interfaces, for IP over a serial line.
284 #pseudo-device  sl              
286 ## PPP, the successor to SLIP.  See pppd(8).
287 #pseudo-device  ppp             
289 ## PPP over Ethernet (RFC 2516)
290 #pseudo-device  pppoe
292 ## Network "tunnel" device, allowing protocol stacks to run in the userland.
293 ## This is used by the third-party user-mode "ppp" program, and others.
294 #pseudo-device  tun             
295 #pseudo-device  tap                     # virtual Ethernet
297 ## Generic L3 over IP tunnel
298 #pseudo-device  gre                     # generic L3 over IP tunnel
300 ## Berkeley Packet Filter, required to run RARPD.  A generic C-language
301 ## interface that allows selective examining of incoming packets.
302 pseudo-device   bpfilter
304 #pseudo-device  carp                    # Common Address Redundancy Protocol
306 ## IP Filter, used in firewall and NAT applications.  See ipnat(8) for
307 ## one example of the use of the IP Filter.
308 #pseudo-device  ipfilter
310 ## for IPv6
311 #pseudo-device  gif                     # IPv[46] over IPv[46] tunnel (RFC1933)
312 #pseudo-device  faith                   # IPv[46] tcp relay translation i/f
313 #pseudo-device  stf                     # 6to4 IPv6 over IPv4 encapsulation
315 ## IEEE 802.1Q Virtual LAN encapsulation, see vlan(4).
316 #pseudo-device  vlan
318 #### Audio and video devices
320 ## /dev/audio support (`audiocs' plus `audio')
322 audiocs0        at sbus0 slot ? offset ?                # SUNW,CS4231
323 audio0          at audiocs0
325 ## Sun "tcx" accelerated color framebuffer.
326 tcx0            at sbus? slot ? offset ?
327 wsdisplay0      at tcx0
329 #### Other device configuration
331 ## Pseudo ttys, required for network logins and programs like screen.
333 pseudo-device   pty                     # pseudo-terminals
335 ## Random device, used to implement /dev/random (a source of random noise),
336 ## and generate randomness for some kernel formulae.
338 pseudo-device   rnd
340 # a pseudo device needed for Coda       # also needs CODA (above)
341 #pseudo-device  vcoda           4       # coda minicache <-> venus comm.
343 pseudo-device   clockctl                # user control of clock subsystem
344 pseudo-device   ksyms                   # /dev/ksyms
345 pseudo-device   putter                  # for puffs and pud
347 pseudo-device   wsmux                   # mouse and keyboard multiplexor
348 pseudo-device   wsfont