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