WALNUT revision 1.61
1#	$NetBSD: WALNUT,v 1.61 2013/03/01 18:25:39 joerg Exp $
2#
3#	GENERIC -- everything that's currently supported
4#
5
6include		"arch/evbppc/conf/std.walnut"
7
8#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
9
10#ident 		"WALNUT"
11
12maxusers	32
13
14#options 	UVMHIST
15#options 	UVMHIST_PRINT
16
17# Options for necessary to use MD
18#options 	MEMORY_DISK_HOOKS
19#options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
20#options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
21#options 	MEMORY_DISK_ROOT_SIZE=16384	# size of memory disk, in blocks
22
23
24#options 	INSECURE	# disable kernel security levels
25#options 	NTP		# NTP phase/frequency locked loop
26options 	KTRACE		# system call tracing via ktrace(1)
27
28options 	SYSVMSG		# System V message queues
29options 	SYSVSEM		# System V semaphores
30options 	SYSVSHM		# System V shared memory
31
32options 	USERCONF	# userconf(4) support
33#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
34#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
35
36# Diagnostic/debugging support options
37#options 	DIAGNOSTIC	# cheap kernel consistency checks
38#options 	DEBUG		# expensive debugging checks/support
39options 	DDB		# in-kernel debugger
40options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
41options 	TRAP_PANICWAIT
42options 	SYMTAB_SPACE=470000	# size for embedded symbol table
43
44makeoptions	DEBUG="-g"	# compile full symbol table
45
46# Compatibility options
47#options 	COMPAT_09	# NetBSD 0.9,
48#options 	COMPAT_10	# NetBSD 1.0,
49#options 	COMPAT_11	# NetBSD 1.1,
50#options 	COMPAT_12	# NetBSD 1.2,
51options 	COMPAT_13	# NetBSD 1.3,
52options 	COMPAT_14	# NetBSD 1.4,
53options 	COMPAT_15	# NetBSD 1.5,
54options 	COMPAT_16	# NetBSD 1.6,
55options 	COMPAT_20	# NetBSD 2.0,
56options 	COMPAT_30	# NetBSD 3.0,
57options 	COMPAT_40	# NetBSD 4.0,
58options 	COMPAT_50	# NetBSD 5.0 compatibility.
59options 	COMPAT_60	# NetBSD 6.0 compatibility.
60options 	COMPAT_43	# and 4.3BSD
61#options 	COMPAT_386BSD_MBRPART # recognize old partition ID
62#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
63options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
64
65# File systems
66file-system 	FFS		# UFS
67file-system 	EXT2FS		# second extended file system (linux)
68file-system 	LFS		# log-structured file system
69file-system 	MFS		# memory file system
70file-system 	NFS		# Network File System client
71file-system 	CD9660		# ISO 9660 + Rock Ridge file system
72file-system 	MSDOSFS		# MS-DOS file system
73file-system 	FDESC		# /dev/fd
74file-system 	KERNFS		# /kern
75file-system 	NULLFS		# loopback file system
76file-system 	OVERLAY		# overlay file system
77file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
78file-system 	PROCFS		# /proc
79file-system 	TMPFS		# efficient memory file system
80file-system 	UMAPFS		# NULLFS + uid and gid remapping
81file-system 	UNION		# union file system
82file-system	PTYFS		# /dev/pts/N support
83
84# File system options
85options 	QUOTA		# legacy UFS quotas
86options 	QUOTA2		# new, in-filesystem UFS quotas
87options 	FFS_EI		# FFS Endian Independent support
88options 	WAPBL		# File system journaling support
89options 	NFSSERVER	# Network File System server
90#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
91options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
92				# immutable) behave as system flags.
93
94options 	NFS_BOOT_DHCP	# Support DHCP NFS root
95
96# Networking options
97#options 	GATEWAY		# packet forwarding
98options 	INET		# IP + ICMP + TCP + UDP
99options 	INET6		# IPV6
100#options 	IPSEC		# IP security
101#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
102#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
103#options 	IPSEC_DEBUG	# debug for IP security
104#options 	MROUTING	# IP multicast routing
105#options 	PIM		# Protocol Independent Multicast
106#options        DIRECTED_BROADCAST      # allow broadcasts through routers
107#options 	NETATALK	# AppleTalk networking protocols
108options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
109options 	PPP_DEFLATE	# Deflate compression support for PPP
110options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
111options 	PFIL_HOOKS	# pfil(9) packet filter hooks
112options 	IPFILTER_LOG	# ipmon(8) log support
113options 	IPFILTER_LOOKUP	# ippool(8) support
114options 	IPFILTER_COMPAT # Compat for IP-Filter
115#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
116#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
117
118# These options enable verbose messages for several subsystems.
119# Warning, these may compile large string tables into the kernel!
120options 	PCIVERBOSE	# verbose PCI device autoconfig messages
121options 	MIIVERBOSE	# verbose PHY autoconfig messages
122#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
123options 	SCSIVERBOSE	# human readable SCSI error messages
124options 	PCI_NETBSD_CONFIGURE	# Do not rely on BIOS/whatever to configure PCI devices
125#options 	PCI_CONFIGURE_VERBOSE	# Show PCI config information
126
127# wscons options
128#options 	WSEMUL_SUN		# sun terminal emulation
129#options 	WSEMUL_VT100		# VT100 / VT220 emulation
130#options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
131
132# Kernel root file system and dump configuration.
133config		netbsd	root on ? type ?
134
135#
136# Device configuration
137#
138
139plb0 at root				# Processor Local Bus
140
141cpu0	at plb?
142
143ecc0	at plb? irq 17			# On-chip ECC controller
144
145opb*	at plb?				# On-chip Peripheral Bus
146
147wdog*	at opb?				# Watchdog timer
148
149com*	at opb? addr ? irq ?		# UARTs
150
151emac0	at opb? addr ? irq ?		# Ethernet Media Access Controller
152options	EMAC_EVENT_COUNTERS
153
154pchb0	at plb?				# PCI-Host bridges
155
156pci*	at pchb?
157ppb*	at pci? dev ? function ?	# PCI-PCI bridges
158
159fpa*	at pci? dev ? function ?	# DEC PCI FDDI (DEFPA) Controller
160ep*	at pci? dev ? function ?	# 3Com 3c59x
161epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
162ex*	at pci? dev ? function ?	# 3Com 90x[B]
163fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
164ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
165rtk*	at pci? dev ? function ?	# Realtek 8129/8139
166sip*	at pci? dev ? function ?	# SiS 900/7016 Ethernet
167tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
168adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
169adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
170ahc*	at pci? dev ? function ?	# Adaptec 294x, aic78x0 SCSI
171bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
172isp*	at pci? dev ? function ?	# Qlogic ISP 10x0/2xx0 SCSI/Fibre Chan
173siop*	at pci? dev ? function ?	# NCR 53c8xx SCSI
174pcscp*	at pci? dev ? function ?	# AMD Am53c974 PCscsi-PCI SCSI
175pciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
176acardide* at pci? dev ? function ?	# Acard IDE controllers
177aceride* at pci? dev ? function ?	# Acer Lab IDE controllers
178artsata* at pci? dev ? function ?	# Intel i31244 SATA controller
179cmdide* at pci? dev ? function ?	# CMD tech IDE controllers
180cypide* at pci? dev ? function ?	# Cypress IDE controllers
181hptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
182optiide* at pci? dev ? function ?	# Opti IDE controllers
183pdcide* at pci? dev ? function ?	# Promise IDE controllers
184pdcsata* at pci? dev ? function ?	# Promise SATA150 controllers
185satalink* at pci? dev ? function ?	# SiI SATALink controllers
186siside* at pci? dev ? function ?	# SiS IDE controllers
187slide*  at pci? dev ? function ?	# Symphony Labs IDE controllers
188viaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
189#cbb*	at pci? dev ? function ?	# PCI-CardBus bridge
190
191exphy*	at mii? phy ?			# 3Com internal PHYs
192icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS189x
193inphy*	at mii? phy ?			# Intel 82555 PHYs
194iophy*	at mii? phy ?			# Intel 82553 PHYs
195lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
196nsphy*	at mii? phy ?			# NS83840 PHYs
197nsphyter* at mii? phy ?			# NS83843 PHYs
198qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
199sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
200tlphy*	at mii? phy ?			# ThunderLAN PHYs
201tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
202ukphy*	at mii? phy ?			# generic unknown PHYs
203
204# PCI serial interfaces
205#cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
206#cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
207
208#cardslot* at cbb?
209#cardbus* at cardslot?
210#pcmcia*	at cardslot?
211
212#com*	at pcmcia? function ?		# Modems and serial cards
213#wdc*	at pcmcia? function ?		# PCMCIA IDE controllers
214#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
215#mbe*	at pcmcia? function ?		# MB8696x based Ethernet
216#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
217#ex*	at cardbus? function ?	# 3Com 3C575TX
218#tlp*	at cardbus? function ?	# DECchip 21143
219#rtk*	at cardbus? function ?	# Realtek 8129/8139
220
221scsibus* at adv?
222scsibus* at adw?
223scsibus* at ahc?
224scsibus* at bha?
225scsibus* at isp?
226scsibus* at pcscp?
227scsibus* at siop?
228
229sd*	at scsibus? target ? lun ?	# SCSI disks
230st*	at scsibus? target ? lun ?	# SCSI tape drives
231cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
232ch*	at scsibus? target ? lun ?	# SCSI autochangers
233ss*	at scsibus? target ? lun ?	# SCSI scanners
234uk*	at scsibus? target ? lun ?	# SCSI unknown
235
236atabus* 	at ata? channel ?
237wd*		at atabus? drive ? flags 0x0000
238
239atapibus* at atabus?
240
241cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
242sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
243uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
244
245pbus*	at plb?				# off-chip Peripheral BUS
246
247ds1743rtc0	at pbus? addr ?			# RTC
248
249#pckbc0	at pbus?
250#pckbd*	at pckbc?
251#wskbd*	at pckbd? console ?
252#pms*	at pckbc?
253#wsmouse* at pms? mux 0
254
255#vga*	at pci? dev ? function ?
256#wsdisplay* at vga? console ?
257
258pseudo-device	vnd			# disk-like interface to files
259pseudo-device	ccd		4	# concatenated/striped disk devices
260#pseudo-device	cgd		4	# cryptographic disk devices
261pseudo-device	raid		4	# RAIDframe disk driver
262options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
263#pseudo-device	fss			# file system snapshot device
264pseudo-device	loop			# network loopback
265pseudo-device	bpfilter		# packet filter
266pseudo-device	ipfilter		# IP filter (firewall) and NAT
267pseudo-device	ppp			# Point-to-Point Protocol
268pseudo-device	sl			# Serial Line IP
269pseudo-device	tun			# network tunneling over tty
270#pseudo-device	gre			# generic L3 over IP tunnel
271pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
272#pseudo-device	faith			# IPv[46] tcp relay translation i/f
273pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
274pseudo-device	vlan			# IEEE 802.1q encapsulation
275pseudo-device	pty			# pseudo-terminals
276#pseudo-device	wsmux			# ick
277pseudo-device	clockctl		# user control of clock subsystem
278pseudo-device	ksyms			# /dev/ksyms
279pseudo-device	kttcp			# kernel ttcp
280pseudo-device	putter			# for puffs and pud
281