Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.2
      1  1.2     darcy #	$NetBSD: GENERIC,v 1.2 2001/06/30 11:00:32 darcy Exp $
      2  1.1  drochner #
      3  1.1  drochner # Generic kernel - one size fits all.
      4  1.1  drochner #
      5  1.1  drochner 
      6  1.1  drochner # Include attributes common to all cesfics
      7  1.1  drochner include "arch/cesfic/conf/std.cesfic"
      8  1.1  drochner 
      9  1.1  drochner # Need to set locally
     10  1.1  drochner maxusers	32
     11  1.1  drochner 
     12  1.1  drochner #options LEDEBUG
     13  1.1  drochner 
     14  1.1  drochner options FPSP
     15  1.1  drochner # Standard system options
     16  1.1  drochner options 	COMPAT_43	# compatibility with 4.3BSD interfaces
     17  1.1  drochner options 	COMPAT_44	# compatibility with 4.4BSD binaries
     18  1.1  drochner options 	COMPAT_09	# compatibility with NetBSD 0.9
     19  1.1  drochner options 	COMPAT_10	# compatibility with NetBSD 1.0
     20  1.1  drochner options 	COMPAT_11	# compatibility with NetBSD 1.1
     21  1.1  drochner options 	COMPAT_12	# compatibility with NetBSD 1.2
     22  1.1  drochner options 	COMPAT_13	# compatibility with NetBSD 1.3
     23  1.1  drochner options 	COMPAT_14	# compatibility with NetBSD 1.3
     24  1.1  drochner #options 	SYSVSHM		# System V-style shared memory
     25  1.1  drochner #options 	SYSVSEM		# System V-style semaphores
     26  1.2     darcy #options	SEMMNI=10	# number of semaphore identifiers
     27  1.2     darcy #options	SEMMNS=60	# number of semaphores in system
     28  1.2     darcy #options	SEMUME=10	# max number of undo entries per process
     29  1.2     darcy #options	SEMMNU=30	# number of undo structures in system
     30  1.1  drochner #options 	SYSVMSG		# System V-style message queues
     31  1.1  drochner options 	KTRACE		# system call tracing support
     32  1.1  drochner #options 	NKMEMCLUSTERS=1024	# 4K pages in kernel malloc pool
     33  1.1  drochner #options 	LKM		# Loadable kernel modules
     34  1.1  drochner options COMPAT_SUNOS
     35  1.1  drochner 
     36  1.1  drochner # Filesystems
     37  1.1  drochner #file-system 	FFS		# fast filesystem
     38  1.1  drochner #file-system 	CD9660		# CD-ROM ISO-9660 filesystem
     39  1.1  drochner file-system 	NFS		# Network filesystem client
     40  1.1  drochner #file-system 	UNION		# Union filesystem (req. for FDESC)
     41  1.1  drochner #file-system 	KERNFS		# kernel data-structure filesystem
     42  1.1  drochner #file-system 	FDESC		# user file descriptor filesystem
     43  1.1  drochner #file-system 	PROCFS		# /proc filesystem
     44  1.1  drochner #file-system 	MFS		# Memory-based filesystem
     45  1.1  drochner 
     46  1.1  drochner # Filesystem options
     47  1.1  drochner options 	FIFO		# POSIX fifo support (in all filesystems)
     48  1.1  drochner #options 	QUOTA		# User and group quotas in FFS
     49  1.1  drochner #options 	NFSSERVER	# Network filesystem server
     50  1.1  drochner 
     51  1.1  drochner # Networking options
     52  1.1  drochner options 	INET		# Internet protocols
     53  1.1  drochner #options  	GATEWAY		# IP forwarding + larger mb_map
     54  1.1  drochner #options  	MROUTING	# Multicast routing
     55  1.1  drochner #options  	TCP_COMPAT_42	# compatibility with 4.2BSD TCP/IP
     56  1.1  drochner #options 	PFIL_HOOKS	# packet filter hooks
     57  1.1  drochner 
     58  1.1  drochner # This option enables a different copyin/copyout that uses page
     59  1.1  drochner # mapping for large copies.
     60  1.1  drochner #options 	MAPPEDCOPY	# different copyin/copyout for large copies
     61  1.1  drochner 
     62  1.1  drochner options 	COMPAT_M68K4K	# compat. with NetBSD/m68k4k binaries
     63  1.1  drochner 
     64  1.1  drochner # Debugging options
     65  1.1  drochner options 	DIAGNOSTIC	# Extra kernel sanity checks
     66  1.1  drochner options 	DEBUG		# Enable misc. kernel debugging code
     67  1.1  drochner options 	DDB		# Kernel Dynamic Debugger
     68  1.1  drochner #options	KGDB
     69  1.1  drochner makeoptions	DEBUG="-g"	# netbsd.gdb with full debugging symbols
     70  1.1  drochner 
     71  1.1  drochner options NFS_BOOT_DHCP
     72  1.1  drochner 
     73  1.1  drochner config		netbsd root on ? type ?
     74  1.1  drochner 
     75  1.1  drochner mainbus0	at root		# root "bus"
     76  1.1  drochner 
     77  1.1  drochner zsc*		at mainbus0
     78  1.1  drochner zstty*		at zsc? channel ?
     79  1.1  drochner 
     80  1.1  drochner le*		at mainbus0		# LANCE ethernet interfaces
     81  1.1  drochner 
     82  1.1  drochner pseudo-device	pty		64	# pseudo ptys
     83  1.1  drochner #pseudo-device	sl		4	# SLIP network interfaces
     84  1.1  drochner #pseudo-device	ppp		4	# PPP network interfaces
     85  1.1  drochner #pseudo-device	bpfilter	16	# Berkeley packet filter
     86  1.1  drochner #pseudo-device	vnd		4	# vnode pseudo-disks
     87  1.1  drochner #pseudo-device	ccd		4	# concatenated disk devices
     88  1.1  drochner pseudo-device	loop			# loopback network interface
     89  1.1  drochner #pseudo-device	ipfilter 		# IP Filter package
     90  1.1  drochner pseudo-device	rnd
     91