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