GENERIC revision 1.3
11.3Ssimonb# $NetBSD: GENERIC,v 1.3 2002/03/18 11:11:30 simonb Exp $
21.1Ssimonb
31.3Ssimonbinclude 	"arch/sbmips/conf/std.sbmips.eb"	# big-endian mode
41.3Ssimonb#include 	"arch/sbmips/conf/std.sbmips.el"	# little-endian mode
51.1Ssimonb
61.3Ssimonb#ident 		"GENERIC-$Revision: 1.3 $"
71.1Ssimonb
81.1Ssimonb# The following three options are required for BCM1250 pass 1 silicon
91.1Ssimonboptions 	SB1250_PASS1
101.1Ssimonboptions 	NOFPU
111.1Ssimonboptions 	SOFTFLOAT
121.1Ssimonb
131.1Ssimonbmaxusers	32
141.1Ssimonb
151.1Ssimonb# Standard system options
161.1Ssimonboptions 	KTRACE		# system call tracing support
171.1Ssimonboptions 	SYSVMSG		# System V message queues
181.1Ssimonboptions 	SYSVSEM		# System V semaphores
191.1Ssimonboptions 	SYSVSHM		# System V shared memory
201.1Ssimonb#options 	SHMMAXPGS=1024	# 1024 pages is the default
211.1Ssimonboptions 	LKM		# loadable kernel modules
221.1Ssimonb#options 	NTP		# network time protocol
231.1Ssimonb#options 	UCONSOLE	# users can redirect console (unsafe)
241.1Ssimonb
251.1Ssimonb# Debugging options
261.1Ssimonboptions 	DIAGNOSTIC	# extra kernel sanity checking
271.1Ssimonb#options 	DEBUG		# extra kernel debugging support
281.1Ssimonb#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
291.1Ssimonboptions 	DDB		# kernel dynamic debugger
301.1Ssimonboptions 	DDB_HISTORY_SIZE=100 # enable history editing in DDB
311.1Ssimonb#makeoptions 	DEBUG="-g"	# compile full symbol table
321.1Ssimonboptions 	SYMTAB_SPACE=200000	# size for embedded symbol table
331.1Ssimonb
341.1Ssimonb# Compatibility options
351.1Ssimonboptions 	COMPAT_43	# compatibility with 4.3BSD binaries
361.1Ssimonb#options 	COMPAT_10	# NetBSD 0.9 binary compatibility
371.1Ssimonb#options 	COMPAT_10	# NetBSD 1.0 binary compatibility
381.1Ssimonb#options 	COMPAT_11	# NetBSD 1.1 binary compatibility
391.1Ssimonb#options 	COMPAT_12	# NetBSD 1.2 binary compatibility
401.1Ssimonb#options 	COMPAT_13	# NetBSD 1.3 binary compatibility
411.1Ssimonb#options 	COMPAT_14	# NetBSD 1.4 binary compatibility
421.1Ssimonb#options 	EXEC_ECOFF	# exec ECOFF binaries
431.1Ssimonb#options 	COMPAT_ULTRIX	# binary compatibility with Ultrix
441.1Ssimonb
451.1Ssimonb# File systems
461.1Ssimonbfile-system	FFS		# Berkeley Fast Filesystem
471.1Ssimonbfile-system	NFS		# Sun NFS-compatible filesystem client
481.1Ssimonbfile-system	KERNFS		# kernel data-structure filesystem
491.1Ssimonb#file-system	NULLFS		# NULL layered filesystem
501.1Ssimonbfile-system 	OVERLAY		# overlay file system
511.1Ssimonbfile-system	MFS		# memory-based filesystem
521.1Ssimonbfile-system	FDESC		# user file descriptor filesystem
531.1Ssimonb#file-system	UMAPFS		# uid/gid remapping filesystem
541.1Ssimonbfile-system	LFS		# Log-based filesystem (still experimental)
551.1Ssimonb#file-system	PORTAL		# portal filesystem (still experimental)
561.1Ssimonb#file-system	PROCFS		# /proc
571.1Ssimonb#file-system	CD9660		# ISO 9660 + Rock Ridge file system
581.1Ssimonb#file-system	UNION		# union file system
591.1Ssimonb#file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
601.1Ssimonb#file-system 	CODA		# Coda File System; also needs vcoda (below)
611.1Ssimonb
621.1Ssimonb# File system options
631.1Ssimonboptions 	NFSSERVER	# Sun NFS-compatible filesystem server
641.1Ssimonboptions 	QUOTA		# FFS quotas
651.1Ssimonb#options 	FFS_EI		# FFS Endian Independant support
661.1Ssimonb#options 	SOFTDEP		# FFS soft updates support.
671.1Ssimonb#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
681.1Ssimonb				# immutable) behave as system flags.
691.1Ssimonb
701.1Ssimonb# Networking options
711.1Ssimonb#options 	GATEWAY		# IP packet forwarding
721.1Ssimonboptions 	INET		# Internet protocols
731.1Ssimonboptions 	INET6		# IPV6
741.1Ssimonb#options 	IPSEC		# IP security
751.1Ssimonb#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
761.1Ssimonb#options 	IPSEC_DEBUG	# debug for IP security
771.1Ssimonb#options 	MROUTING	# packet forwarding of multicast packets
781.1Ssimonb#options 	NS		# Xerox NS networking
791.1Ssimonb#options 	NSIP		# Xerox NS tunneling over IP
801.1Ssimonb#options 	ISO,TPIP	# OSI networking
811.1Ssimonb#options 	EON		# OSI tunneling over IP
821.1Ssimonb#options 	CCITT,LLC,HDLC	# X.25
831.1Ssimonb#options 	NETATALK	# AppleTalk (over Ethernet) protocol
841.1Ssimonb#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
851.1Ssimonb#options 	PPP_DEFLATE	# Deflate compression support for PPP
861.1Ssimonboptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
871.1Ssimonboptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
881.1Ssimonboptions 	IPFILTER_LOG	# ipmon(8) log support
891.1Ssimonb
901.1Ssimonb# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
911.1Ssimonb#options 	TCP_COMPAT_42
921.1Ssimonb
931.1Ssimonb# These options enable verbose messages for several subsystems.
941.1Ssimonb# Warning, these may compile large string tables into the kernel!
951.1Ssimonboptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
961.1Ssimonb#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
971.1Ssimonb#options 	SCSIVERBOSE	# human readable SCSI error messages
981.1Ssimonboptions 	MIIVERBOSE	# verbose PHY autoconfig messages
991.1Ssimonb
1001.1Ssimonboptions 	NFS_BOOT_DHCP
1011.1Ssimonb
1021.1Ssimonb#config		netbsd	root on ? type ?
1031.1Ssimonbconfig		netbsd	root on sbmac0 type nfs
1041.1Ssimonb
1051.1Ssimonbzbbus*		at root
1061.1Ssimonb
1071.1Ssimonbcpu0		at zbbus? busid 0
1081.1Ssimonb#cpu*		at zbbus? busid ?
1091.1Ssimonbsbscd*		at zbbus? busid ?
1101.1Ssimonbsbobio*		at zbbus? busid ?
1111.1Ssimonb
1121.1Ssimonb#sbicu*		at sbscd? offset ?
1131.1Ssimonb#sbwdog*	at sbscd? offset ? intr ?
1141.1Ssimonbsbtimer0	at sbscd? offset ? intr ? flags 0x01		# clock
1151.1Ssimonb#sbtimer1	at sbscd? offset ? intr ? flags 0x02		# statclock
1161.1Ssimonbsbtimer*	at sbscd? offset ? intr ?
1171.1Ssimonb
1181.1Ssimonbsbmac*		at sbobio? offset ?
1191.1Ssimonbsbscn*		at sbobio? offset ?
1201.1Ssimonb#sbgbus*	at sbobio? offset ?
1211.1Ssimonb
1221.1Ssimonb# MII/PHY support
1231.1Ssimonbbrgphy*	at mii? phy ?
1241.1Ssimonb
1251.1Ssimonb# Pseudo-devices
1261.1Ssimonb
1271.1Ssimonb# Disk/mass storage pseudo-devices
1281.1Ssimonbpseudo-device	ccd		4	# concatenated disk devices
1291.1Ssimonb#pseudo-device	raid		4	# RAIDframe disk driver
1301.1Ssimonb#options 	RAID_AUTOCONFIG		# auto-configuration of RAID
1311.1Ssimonbpseudo-device	md		1	# memory disk device (ramdisk)
1321.1Ssimonbpseudo-device	vnd		4	# disk-like interface to files
1331.1Ssimonb
1341.1Ssimonb# Network pseudo-devices
1351.1Ssimonbpseudo-device	bpfilter	8	# Berkeley packet filter
1361.1Ssimonbpseudo-device	ipfilter		# IP filter (firewall) and NAT
1371.1Ssimonbpseudo-device	loop			# network loopback
1381.1Ssimonb#pseudo-device	ppp		2	# Point-to-Point Protocol
1391.1Ssimonb#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
1401.1Ssimonb#pseudo-device	sl		2	# Serial Line IP
1411.1Ssimonb#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
1421.1Ssimonb#pseudo-device	irframetty		# IrDA frame line discipline
1431.1Ssimonb#pseudo-device	tun		2	# network tunneling over tty
1441.1Ssimonb#pseudo-device	gre		2	# generic L3 over IP tunnel
1451.1Ssimonb#pseudo-device	ipip		2	# RFC 2003 IP Encapsulation
1461.1Ssimonb#pseudo-device	gif		4	# RFC1933 tunnel
1471.1Ssimonb#pseudo-device	faith		1	# IPv[46] tcp relay translation
1481.1Ssimonb#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
1491.1Ssimonbpseudo-device	vlan			# IEEE 802.1q encapsulation
1501.1Ssimonbpseudo-device	bridge			# simple inter-network bridging
1511.1Ssimonb
1521.1Ssimonb# Miscellaneous pseudo-devices
1531.1Ssimonbpseudo-device	pty			# pseudo-terminals
1541.1Ssimonb#pseudo-device	tb		1	# tablet line discipline
1551.1Ssimonb#pseudo-device	sequencer	1	# MIDI sequencer
1561.1Ssimonbpseudo-device	rnd			# /dev/random & kernel generator
1571.1Ssimonb
1581.1Ssimonb# A pseudo device needed for Coda	# also needs CODA (above)
1591.1Ssimonb#pseudo-device	vcoda		4	# coda minicache <-> venus comm.
160