NC revision 1.31
1#	$NetBSD: NC,v 1.31 2005/07/07 17:05:46 tron Exp $
2#
3#	NC - with vidcconsole
4#
5
6include	"arch/acorn32/conf/std.acorn32"
7
8#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
9
10# estimated number of users
11
12maxusers	16
13
14# Standard system options
15
16options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
17#options 	NTP		# NTP phase/frequency locked loop
18
19# CPU options
20#options 	CPU_SA110	# Support the SA110 core
21#options 	CPU_ARM6	# Support the ARM6 core
22options 	CPU_ARM7	# Support the ARM7 core
23#options 	CPU_ARM8	# Support the ARM8 core
24#options 	ARM6_LATE_ABORT	# ARM6XX late abort support
25
26# Architecture options
27options 	NC
28
29# FPA options
30
31#options 	ARMFPE		# ARM Ltd FPE
32
33# File systems
34
35#file-system	FFS		# UFS
36#file-system	LFS		# log-structured file system
37file-system	MFS		# memory file system
38file-system	NFS		# Network file system
39#file-system 	ADOSFS		# AmigaDOS-compatible file system
40#file-system 	EXT2FS		# second extended file system (linux)
41#file-system	CD9660		# ISO 9660 + Rock Ridge file system
42#file-system	MSDOSFS		# MS-DOS file system
43#file-system	FDESC		# /dev/fd
44#file-system	FILECORE	# Acorn filecore file system
45file-system	KERNFS		# /kern
46#file-system	NULLFS		# loopback file system
47#file-system	PORTAL		# portal filesystem (still experimental)
48file-system	PROCFS		# /proc
49#file-system	UMAPFS		# NULLFS + uid and gid remapping
50#file-system	UNION		# union file system
51
52# File system options
53#options 	QUOTA		# UFS quotas
54#options 	NFSSERVER
55
56# Networking options
57
58#options 	GATEWAY		# packet forwarding
59options 	INET6		# IPV6
60#options 	IPSEC		# IP security
61#options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
62#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
63#options 	IPSEC_DEBUG	# debug for IP security
64options 	INET		# IP + ICMP + TCP + UDP
65#options 	MROUTING	# IP multicast routing
66#options 	PIM		# Protocol Independent Multicast
67#options 	NS		# XNS
68#options 	NSIP		# XNS tunneling over IP
69#options 	ISO,TPIP	# OSI
70#options 	EON		# OSI tunneling over IP
71#options 	CCITT,LLC,HDLC	# X.25
72#options 	NETATALK	# AppleTalk networking
73#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
74#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
75#options 	PPP_DEFLATE	# Deflate compression support for PPP
76#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
77#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
78
79# Compatibility options
80
81options 	COMPAT_43	# 4.3BSD compatibility.
82options 	COMPAT_20	# NetBSD 2.0 compatibility.
83options 	COMPAT_16	# NetBSD 1.6 compatibility.
84options 	COMPAT_14	# NetBSD 1.4 compatibility.
85#options 	COMPAT_13	# NetBSD 1.3 compatibility.
86#options 	COMPAT_12	# NetBSD 1.2 compatibility.
87#options 	COMPAT_11	# NetBSD 1.1 compatibility.
88#options 	COMPAT_10	# NetBSD 1.0 compatibility.
89#options 	COMPAT_09	# NetBSD 0.9 compatibility.
90#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
91options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
92
93# Shared memory options
94
95options 	SYSVMSG		# System V-like message queues
96options 	SYSVSEM		# System V-like semaphores
97options 	SYSVSHM		# System V-like memory sharing
98options 	SHMMAXPGS=1024	# 1024 pages is the default
99
100# Device options
101
102options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
103#options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
104#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
105
106# Miscellaneous kernel options
107options 	KTRACE		# system call tracing, a la ktrace(1)
108options 	IRQSTATS	# manage IRQ statistics
109#options 	LKM		# loadable kernel modules
110options 	KMEMSTATS	# kernel memory statistics
111options 	USERCONF	# userconf(4) support
112#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
113#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
114
115# Development and Debugging options
116
117#options 	ARM700BUGTRACK	# track the ARM700 swi bug
118#options 	PORTMASTER	# Enable PortMaster only options
119options 	DIAGNOSTIC	# internally consistency checks
120#options 	PMAP_DEBUG	# Enable pmap_debug_level code
121#options 	IPKDB		# remote kernel debugging
122#options 	DDB		# in-kernel debugger
123#options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
124#makeoptions	DEBUG="-g"	# compile full symbol table
125
126config		netbsd	root on ne0 type nfs
127options 	NFS_BOOT_DHCP
128#options 	NFS_BOOTPARAM
129
130# serial console ... the conaddr is hardcoded as the pioc address + 4*com offset
131# this really be fixed some day
132#options 	COMCONSOLE,CONADDR="0x210000+4*0x3f8",CONUNIT=0,CONSPEED=9600
133
134# The main bus device
135mainbus0 at root
136
137# The boot CPU
138cpu0 at mainbus?
139
140# The IOMD
141iomd0	at mainbus?
142
143# system clock via IOMD
144clock*	at iomd?
145
146iomdkbc*	at iomd?		# IOMD keyboard/mouse interface
147
148#pckbd*		at iomdkbc? slot ?	# PS/2 keyboard
149#options 	PCKBD_LAYOUT=KB_UK
150#wskbd*		at pckbd?
151
152pms*		at iomdkbc? slot ?	# PS/2 mouse
153wsmouse*	at pms?
154
155pseudo-device	wsmux
156
157# kbd via IOMD
158kbd*	at iomd?
159
160# IIC bus device
161iomdiic* at iomd?
162iic0 at iomdiic?
163
164# RTC device via IIC bus
165pcfrtc*	at iic? addr 0x50
166
167# VIDC device
168vidc0		at mainbus?
169
170# The vidc
171vidcconsole0	at vidc?
172
173# generic VT console device
174vt0	at vidc?
175vt1	at vidc?
176#vt2	at vidc?
177#vt3	at vidc?
178#vt4	at vidc?
179#vt5	at vidc?
180
181# Peripheral IO Controller
182pioc0	at mainbus? base 0x00210000
183
184# IDE disk controller
185#wdc*	at pioc? offset 0x0170 irq -1
186
187# ATA (IDE) bus support
188#atabus* at ata?
189
190#wd*	at atabus? drive ?
191#atapibus* at atapi?
192#cd*	at atapibus? drive ?
193#sd*	at atapibus? drive ?
194
195# Floppy disk controller
196#fdc*	at pioc? offset 0x03f0 irq 12 dack 0x2000
197#fd0	at fdc? drive ?
198
199# Serial ports
200#com*	at pioc? offset 0x03f8 irq 10
201
202# Parallel ports
203lpt*	at pioc? offset 0x0278 irq 0	# Old driver
204#atppc*	at pioc? offset 0x0278 irq 0	# New driver
205#ppbus*	at atppc?
206#lpt*	at ppbus?		# Parallel printer
207#plip*	at ppbus?		# Parallel line IP
208
209# Audio device
210vidcaudio0	at vidc?
211audio*		at vidcaudio0
212
213# Podule bus device
214podulebus0	at root
215
216#asc*	at podulebus?			# Acorn SCSI card
217#scsibus* at asc?
218
219#cosc*	at podulebus?			# MCS Connect32 SCSI II card
220#scsibus* at cosc?
221
222#ptsc*	at podulebus?			# Power-Tec SCSI II card
223#scsibus* at ptsc?
224
225#csc*	at podulebus?			# Cumana SCSI II card
226#scsibus* at csc?
227
228#oak*	at podulebus?			# Oak SCSI I card
229#scsibus* at oak?
230
231#csa*	at podulebus?			# Cumana SCSI I adpater
232#scsibus* at csa?
233
234#hcsc*	at podulebus0 slot ?	# HCCS 8-bit SCSI interface
235#scsibus* at hcsc?
236
237#sd*	at scsibus? target ? lun ?	# SCSI disk drives
238#st*	at scsibus? target ? lun ?	# SCSI tape drives
239#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
240#ch*	at scsibus? target ? lun ?	# SCSI auto-changers
241#uk*	at scsibus? target ? lun ?	# SCSI unknown device
242#ss*	at scsibus? target ? lun ?	# SCSI scanner
243
244#icside*	at podulebus?			# ICS IDE card
245
246#rapide*	at podulebus?			# Yellowstone RapIDE card
247
248#simide*	at podulebus?			# Simtec IDE card
249
250#amps*	at podulebus?			# Atomwide Multi-Port Serial card
251#com*	at amps?
252
253#ie*	at podulebus?			# Ether1 podules
254#ea*	at podulebus?			# Ether3 podules
255#eb0	at podulebus?			# EtherB network slot cards
256ne*	at podulebus?			# NE2000 clone cards
257
258pseudo-device	loop	1		# network loopback
259#pseudo-device	bpfilter 8		# packet filter
260#pseudo-device	sl	2		# CSLIP
261#pseudo-device	ppp	2		# PPP
262#pseudo-device	tun	2		# network tunneling over tty
263#pseudo-device	ipfilter 1		# ip filter
264#pseudo-device	strip	4		# STRIP
265pseudo-device	pty			# pseudo-terminals
266#pseudo-device	tb	1		# tablet line discipline
267pseudo-device	vnd	4		# disk-like interface to files
268#pseudo-device	ccd	2		# concatenated disk devices
269#pseudo-device	fss	4		# file system snapshot device
270pseudo-device	md	1		# Ramdisk driver
271pseudo-device	rnd			# /dev/random and /dev/urandom
272pseudo-device	clockctl		# user control of clock subsystem
273
274makeoptions	MONITOR="Taxan875+LR"
275#makeoptions	MONITOR="AKF60"
276makeoptions	MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"
277