NC revision 1.58
1#	$NetBSD: NC,v 1.58 2013/03/01 18:25:28 joerg Exp $
2#
3#	NC - with wscons
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# File systems
27
28#file-system	FFS		# UFS
29#file-system	LFS		# log-structured file system
30file-system	MFS		# memory file system
31file-system	NFS		# Network file system
32#file-system 	ADOSFS		# AmigaDOS-compatible file system
33#file-system 	EXT2FS		# second extended file system (linux)
34#file-system	CD9660		# ISO 9660 + Rock Ridge file system
35#file-system	MSDOSFS		# MS-DOS file system
36#file-system	FDESC		# /dev/fd
37#file-system	FILECORE	# Acorn filecore file system
38file-system	KERNFS		# /kern
39#file-system	NULLFS		# loopback file system
40file-system	PROCFS		# /proc
41#file-system	UMAPFS		# NULLFS + uid and gid remapping
42#file-system	UNION		# union file system
43#file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
44file-system	PTYFS		# /dev/pts/N support
45
46# File system options
47#options 	QUOTA		# legacy UFS quotas
48#options 	QUOTA2		# new, in-filesystem UFS quotas
49#options 	NFSSERVER
50
51# Networking options
52
53#options 	GATEWAY		# packet forwarding
54options 	INET6		# IPV6
55#options 	IPSEC		# IP security
56#options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
57#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
58#options 	IPSEC_DEBUG	# debug for IP security
59options 	INET		# IP + ICMP + TCP + UDP
60#options 	MROUTING	# IP multicast routing
61#options 	PIM		# Protocol Independent Multicast
62#options 	NETATALK	# AppleTalk networking
63#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
64#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
65#options 	PPP_DEFLATE	# Deflate compression support for PPP
66#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
67#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
68
69# Compatibility options
70
71options 	COMPAT_43	# 4.3BSD compatibility.
72options 	COMPAT_40	# NetBSD 4.0 compatibility.
73options 	COMPAT_30	# NetBSD 3.0 compatibility.
74options 	COMPAT_20	# NetBSD 2.0 compatibility.
75options 	COMPAT_16	# NetBSD 1.6 compatibility.
76options 	COMPAT_15	# NetBSD 1.5 compatibility.
77options 	COMPAT_14	# NetBSD 1.4 compatibility.
78#options 	COMPAT_13	# NetBSD 1.3 compatibility.
79#options 	COMPAT_12	# NetBSD 1.2 compatibility.
80#options 	COMPAT_11	# NetBSD 1.1 compatibility.
81#options 	COMPAT_10	# NetBSD 1.0 compatibility.
82#options 	COMPAT_09	# NetBSD 0.9 compatibility.
83#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
84options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
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
91
92# Device options
93
94options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
95#options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
96#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
97
98# Miscellaneous kernel options
99options 	KTRACE		# system call tracing, a la ktrace(1)
100options 	IRQSTATS	# manage IRQ statistics
101options 	KMEMSTATS	# kernel memory statistics
102options 	USERCONF	# userconf(4) support
103#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
104#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
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
112options 	DDB		# in-kernel debugger
113options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
114#makeoptions	DEBUG="-g"	# compile full symbol table
115
116config		netbsd	root on ne0 type nfs
117options 	NFS_BOOT_DHCP
118#options 	NFS_BOOTPARAM
119
120# serial console ... the conaddr is hardcoded as the pioc address + 4*com offset
121# this really be fixed some day
122#options 	COMCONSOLE,CONADDR="0x210000+4*0x3f8",CONUNIT=0,CONSPEED=9600
123
124# The main bus device
125mainbus0 at root
126
127# The boot CPU
128cpu0 at mainbus?
129
130# The IOMD
131iomd0	at mainbus?
132
133# system clock via IOMD
134clock*	at iomd?
135
136# IIC bus device
137iomdiic* at iomd?
138iic0 at iomdiic?
139
140# RTC device via IIC bus
141pcfrtc*	at iic? addr 0x50
142
143# VIDC device
144vidc0		at mainbus?
145
146# WSCONS
147# ws console uses DUMB, SUN or VT100 terminal emulation
148#options 	WSEMUL_NODUMB
149#options 	WSEMUL_SUN
150options 	WSEMUL_VT100
151
152#options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
153
154#options 	FONT_BOLD8x16
155#options 	FONT_GALLANT12x22	# Very nice font
156#options 	FONT_LUCIDA16x29
157#options 	FONT_OMRON12x20		# looks funny
158#options 	FONT_QVSS8x15		# broken ?
159#options 	FONT_SONY12x25		# looks like VT220 font
160#options 	FONT_SONY8x16		# not tested
161options 	FONT_VT220L8x8		# 8x8 font as in Arch. cons
162#options 	FONT_VT220L8x16		# 8x(2x8) font as in Arch. cons
163#options 	FONT_VT220L8x10		# not tested
164#options 	FONT_VT220L8x20		# not tested
165
166vidcvideo0	at vidc?		# wscons driver for VIDC
167wsdisplay*	at vidcvideo? console ?	# display itself
168
169iomdkbc*	at iomd?		# IOMD keyboard/mouse interface
170
171pckbd*		at iomdkbc? slot ?	# PS/2 keyboard
172options 	PCKBD_LAYOUT=KB_UK
173wskbd*		at pckbd?
174
175pms*		at iomdkbc? slot ?	# PS/2 mouse
176wsmouse*	at pms?
177
178#qms*		at iomd?		# ws quadmouse driver
179#wsmouse*	at qms?			# wsmouse on ws quadmouse
180
181pseudo-device	wsmux
182
183
184# Peripheral IO Controller
185pioc0	at mainbus? base 0x00210000
186
187# IDE disk controller
188#wdc*	at pioc? offset 0x0170 irq -1
189
190# ATA (IDE) bus support
191#atabus* at ata?
192
193#wd*	at atabus? drive ?
194#atapibus* at atapi?
195#cd*	at atapibus? drive ?
196#sd*	at atapibus? drive ?
197
198# Floppy disk controller
199#fdc*	at pioc? offset 0x03f0 irq 12 dack 0x2000
200#fd0	at fdc? drive ?
201
202# Serial ports
203#com*	at pioc? offset 0x03f8 irq 10
204
205# Parallel ports
206lpt*	at pioc? offset 0x0278 irq 0	# Old driver
207#atppc*	at pioc? offset 0x0278 irq 0	# New driver
208#ppbus*	at atppc?
209#lpt*	at ppbus?		# Parallel printer
210#plip*	at ppbus?		# Parallel line IP
211
212# Audio device
213vidcaudio0	at vidc?
214audio*		at vidcaudio0
215
216# Podule bus device
217podulebus0	at root
218
219#sec*	at podulebus?			# Acorn SCSI card
220#scsibus* at sec?
221
222#cosc*	at podulebus?			# MCS Connect32 SCSI II card
223#scsibus* at cosc?
224
225#ptsc*	at podulebus?			# Power-Tec SCSI II card
226#scsibus* at ptsc?
227
228#csc*	at podulebus?			# Cumana SCSI II card
229#scsibus* at csc?
230
231#oak*	at podulebus?			# Oak SCSI I card
232#scsibus* at oak?
233
234#csa*	at podulebus?			# Cumana SCSI I adapter
235#scsibus* at csa?
236
237#hcsc*	at podulebus0 slot ?	# HCCS 8-bit SCSI interface
238#scsibus* at hcsc?
239
240#sd*	at scsibus? target ? lun ?	# SCSI disk drives
241#st*	at scsibus? target ? lun ?	# SCSI tape drives
242#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
243#ch*	at scsibus? target ? lun ?	# SCSI auto-changers
244#uk*	at scsibus? target ? lun ?	# SCSI unknown device
245#ss*	at scsibus? target ? lun ?	# SCSI scanner
246
247#icside*	at podulebus?			# ICS IDE card
248
249#rapide*	at podulebus?			# Yellowstone RapIDE card
250
251#simide*	at podulebus?			# Simtec IDE card
252
253#amps*	at podulebus?			# Atomwide Multi-Port Serial card
254#com*	at amps?
255
256#ei*	at podulebus?			# Ether1 podules
257#ea*	at podulebus?			# Ether3 podules
258#eb0	at podulebus?			# EtherB network slot cards
259ne*	at podulebus?			# NE2000 clone cards
260
261pseudo-device	loop			# network loopback
262#pseudo-device	bpfilter		# packet filter
263#pseudo-device	sl			# CSLIP
264#pseudo-device	ppp			# PPP
265#pseudo-device	tun			# network tunneling over tty
266#pseudo-device	ipfilter		# ip filter
267#pseudo-device	strip			# STRIP
268pseudo-device	pty			# pseudo-terminals
269pseudo-device	vnd			# disk-like interface to files
270#pseudo-device	ccd	2		# concatenated disk devices
271#pseudo-device	fss			# file system snapshot device
272pseudo-device	md			# Ramdisk driver
273pseudo-device	clockctl		# user control of clock subsystem
274
275# a pseudo device needed for SMBFS
276#pseudo-device	nsmb			# experimental - SMB requester
277
278# If the standard modes don't work for your monitor, you can specify
279# a RISC-OS-format monitor definition file and a list of modes here.
280
281#makeoptions	MONITOR="Taxan875+LR"
282#makeoptions	MONITOR="AKF60"
283#makeoptions	MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"
284