GENERIC revision 1.75
11.75Sroy# $NetBSD: GENERIC,v 1.75 2020/09/27 13:48:50 roy Exp $
21.1Sdrochner#
31.7Sgmcgarry# GENERIC machine description file
41.7Sgmcgarry# 
51.7Sgmcgarry# This machine description file is used to generate the default NetBSD
61.7Sgmcgarry# kernel.  The generic kernel does not include all options, subsystems
71.7Sgmcgarry# and device drivers, but should be useful for most applications.
81.1Sdrochner#
91.7Sgmcgarry# The machine description file can be customised for your specific
101.7Sgmcgarry# machine to reduce the kernel size and improve its performance.
111.7Sgmcgarry#
121.7Sgmcgarry# For further information on compiling NetBSD kernels, see the config(8)
131.7Sgmcgarry# man page.
141.7Sgmcgarry#
151.7Sgmcgarry# For further information on hardware support for this architecture, see
161.7Sgmcgarry# the intro(4) man page.  For further information about kernel options
171.7Sgmcgarry# for this architecture, see the options(4) man page.  For an explanation
181.7Sgmcgarry# of each device driver in this file see the section 4 man page for the
191.7Sgmcgarry# device.
201.1Sdrochner
211.7Sgmcgarryinclude 	"arch/cesfic/conf/std.cesfic"
221.11Satatat
231.11Satatatoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.1Sdrochner
251.74Srinmakeoptions	COPTS="-O2 -fno-reorder-blocks -fno-omit-frame-pointer"
261.74Srin	# See share/mk/sys.mk. -fno-omit-frame-pointer is necessary for
271.74Srin	# backtraces in DDB.
281.61Stsutsui
291.1Sdrochner# Need to set locally
301.1Sdrochnermaxusers	32
311.1Sdrochner
321.6Slukem#options 	LEDEBUG
331.1Sdrochner
341.6Slukemoptions 	FPSP
351.9Sjdolecek
361.1Sdrochner# Standard system options
371.13Slukemoptions 	USERCONF	# userconf(4) support
381.9Sjdolecek#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
391.26Satatatoptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
401.16Sjunyoung
411.69Ssevan# Alternate buffer queue strategies for better responsiveness under high
421.69Ssevan# disk I/O load.
431.30Stsutsui#options 	BUFQ_READPRIO
441.72Ssevanoptions 	BUFQ_PRIOCSCAN
451.9Sjdolecek
461.68Smrginclude 	"conf/compat_netbsd09.config"
471.68Smrg
481.1Sdrochner#options 	SYSVSHM		# System V-style shared memory
491.1Sdrochner#options 	SYSVSEM		# System V-style semaphores
501.1Sdrochner#options 	SYSVMSG		# System V-style message queues
511.1Sdrochneroptions 	KTRACE		# system call tracing support
521.1Sdrochner#options 	NKMEMCLUSTERS=1024	# 4K pages in kernel malloc pool
531.6Slukemoptions 	COMPAT_SUNOS
541.1Sdrochner
551.1Sdrochner# Filesystems
561.1Sdrochner#file-system 	FFS		# fast filesystem
571.1Sdrochner#file-system 	CD9660		# CD-ROM ISO-9660 filesystem
581.1Sdrochnerfile-system 	NFS		# Network filesystem client
591.1Sdrochner#file-system 	UNION		# Union filesystem (req. for FDESC)
601.1Sdrochner#file-system 	KERNFS		# kernel data-structure filesystem
611.1Sdrochner#file-system 	FDESC		# user file descriptor filesystem
621.1Sdrochner#file-system 	PROCFS		# /proc filesystem
631.1Sdrochner#file-system 	MFS		# Memory-based filesystem
641.36Schristosfile-system	PTYFS		# /dev/pts/N support
651.46Sjmmv#file-system	TMPFS		# Efficient memory file-system
661.40Sreinoud#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
671.1Sdrochner
681.1Sdrochner# Filesystem options
691.1Sdrochneroptions 	FIFO		# POSIX fifo support (in all filesystems)
701.54Sbouyer#options 	QUOTA		# legacy UFS quotas
711.54Sbouyer#options 	QUOTA2		# new, in-filesystem UFS quotas
721.1Sdrochner#options 	NFSSERVER	# Network filesystem server
731.64Smanu#options 	UFS_EXTATTR	# Extended attribute support for UFS1
741.1Sdrochner
751.1Sdrochner# Networking options
761.1Sdrochneroptions 	INET		# Internet protocols
771.53Sjoerg#options 	GATEWAY		# IP forwarding
781.6Slukem#options 	MROUTING	# Multicast routing
791.27Smanu#options 	PIM		# Protocol Independent Multicast
801.3Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
811.1Sdrochner
821.24Sabs#options 	ALTQ		# Manipulate network interfaces' output queues
831.24Sabs#options 	ALTQ_BLUE	# Stochastic Fair Blue
841.24Sabs#options 	ALTQ_CBQ	# Class-Based Queueing
851.24Sabs#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
861.24Sabs#options 	ALTQ_FIFOQ	# First-In First-Out Queue
871.24Sabs#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
881.24Sabs#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
891.24Sabs#options 	ALTQ_LOCALQ	# Local queueing discipline
901.24Sabs#options 	ALTQ_PRIQ	# Priority Queueing
911.24Sabs#options 	ALTQ_RED	# Random Early Detection
921.24Sabs#options 	ALTQ_RIO	# RED with IN/OUT
931.24Sabs#options 	ALTQ_WFQ	# Weighted Fair Queueing
941.24Sabs
951.1Sdrochneroptions 	COMPAT_M68K4K	# compat. with NetBSD/m68k4k binaries
961.4Schsoptions 	COMPAT_AOUT_M68K # support for NetBSD a.out executables
971.1Sdrochner
981.1Sdrochner# Debugging options
991.38Schs#options 	DIAGNOSTIC	# Extra kernel sanity checks
1001.38Schs#options 	DEBUG		# Enable misc. kernel debugging code
1011.1Sdrochneroptions 	DDB		# Kernel Dynamic Debugger
1021.6Slukem#options 	KGDB
1031.1Sdrochnermakeoptions	DEBUG="-g"	# netbsd.gdb with full debugging symbols
1041.1Sdrochner
1051.6Slukemoptions 	NFS_BOOT_DHCP
1061.1Sdrochner
1071.1Sdrochnerconfig		netbsd root on ? type ?
1081.1Sdrochner
1091.1Sdrochnermainbus0	at root		# root "bus"
1101.1Sdrochner
1111.1Sdrochnerzsc*		at mainbus0
1121.1Sdrochnerzstty*		at zsc? channel ?
1131.1Sdrochner
1141.1Sdrochnerle*		at mainbus0		# LANCE ethernet interfaces
1151.1Sdrochner
1161.50Stls#
1171.50Stls# accept filters
1181.50Stlspseudo-device   accf_data		# "dataready" accept filter
1191.50Stlspseudo-device   accf_http		# "httpready" accept filter
1201.50Stls
1211.58Schristospseudo-device	pty			# pseudo ptys
1221.42Scube#pseudo-device	sl			# SLIP network interfaces
1231.42Scube#pseudo-device	ppp			# PPP network interfaces
1241.8Smartin#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
1251.41Srpaulo#pseudo-device	bpfilter		# Berkeley packet filter
1261.72Ssevanpseudo-device	carp			# Common Address Redundancy Protocol
1271.5Satatat#pseudo-device	bridge			# simple inter-network bridging
1281.75Sroy#pseudo-device	vether			# Virtual Ethernet for bridge
1291.42Scube#pseudo-device	vnd			# vnode pseudo-disks
1301.32Shubertf#options 	VND_COMPRESSION		# compressed vnd(4)
1311.58Schristos#pseudo-device	ccd			# concatenated disk devices
1321.58Schristos#pseudo-device	cgd			# cryptographic disk devices
1331.1Sdrochnerpseudo-device	loop			# loopback network interface
1341.70Smaxv#pseudo-device	npf			# NPF packet filter
1351.12Slukempseudo-device	clockctl		# user control of clock subsystem
1361.19Sraggepseudo-device	ksyms			# /dev/ksyms
1371.39Selad
1381.72Ssevaninclude "dev/veriexec.config"
139