GENERIC revision 1.6
11.6Slukem#	$NetBSD: GENERIC,v 1.6 2001/11/20 12:56:23 lukem Exp $
21.1Sdrochner#
31.1Sdrochner# Generic kernel - one size fits all.
41.1Sdrochner#
51.1Sdrochner
61.1Sdrochner# Include attributes common to all cesfics
71.1Sdrochnerinclude "arch/cesfic/conf/std.cesfic"
81.1Sdrochner
91.1Sdrochner# Need to set locally
101.1Sdrochnermaxusers	32
111.1Sdrochner
121.6Slukem#options 	LEDEBUG
131.1Sdrochner
141.6Slukemoptions 	FPSP
151.1Sdrochner# Standard system options
161.3Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
171.1Sdrochneroptions 	COMPAT_43	# compatibility with 4.3BSD interfaces
181.1Sdrochneroptions 	COMPAT_44	# compatibility with 4.4BSD binaries
191.1Sdrochneroptions 	COMPAT_09	# compatibility with NetBSD 0.9
201.1Sdrochneroptions 	COMPAT_10	# compatibility with NetBSD 1.0
211.1Sdrochneroptions 	COMPAT_11	# compatibility with NetBSD 1.1
221.1Sdrochneroptions 	COMPAT_12	# compatibility with NetBSD 1.2
231.1Sdrochneroptions 	COMPAT_13	# compatibility with NetBSD 1.3
241.1Sdrochneroptions 	COMPAT_14	# compatibility with NetBSD 1.3
251.1Sdrochner#options 	SYSVSHM		# System V-style shared memory
261.1Sdrochner#options 	SYSVSEM		# System V-style semaphores
271.6Slukem#options 	SEMMNI=10	# number of semaphore identifiers
281.6Slukem#options 	SEMMNS=60	# number of semaphores in system
291.6Slukem#options 	SEMUME=10	# max number of undo entries per process
301.6Slukem#options 	SEMMNU=30	# number of undo structures in system
311.1Sdrochner#options 	SYSVMSG		# System V-style message queues
321.1Sdrochneroptions 	KTRACE		# system call tracing support
331.1Sdrochner#options 	NKMEMCLUSTERS=1024	# 4K pages in kernel malloc pool
341.1Sdrochner#options 	LKM		# Loadable kernel modules
351.6Slukemoptions 	COMPAT_SUNOS
361.1Sdrochner
371.1Sdrochner# Filesystems
381.1Sdrochner#file-system 	FFS		# fast filesystem
391.1Sdrochner#file-system 	CD9660		# CD-ROM ISO-9660 filesystem
401.1Sdrochnerfile-system 	NFS		# Network filesystem client
411.1Sdrochner#file-system 	UNION		# Union filesystem (req. for FDESC)
421.1Sdrochner#file-system 	KERNFS		# kernel data-structure filesystem
431.1Sdrochner#file-system 	FDESC		# user file descriptor filesystem
441.1Sdrochner#file-system 	PROCFS		# /proc filesystem
451.1Sdrochner#file-system 	MFS		# Memory-based filesystem
461.1Sdrochner
471.1Sdrochner# Filesystem options
481.1Sdrochneroptions 	FIFO		# POSIX fifo support (in all filesystems)
491.1Sdrochner#options 	QUOTA		# User and group quotas in FFS
501.1Sdrochner#options 	NFSSERVER	# Network filesystem server
511.1Sdrochner
521.1Sdrochner# Networking options
531.1Sdrochneroptions 	INET		# Internet protocols
541.6Slukem#options 	GATEWAY		# IP forwarding + larger mb_map
551.6Slukem#options 	MROUTING	# Multicast routing
561.1Sdrochner#options 	PFIL_HOOKS	# packet filter hooks
571.3Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
581.1Sdrochner
591.1Sdrochner# This option enables a different copyin/copyout that uses page
601.1Sdrochner# mapping for large copies.
611.1Sdrochner#options 	MAPPEDCOPY	# different copyin/copyout for large copies
621.1Sdrochner
631.1Sdrochneroptions 	COMPAT_M68K4K	# compat. with NetBSD/m68k4k binaries
641.4Schsoptions 	COMPAT_AOUT_M68K # support for NetBSD a.out executables
651.1Sdrochner
661.1Sdrochner# Debugging options
671.1Sdrochneroptions 	DIAGNOSTIC	# Extra kernel sanity checks
681.1Sdrochneroptions 	DEBUG		# Enable misc. kernel debugging code
691.1Sdrochneroptions 	DDB		# Kernel Dynamic Debugger
701.6Slukem#options 	KGDB
711.1Sdrochnermakeoptions	DEBUG="-g"	# netbsd.gdb with full debugging symbols
721.1Sdrochner
731.6Slukemoptions 	NFS_BOOT_DHCP
741.1Sdrochner
751.1Sdrochnerconfig		netbsd root on ? type ?
761.1Sdrochner
771.1Sdrochnermainbus0	at root		# root "bus"
781.1Sdrochner
791.1Sdrochnerzsc*		at mainbus0
801.1Sdrochnerzstty*		at zsc? channel ?
811.1Sdrochner
821.1Sdrochnerle*		at mainbus0		# LANCE ethernet interfaces
831.1Sdrochner
841.1Sdrochnerpseudo-device	pty		64	# pseudo ptys
851.1Sdrochner#pseudo-device	sl		4	# SLIP network interfaces
861.1Sdrochner#pseudo-device	ppp		4	# PPP network interfaces
871.1Sdrochner#pseudo-device	bpfilter	16	# Berkeley packet filter
881.5Satatat#pseudo-device	bridge			# simple inter-network bridging
891.1Sdrochner#pseudo-device	vnd		4	# vnode pseudo-disks
901.1Sdrochner#pseudo-device	ccd		4	# concatenated disk devices
911.1Sdrochnerpseudo-device	loop			# loopback network interface
921.1Sdrochner#pseudo-device	ipfilter 		# IP Filter package
931.1Sdrochnerpseudo-device	rnd
94