Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.1
      1  1.1  simonb # $NetBSD: GENERIC,v 1.1 2002/03/06 02:13:38 simonb Exp $
      2  1.1  simonb 
      3  1.1  simonb include 	"arch/sbmips/conf/std.sbmips"
      4  1.1  simonb 
      5  1.1  simonb #ident 		"GENERIC-$Revision: 1.1 $"
      6  1.1  simonb 
      7  1.1  simonb # The following three options are required for BCM1250 pass 1 silicon
      8  1.1  simonb options 	SB1250_PASS1
      9  1.1  simonb options 	NOFPU
     10  1.1  simonb options 	SOFTFLOAT
     11  1.1  simonb 
     12  1.1  simonb maxusers	32
     13  1.1  simonb 
     14  1.1  simonb # Standard system options
     15  1.1  simonb options 	KTRACE		# system call tracing support
     16  1.1  simonb options 	SYSVMSG		# System V message queues
     17  1.1  simonb options 	SYSVSEM		# System V semaphores
     18  1.1  simonb options 	SYSVSHM		# System V shared memory
     19  1.1  simonb #options 	SHMMAXPGS=1024	# 1024 pages is the default
     20  1.1  simonb options 	LKM		# loadable kernel modules
     21  1.1  simonb #options 	NTP		# network time protocol
     22  1.1  simonb #options 	UCONSOLE	# users can redirect console (unsafe)
     23  1.1  simonb 
     24  1.1  simonb # Debugging options
     25  1.1  simonb options 	DIAGNOSTIC	# extra kernel sanity checking
     26  1.1  simonb #options 	DEBUG		# extra kernel debugging support
     27  1.1  simonb #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     28  1.1  simonb options 	DDB		# kernel dynamic debugger
     29  1.1  simonb options 	DDB_HISTORY_SIZE=100 # enable history editing in DDB
     30  1.1  simonb #makeoptions 	DEBUG="-g"	# compile full symbol table
     31  1.1  simonb options 	SYMTAB_SPACE=200000	# size for embedded symbol table
     32  1.1  simonb 
     33  1.1  simonb # Compatibility options
     34  1.1  simonb options 	COMPAT_43	# compatibility with 4.3BSD binaries
     35  1.1  simonb #options 	COMPAT_10	# NetBSD 0.9 binary compatibility
     36  1.1  simonb #options 	COMPAT_10	# NetBSD 1.0 binary compatibility
     37  1.1  simonb #options 	COMPAT_11	# NetBSD 1.1 binary compatibility
     38  1.1  simonb #options 	COMPAT_12	# NetBSD 1.2 binary compatibility
     39  1.1  simonb #options 	COMPAT_13	# NetBSD 1.3 binary compatibility
     40  1.1  simonb #options 	COMPAT_14	# NetBSD 1.4 binary compatibility
     41  1.1  simonb #options 	EXEC_ECOFF	# exec ECOFF binaries
     42  1.1  simonb #options 	COMPAT_ULTRIX	# binary compatibility with Ultrix
     43  1.1  simonb 
     44  1.1  simonb # File systems
     45  1.1  simonb file-system	FFS		# Berkeley Fast Filesystem
     46  1.1  simonb file-system	NFS		# Sun NFS-compatible filesystem client
     47  1.1  simonb file-system	KERNFS		# kernel data-structure filesystem
     48  1.1  simonb #file-system	NULLFS		# NULL layered filesystem
     49  1.1  simonb file-system 	OVERLAY		# overlay file system
     50  1.1  simonb file-system	MFS		# memory-based filesystem
     51  1.1  simonb file-system	FDESC		# user file descriptor filesystem
     52  1.1  simonb #file-system	UMAPFS		# uid/gid remapping filesystem
     53  1.1  simonb file-system	LFS		# Log-based filesystem (still experimental)
     54  1.1  simonb #file-system	PORTAL		# portal filesystem (still experimental)
     55  1.1  simonb #file-system	PROCFS		# /proc
     56  1.1  simonb #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     57  1.1  simonb #file-system	UNION		# union file system
     58  1.1  simonb #file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
     59  1.1  simonb #file-system 	CODA		# Coda File System; also needs vcoda (below)
     60  1.1  simonb 
     61  1.1  simonb # File system options
     62  1.1  simonb options 	NFSSERVER	# Sun NFS-compatible filesystem server
     63  1.1  simonb options 	QUOTA		# FFS quotas
     64  1.1  simonb #options 	FFS_EI		# FFS Endian Independant support
     65  1.1  simonb #options 	SOFTDEP		# FFS soft updates support.
     66  1.1  simonb #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     67  1.1  simonb 				# immutable) behave as system flags.
     68  1.1  simonb 
     69  1.1  simonb # Networking options
     70  1.1  simonb #options 	GATEWAY		# IP packet forwarding
     71  1.1  simonb options 	INET		# Internet protocols
     72  1.1  simonb options 	INET6		# IPV6
     73  1.1  simonb #options 	IPSEC		# IP security
     74  1.1  simonb #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     75  1.1  simonb #options 	IPSEC_DEBUG	# debug for IP security
     76  1.1  simonb #options 	MROUTING	# packet forwarding of multicast packets
     77  1.1  simonb #options 	NS		# Xerox NS networking
     78  1.1  simonb #options 	NSIP		# Xerox NS tunneling over IP
     79  1.1  simonb #options 	ISO,TPIP	# OSI networking
     80  1.1  simonb #options 	EON		# OSI tunneling over IP
     81  1.1  simonb #options 	CCITT,LLC,HDLC	# X.25
     82  1.1  simonb #options 	NETATALK	# AppleTalk (over Ethernet) protocol
     83  1.1  simonb #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     84  1.1  simonb #options 	PPP_DEFLATE	# Deflate compression support for PPP
     85  1.1  simonb options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     86  1.1  simonb options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     87  1.1  simonb options 	IPFILTER_LOG	# ipmon(8) log support
     88  1.1  simonb 
     89  1.1  simonb # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
     90  1.1  simonb #options 	TCP_COMPAT_42
     91  1.1  simonb 
     92  1.1  simonb # These options enable verbose messages for several subsystems.
     93  1.1  simonb # Warning, these may compile large string tables into the kernel!
     94  1.1  simonb options 	PCIVERBOSE	# verbose PCI device autoconfig messages
     95  1.1  simonb #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
     96  1.1  simonb #options 	SCSIVERBOSE	# human readable SCSI error messages
     97  1.1  simonb options 	MIIVERBOSE	# verbose PHY autoconfig messages
     98  1.1  simonb 
     99  1.1  simonb options 	NFS_BOOT_DHCP
    100  1.1  simonb 
    101  1.1  simonb #config		netbsd	root on ? type ?
    102  1.1  simonb config		netbsd	root on sbmac0 type nfs
    103  1.1  simonb 
    104  1.1  simonb zbbus*		at root
    105  1.1  simonb 
    106  1.1  simonb cpu0		at zbbus? busid 0
    107  1.1  simonb #cpu*		at zbbus? busid ?
    108  1.1  simonb sbscd*		at zbbus? busid ?
    109  1.1  simonb sbobio*		at zbbus? busid ?
    110  1.1  simonb 
    111  1.1  simonb #sbicu*		at sbscd? offset ?
    112  1.1  simonb #sbwdog*	at sbscd? offset ? intr ?
    113  1.1  simonb sbtimer0	at sbscd? offset ? intr ? flags 0x01		# clock
    114  1.1  simonb #sbtimer1	at sbscd? offset ? intr ? flags 0x02		# statclock
    115  1.1  simonb sbtimer*	at sbscd? offset ? intr ?
    116  1.1  simonb 
    117  1.1  simonb sbmac*		at sbobio? offset ?
    118  1.1  simonb sbscn*		at sbobio? offset ?
    119  1.1  simonb #sbgbus*	at sbobio? offset ?
    120  1.1  simonb 
    121  1.1  simonb # MII/PHY support
    122  1.1  simonb brgphy*	at mii? phy ?
    123  1.1  simonb 
    124  1.1  simonb # Pseudo-devices
    125  1.1  simonb 
    126  1.1  simonb # Disk/mass storage pseudo-devices
    127  1.1  simonb pseudo-device	ccd		4	# concatenated disk devices
    128  1.1  simonb #pseudo-device	raid		4	# RAIDframe disk driver
    129  1.1  simonb #options 	RAID_AUTOCONFIG		# auto-configuration of RAID
    130  1.1  simonb pseudo-device	md		1	# memory disk device (ramdisk)
    131  1.1  simonb pseudo-device	vnd		4	# disk-like interface to files
    132  1.1  simonb 
    133  1.1  simonb # Network pseudo-devices
    134  1.1  simonb pseudo-device	bpfilter	8	# Berkeley packet filter
    135  1.1  simonb pseudo-device	ipfilter		# IP filter (firewall) and NAT
    136  1.1  simonb pseudo-device	loop			# network loopback
    137  1.1  simonb #pseudo-device	ppp		2	# Point-to-Point Protocol
    138  1.1  simonb #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    139  1.1  simonb #pseudo-device	sl		2	# Serial Line IP
    140  1.1  simonb #pseudo-device	strip		2	# Starmode Radio IP (Metricom)
    141  1.1  simonb #pseudo-device	irframetty		# IrDA frame line discipline
    142  1.1  simonb #pseudo-device	tun		2	# network tunneling over tty
    143  1.1  simonb #pseudo-device	gre		2	# generic L3 over IP tunnel
    144  1.1  simonb #pseudo-device	ipip		2	# RFC 2003 IP Encapsulation
    145  1.1  simonb #pseudo-device	gif		4	# RFC1933 tunnel
    146  1.1  simonb #pseudo-device	faith		1	# IPv[46] tcp relay translation
    147  1.1  simonb #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    148  1.1  simonb pseudo-device	vlan			# IEEE 802.1q encapsulation
    149  1.1  simonb pseudo-device	bridge			# simple inter-network bridging
    150  1.1  simonb 
    151  1.1  simonb # Miscellaneous pseudo-devices
    152  1.1  simonb pseudo-device	pty			# pseudo-terminals
    153  1.1  simonb #pseudo-device	tb		1	# tablet line discipline
    154  1.1  simonb #pseudo-device	sequencer	1	# MIDI sequencer
    155  1.1  simonb pseudo-device	rnd			# /dev/random & kernel generator
    156  1.1  simonb 
    157  1.1  simonb # A pseudo device needed for Coda	# also needs CODA (above)
    158  1.1  simonb #pseudo-device	vcoda		4	# coda minicache <-> venus comm.
    159