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