xref: /netbsd-src/sys/arch/i386/conf/NET4501 (revision 21e37cc72a480a47828990a439cde7ac9ffaf0c6)
1# $NetBSD: NET4501,v 1.25 2004/02/16 17:11:27 wiz Exp $
2#
3# NET4501 -- kernel configuration for a Soekris Engineering net4501
4# single-board computer.
5#
6#	http://www.soekris.com/
7#
8
9include 	"arch/i386/conf/std.i386"
10
11#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
12
13#ident 		"NET4501-$Revision: 1.25 $"
14
15maxusers	32		# estimated number of users
16
17# CPU support.  At least one is REQUIRED.
18#options 	I386_CPU
19options 	I486_CPU
20#options 	I586_CPU
21#options 	I686_CPU
22
23# AMD Elan SC520's timer runs at a different frequency
24options 	TIMER_FREQ=1189200
25
26makeoptions	COPTS="-Os -mcpu=i486"
27options 	VNODE_OP_NOINLINE
28
29# CPU-related options.
30#options 	MATH_EMULATE	# floating point emulation
31#options 	VM86		# virtual 8086 emulation
32#options 	USER_LDT	# user-settable LDT; used by WINE
33
34#options 	MTRR		# memory-type range register syscall support
35#options 	PERFCTRS	# performance-monitoring counters support
36
37# delay between "rebooting ..." message and hardware reset, in milliseconds
38#options 	CPURESET_DELAY=2000
39
40# This option allows you to force a serial console at the specified
41# I/O address.   see console(4) for details.
42#options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
43#	you don't want the option below ON iff you are using the
44#	serial console option of the new boot strap code.
45#options 	CONS_OVERRIDE	# Always use above! independent of boot info
46
47# The following options override the memory sizes passed in from the boot
48# block.  Use them *only* if the boot block is unable to determine the correct
49# values.  Note that the BIOS may *correctly* report less than 640k of base
50# memory if the extended BIOS data area is located at the top of base memory
51# (as is the case on most recent systems).
52#options 	REALBASEMEM=639		# size of base memory (in KB)
53#options 	REALEXTMEM=15360	# size of extended memory (in KB)
54
55# Standard system options
56
57options 	INSECURE	# disable kernel security levels
58
59options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
60options 	NTP		# NTP phase/frequency locked loop
61
62options 	KTRACE		# system call tracing via ktrace(1)
63
64options 	SYSVMSG		# System V-like message queues
65options 	SYSVSEM		# System V-like semaphores
66#options 	SEMMNI=10	# number of semaphore identifiers
67#options 	SEMMNS=60	# number of semaphores in system
68#options 	SEMUME=10	# max number of undo entries per process
69#options 	SEMMNU=30	# number of undo structures in system
70options 	SYSVSHM		# System V-like memory sharing
71#options 	SHMMAXPGS=2048	# 2048 pages is the default
72
73options 	LKM		# loadable kernel modules
74
75options 	USERCONF	# userconf(4) support
76#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
77
78# Diagnostic/debugging support options
79#options 	DIAGNOSTIC	# expensive kernel consistency checks
80#options 	DEBUG		# expensive debugging checks/support
81#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
82options 	DDB		# in-kernel debugger
83#options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
84options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
85#options 	KGDB		# remote debugger
86#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
87#makeoptions	DEBUG="-g"	# compile full symbol table
88
89# Compatibility options
90options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
91options 	COMPAT_09	# NetBSD 0.9
92options 	COMPAT_10	# NetBSD 1.0
93options 	COMPAT_11	# NetBSD 1.1
94options 	COMPAT_12	# NetBSD 1.2, 386BSD, and BSDI
95options 	COMPAT_13	# NetBSD 1.3, 386BSD, and BSDI
96options 	COMPAT_14	# NetBSD 1.4
97options 	COMPAT_15	# NetBSD 1.5
98options 	COMPAT_16	# NetBSD 1.6
99options 	COMPAT_43	# 4.3BSD, 386BSD, and BSDI
100options 	COMPAT_386BSD_MBRPART # recognize old partition ID
101#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
102
103#options 	COMPAT_SVR4	# binary compatibility with SVR4
104#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
105#options 	COMPAT_LINUX	# binary compatibility with Linux
106#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
107#options 	COMPAT_MACH	# binary compatibility with Mach binaries
108#options 	EXEC_MACHO	# exec MACH-O binaries
109#options 	COMPAT_PECOFF	# kernel support to run Win32 apps
110
111# File systems
112file-system 	FFS		# UFS
113#file-system 	EXT2FS		# second extended file system (linux)
114#file-system 	LFS		# log-structured file system
115file-system 	MFS		# memory file system
116file-system 	NFS		# Network File System client
117#file-system 	NTFS		# Windows/NT file system (experimental)
118#file-system 	CD9660		# ISO 9660 + Rock Ridge file system
119#file-system 	MSDOSFS		# MS-DOS file system
120file-system 	FDESC		# /dev/fd
121file-system 	KERNFS		# /kern
122#file-system 	NULLFS		# loopback file system
123#file-system 	OVERLAY		# overlay file system
124#file-system 	PORTAL		# portal filesystem (still experimental)
125file-system 	PROCFS		# /proc
126#file-system 	UMAPFS		# NULLFS + uid and gid remapping
127#file-system 	UNION		# union file system
128#file-system	CODA		# Coda File System; also needs vcoda (below)
129
130# File system options
131#options 	QUOTA		# UFS quotas
132#options 	FFS_EI		# FFS Endian Independent support
133options 	SOFTDEP		# FFS soft updates support.
134#options 	NFSSERVER	# Network File System server
135#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
136				# immutable) behave as system flags.
137
138# Networking options
139options 	GATEWAY		# packet forwarding
140options 	INET		# IP + ICMP + TCP + UDP
141options 	INET6		# IPV6
142#options 	IPSEC		# IP security
143#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
144#options 	IPSEC_DEBUG	# debug for IP security
145options 	MROUTING	# IP multicast routing
146#options 	NS		# XNS
147#options 	NSIP		# XNS tunneling over IP
148#options 	ISO,TPIP	# OSI
149#options 	EON		# OSI tunneling over IP
150#options 	CCITT,LLC,HDLC	# X.25
151#options 	NETATALK	# AppleTalk networking protocols
152#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
153#options 	PPP_DEFLATE	# Deflate compression support for PPP
154#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
155options 	PFIL_HOOKS	# pfil(9) packet filter hooks
156#options 	IPFILTER_LOG	# ipmon(8) log support
157#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
158
159# These options enable verbose messages for several subsystems.
160# Warning, these may compile large string tables into the kernel!
161#options 	MIIVERBOSE	# verbose PHY autoconfig messages
162#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
163#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
164
165options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
166
167# Kernel root file system and dump configuration.
168config		netbsd	root on ? type ?
169#config		netbsd	root on sd0a type ffs
170#config		netbsd	root on ? type nfs
171
172#
173# Device configuration
174#
175
176mainbus0 at root
177cpu0 	at mainbus0
178
179# Basic Bus Support
180
181# PCI bus support
182pci*	at mainbus? bus ?
183
184# Configure PCI using BIOS information
185#options 	PCIBIOS			# PCI BIOS support
186#options 	PCIBIOSVERBOSE		# PCI BIOS verbose info
187#options 	PCIBIOS_ADDR_FIXUP	# fixup PCI I/O addresses
188#options 	PCIBIOS_BUS_FIXUP	# fixup PCI bus numbering
189#options 	PCIBIOS_INTR_FIXUP	# fixup PCI interrupt routing
190#options 	PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
191#options 	PCIBIOS_INTR_GUESS	# see pcibios(4)
192#options 	PCIINTR_DEBUG		# super-verbose PCI interrupt fixup
193
194# PCI bridges
195elansc*	at pci? dev ? function ?	# Elan SC520 System Controller
196
197# ISA bus support
198isa0	at mainbus?
199
200# CardBus bridge support
201cbb*		at pci? dev ? function ?
202cardslot*	at cbb?
203
204# CardBus bus support
205cardbus*	at cardslot?
206pcmcia* 	at cardslot?
207
208# Cardbus NICs
209ath*	at cardbus? dev ? function ?	# Atheros 5210/5211/5212 802.11
210atw*	at cardbus? dev ? function ?	# ADMtek ADM8211 (802.11)
211
212# Coprocessor Support
213
214# Math Coprocessor support
215npx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
216
217# ISA serial interfaces
218com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
219com1	at isa? port 0x2f8 irq 3
220
221# IDE and related devices
222
223# ATA (IDE) bus support
224atabus*	at ata?
225
226# ISA ST506, ESDI, and IDE controllers
227# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
228# fall back to 16bits I/O if 32bits I/O are not functional).
229# Some controllers pass the initial 32bit test, but will fail later.
230wdc0	at isa? port 0x1f0 irq 14 flags 0x00
231
232# IDE drives
233# Flags are used only with controllers that support DMA operations
234# and mode settings (e.g. some pciide controllers)
235# The lowest order four bits (rightmost digit) of the flags define the PIO
236# mode to use, the next set of four bits the DMA mode and the third set the
237# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
238# to use, and the last bit must be 1 for this setting to be used.
239# For DMA and UDMA, 0xf (1111) means 'disable'.
240# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
241# (0xc=1100, 0xa=1010, 0xf=1111)
242# 0x0000 means "use whatever the drive claims to support".
243wd*	at atabus? drive ? flags 0x0000
244
245# Network Interfaces
246
247# PCI network interfaces
248sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
249wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
250
251# PCMCIA network interfaces
252wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
253
254# MII/PHY support
255nsphyter* at mii? phy ?			# NS83843 PHYs
256
257# Pseudo-Devices
258
259# network pseudo-devices
260pseudo-device	bpfilter	16	# Berkeley packet filter
261pseudo-device	ipfilter		# IP filter (firewall) and NAT
262pseudo-device	loop			# network loopback
263#pseudo-device	ppp		2	# Point-to-Point Protocol
264#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
265#pseudo-device	sl		2	# Serial Line IP
266#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
267pseudo-device	tun		2	# network tunneling over tty
268#pseudo-device	gre		2	# generic L3 over IP tunnel
269pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
270pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
271pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
272pseudo-device	vlan			# IEEE 802.1q encapsulation
273pseudo-device	bridge			# simple inter-network bridging
274
275# miscellaneous pseudo-devices
276pseudo-device	pty			# pseudo-terminals
277#pseudo-device	tb		1	# tablet line discipline
278#pseudo-device	sequencer	1	# MIDI sequencer
279# rnd works; RND_COM does not on port i386 yet.
280pseudo-device	rnd			# /dev/random and in-kernel generator
281#options 	RND_COM			# use "com" randomness as well (BROKEN)
282pseudo-device	clockctl		# user control of clock subsystem
283