GENERIC revision 1.2
11.2Sdarcy#	$NetBSD: GENERIC,v 1.2 2001/06/30 11:00:32 darcy 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.1Sdrochner#options LEDEBUG
131.1Sdrochner
141.1Sdrochneroptions FPSP
151.1Sdrochner# Standard system options
161.1Sdrochneroptions 	COMPAT_43	# compatibility with 4.3BSD interfaces
171.1Sdrochneroptions 	COMPAT_44	# compatibility with 4.4BSD binaries
181.1Sdrochneroptions 	COMPAT_09	# compatibility with NetBSD 0.9
191.1Sdrochneroptions 	COMPAT_10	# compatibility with NetBSD 1.0
201.1Sdrochneroptions 	COMPAT_11	# compatibility with NetBSD 1.1
211.1Sdrochneroptions 	COMPAT_12	# compatibility with NetBSD 1.2
221.1Sdrochneroptions 	COMPAT_13	# compatibility with NetBSD 1.3
231.1Sdrochneroptions 	COMPAT_14	# compatibility with NetBSD 1.3
241.1Sdrochner#options 	SYSVSHM		# System V-style shared memory
251.1Sdrochner#options 	SYSVSEM		# System V-style semaphores
261.2Sdarcy#options	SEMMNI=10	# number of semaphore identifiers
271.2Sdarcy#options	SEMMNS=60	# number of semaphores in system
281.2Sdarcy#options	SEMUME=10	# max number of undo entries per process
291.2Sdarcy#options	SEMMNU=30	# number of undo structures in system
301.1Sdrochner#options 	SYSVMSG		# System V-style message queues
311.1Sdrochneroptions 	KTRACE		# system call tracing support
321.1Sdrochner#options 	NKMEMCLUSTERS=1024	# 4K pages in kernel malloc pool
331.1Sdrochner#options 	LKM		# Loadable kernel modules
341.1Sdrochneroptions COMPAT_SUNOS
351.1Sdrochner
361.1Sdrochner# Filesystems
371.1Sdrochner#file-system 	FFS		# fast filesystem
381.1Sdrochner#file-system 	CD9660		# CD-ROM ISO-9660 filesystem
391.1Sdrochnerfile-system 	NFS		# Network filesystem client
401.1Sdrochner#file-system 	UNION		# Union filesystem (req. for FDESC)
411.1Sdrochner#file-system 	KERNFS		# kernel data-structure filesystem
421.1Sdrochner#file-system 	FDESC		# user file descriptor filesystem
431.1Sdrochner#file-system 	PROCFS		# /proc filesystem
441.1Sdrochner#file-system 	MFS		# Memory-based filesystem
451.1Sdrochner
461.1Sdrochner# Filesystem options
471.1Sdrochneroptions 	FIFO		# POSIX fifo support (in all filesystems)
481.1Sdrochner#options 	QUOTA		# User and group quotas in FFS
491.1Sdrochner#options 	NFSSERVER	# Network filesystem server
501.1Sdrochner
511.1Sdrochner# Networking options
521.1Sdrochneroptions 	INET		# Internet protocols
531.1Sdrochner#options  	GATEWAY		# IP forwarding + larger mb_map
541.1Sdrochner#options  	MROUTING	# Multicast routing
551.1Sdrochner#options  	TCP_COMPAT_42	# compatibility with 4.2BSD TCP/IP
561.1Sdrochner#options 	PFIL_HOOKS	# packet filter hooks
571.1Sdrochner
581.1Sdrochner# This option enables a different copyin/copyout that uses page
591.1Sdrochner# mapping for large copies.
601.1Sdrochner#options 	MAPPEDCOPY	# different copyin/copyout for large copies
611.1Sdrochner
621.1Sdrochneroptions 	COMPAT_M68K4K	# compat. with NetBSD/m68k4k binaries
631.1Sdrochner
641.1Sdrochner# Debugging options
651.1Sdrochneroptions 	DIAGNOSTIC	# Extra kernel sanity checks
661.1Sdrochneroptions 	DEBUG		# Enable misc. kernel debugging code
671.1Sdrochneroptions 	DDB		# Kernel Dynamic Debugger
681.1Sdrochner#options	KGDB
691.1Sdrochnermakeoptions	DEBUG="-g"	# netbsd.gdb with full debugging symbols
701.1Sdrochner
711.1Sdrochneroptions NFS_BOOT_DHCP
721.1Sdrochner
731.1Sdrochnerconfig		netbsd root on ? type ?
741.1Sdrochner
751.1Sdrochnermainbus0	at root		# root "bus"
761.1Sdrochner
771.1Sdrochnerzsc*		at mainbus0
781.1Sdrochnerzstty*		at zsc? channel ?
791.1Sdrochner
801.1Sdrochnerle*		at mainbus0		# LANCE ethernet interfaces
811.1Sdrochner
821.1Sdrochnerpseudo-device	pty		64	# pseudo ptys
831.1Sdrochner#pseudo-device	sl		4	# SLIP network interfaces
841.1Sdrochner#pseudo-device	ppp		4	# PPP network interfaces
851.1Sdrochner#pseudo-device	bpfilter	16	# Berkeley packet filter
861.1Sdrochner#pseudo-device	vnd		4	# vnode pseudo-disks
871.1Sdrochner#pseudo-device	ccd		4	# concatenated disk devices
881.1Sdrochnerpseudo-device	loop			# loopback network interface
891.1Sdrochner#pseudo-device	ipfilter 		# IP Filter package
901.1Sdrochnerpseudo-device	rnd
91