GENERIC revision 1.1
11.1Sdrochner#	$NetBSD: GENERIC,v 1.1 2001/05/14 18:23:06 drochner 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.1Sdrochner#options 	SYSVMSG		# System V-style message queues
271.1Sdrochneroptions 	KTRACE		# system call tracing support
281.1Sdrochner#options 	NKMEMCLUSTERS=1024	# 4K pages in kernel malloc pool
291.1Sdrochner#options 	LKM		# Loadable kernel modules
301.1Sdrochneroptions COMPAT_SUNOS
311.1Sdrochner
321.1Sdrochner# Filesystems
331.1Sdrochner#file-system 	FFS		# fast filesystem
341.1Sdrochner#file-system 	CD9660		# CD-ROM ISO-9660 filesystem
351.1Sdrochnerfile-system 	NFS		# Network filesystem client
361.1Sdrochner#file-system 	UNION		# Union filesystem (req. for FDESC)
371.1Sdrochner#file-system 	KERNFS		# kernel data-structure filesystem
381.1Sdrochner#file-system 	FDESC		# user file descriptor filesystem
391.1Sdrochner#file-system 	PROCFS		# /proc filesystem
401.1Sdrochner#file-system 	MFS		# Memory-based filesystem
411.1Sdrochner
421.1Sdrochner# Filesystem options
431.1Sdrochneroptions 	FIFO		# POSIX fifo support (in all filesystems)
441.1Sdrochner#options 	QUOTA		# User and group quotas in FFS
451.1Sdrochner#options 	NFSSERVER	# Network filesystem server
461.1Sdrochner
471.1Sdrochner# Networking options
481.1Sdrochneroptions 	INET		# Internet protocols
491.1Sdrochner#options  	GATEWAY		# IP forwarding + larger mb_map
501.1Sdrochner#options  	MROUTING	# Multicast routing
511.1Sdrochner#options  	TCP_COMPAT_42	# compatibility with 4.2BSD TCP/IP
521.1Sdrochner#options 	PFIL_HOOKS	# packet filter hooks
531.1Sdrochner
541.1Sdrochner# This option enables a different copyin/copyout that uses page
551.1Sdrochner# mapping for large copies.
561.1Sdrochner#options 	MAPPEDCOPY	# different copyin/copyout for large copies
571.1Sdrochner
581.1Sdrochneroptions 	COMPAT_M68K4K	# compat. with NetBSD/m68k4k binaries
591.1Sdrochner
601.1Sdrochner# Debugging options
611.1Sdrochneroptions 	DIAGNOSTIC	# Extra kernel sanity checks
621.1Sdrochneroptions 	DEBUG		# Enable misc. kernel debugging code
631.1Sdrochneroptions 	DDB		# Kernel Dynamic Debugger
641.1Sdrochner#options	KGDB
651.1Sdrochnermakeoptions	DEBUG="-g"	# netbsd.gdb with full debugging symbols
661.1Sdrochner
671.1Sdrochneroptions NFS_BOOT_DHCP
681.1Sdrochner
691.1Sdrochnerconfig		netbsd root on ? type ?
701.1Sdrochner
711.1Sdrochnermainbus0	at root		# root "bus"
721.1Sdrochner
731.1Sdrochnerzsc*		at mainbus0
741.1Sdrochnerzstty*		at zsc? channel ?
751.1Sdrochner
761.1Sdrochnerle*		at mainbus0		# LANCE ethernet interfaces
771.1Sdrochner
781.1Sdrochnerpseudo-device	pty		64	# pseudo ptys
791.1Sdrochner#pseudo-device	sl		4	# SLIP network interfaces
801.1Sdrochner#pseudo-device	ppp		4	# PPP network interfaces
811.1Sdrochner#pseudo-device	bpfilter	16	# Berkeley packet filter
821.1Sdrochner#pseudo-device	vnd		4	# vnode pseudo-disks
831.1Sdrochner#pseudo-device	ccd		4	# concatenated disk devices
841.1Sdrochnerpseudo-device	loop			# loopback network interface
851.1Sdrochner#pseudo-device	ipfilter 		# IP Filter package
861.1Sdrochnerpseudo-device	rnd
87