GENERIC revision 1.42
1#	$NetBSD: GENERIC,v 1.42 2001/09/01 23:08:45 atatat Exp $
2#
3#	GENERIC -- everything that's currently supported
4#
5
6include "arch/ofppc/conf/std.ofppc"
7
8#ident 		"GENERIC-$Revision: 1.42 $"
9
10maxusers	32
11
12# various hacks due to bugs in Openfirmware implementation
13options 	FIRMWORKSBUGS
14
15# Standard system options
16#options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
17#options 	INSECURE	# disable kernel security checks
18#options 	NTP		# NTP phase/frequency locked loop
19options 	KTRACE		# system call tracing via ktrace(1)
20
21options 	SYSVMSG		# System V message queues
22options 	SYSVSEM		# System V semaphores
23#options	SEMMNI=10	# number of semaphore identifiers
24#options	SEMMNS=60	# number of semaphores in system
25#options	SEMUME=10	# max number of undo entries per process
26#options	SEMMNU=30	# number of undo structures in system
27options 	SYSVSHM		# System V shared memory
28#options 	SHMMAXPGS=1024	# 1024 pages is the default
29
30options 	LKM		# loadable kernel modules
31
32# Diagnostic/debugging support options
33options 	DIAGNOSTIC	# cheap kernel consistency checks
34#options	DEBUG		# expensive debugging checks/support
35options 	DDB		# in-kernel debugger
36options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
37options 	TRAP_PANICWAIT
38
39makeoptions	DEBUG="-g"	# compile fill symbol table
40
41# Compatibility option
42options 	COMPAT_09	# NetBSD 0.9,
43options 	COMPAT_10	# NetBSD 1.0,
44options 	COMPAT_11	# NetBSD 1.1,
45options 	COMPAT_12	# NetBSD 1.2,
46options 	COMPAT_13	# NetBSD 1.3,
47options 	COMPAT_14	# NetBSD 1.4,
48options 	COMPAT_43	# and 4.3BSD
49options 	COMPAT_386BSD_MBRPART # recognize old partition ID
50#options 	COMPAT_LINUX   # Linux binary compatibility (experimental)
51#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
52
53# File systems
54file-system 	FFS		# UFS
55file-system 	EXT2FS		# second extended file system (linux)
56file-system 	LFS		# log-structured file system
57file-system 	MFS		# memory file system
58file-system 	NFS		# Network file System client
59file-system 	CD9660		# ISO 9660 + Rock Ridge file system
60file-system 	MSDOSFS		# MS-DOS file system
61file-system 	FDESC		# /dev/fd
62file-system 	KERNFS		# /kern
63file-system 	NULLFS		# loopback file system
64file-system 	OVERLAY		# overlay file system
65file-system 	PORTAL		# portal file system (still experimental)
66file-system 	PROCFS		# /proc
67file-system 	UMAPFS		# NULLFS + uid and gid remapping
68file-system 	UNION		# union file system
69file-system 	NTFS		# Windows NT file system
70
71# File system options
72options 	QUOTA		# UFS quotas
73options 	FFS_EI		# FFS Endian Independent support
74options 	SOFTDEP		# FFS soft updates support
75options 	NFSSERVER	# Network File System server
76#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
77				    # immutable) behave as system flags.
78
79options 	NFS_BOOT_DHCP	# Support DHCP NFS root
80
81# Networking options
82#options 	GATEWAY		# packet forwarding
83options 	INET		# IP + ICMP + TCP + UDP
84options 	INET6		# IPV6
85#options 	IPSEC		# IP security
86#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
87#options 	IPSEC_DEBUG	# debug for IP security
88#options	MROUTING	# IP multicast routing
89#options 	NS		# XNS
90#options 	NSIP		# XNS tunneling over IP
91#options 	ISO,TPIP	# OSI
92#options 	EON		# OSI tunneling over IP
93#options 	CCITT,LLC,HDLC	# X.25
94#options 	NETATALK	# AppleTalk networking protocols
95options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
96options 	PPP_DEFLATE	# Deflate compression support for PPP
97options 	PPP_FILTER	# Active filter support for PPP (requires BPF)
98options 	PFIL_HOOKS	# pfil(9) packet filter hooks
99options 	IPFILTER_LOG	# ipmon(8) log support
100options 	NMBCLUSTERS=1024
101#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
102
103# Kernel root file system and dump configuration
104config		netbsd	root on ? type ?
105
106#
107# Device configuration
108#
109
110mainbus*	at root
111
112# Generic OpenFirmware bus support
113ofbus*		at mainbus?
114ofbus*		at ofbus?
115
116# CPU
117cpu*		at ofbus?
118
119# Generic OpenFirmware disk support
120ofdisk*		at ofbus?
121
122# Generic OpenFirmware network interface support
123ofnet*		at ofbus?
124
125# Generic OpenFirmware console support
126ofcons*		at ofbus?
127
128# Generic OpenFirmware real-time clock support
129ofrtc*		at ofbus?
130
131pseudo-device	vnd		4	# disk-like interface to files
132pseudo-device	ccd		4	# concatenated/striped disk devices
133#pesudo-device	raid		4	# RAIDframe disk driver
134#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
135pseudo-device	md		1	# memory disk device
136pseudo-device	loop			# network loopback
137pseudo-device	bpfilter	8	# packet filter
138pseudo-device	ipfilter		# IP Filter (firewall) and NAT
139pseudo-device	ppp		2	# Point-to-Point Protocol
140pseudo-device	sl		2	# Serial Line IP
141pseudo-device	tun		4	# network tunneling over tty
142#pseudo-device	gre		2	# generic L3 over IP tunnel
143pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
144#pseudo-device	faith			# IPv[46] tcp relay translation i/f
145#pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
146pseudo-device	vlan			# IEEE 802.1q encapsulation
147#pseudo-device	bridge			# simple inter-network bridging
148pseudo-device	pty			# pseudo-terminals
149pseudo-device	rnd			# /dev/random and in-kernel generator
150