GENERIC.common revision 1.1
1#
2#	$NetBSD: GENERIC.common,v 1.1 2015/04/03 23:25:07 jmcneill Exp $
3#
4#	GENERIC evbarm kernel config (template)
5#
6
7# estimated number of users
8
9maxusers	32
10
11# Standard system options
12
13options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
14#options 	NTP		# NTP phase/frequency locked loop
15
16# CPU options
17options 	PMAPCOUNTERS
18
19# Architecture options
20
21# File systems
22
23file-system	FFS		# UFS
24#file-system	LFS		# log-structured file system
25file-system	MFS		# memory file system
26file-system	NFS		# Network file system
27#file-system 	ADOSFS		# AmigaDOS-compatible file system
28#file-system 	EXT2FS		# second extended file system (linux)
29#file-system	CD9660		# ISO 9660 + Rock Ridge file system
30file-system	MSDOSFS		# MS-DOS file system
31#file-system	FDESC		# /dev/fd
32file-system	KERNFS		# /kern
33#file-system	NULLFS		# loopback file system
34file-system	PROCFS		# /proc
35#file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
36#file-system	UMAPFS		# NULLFS + uid and gid remapping
37#file-system	UNION		# union file system
38file-system	TMPFS		# memory file system
39file-system	PTYFS		# /dev/pts/N support
40
41# File system options
42#options 	QUOTA		# legacy UFS quotas
43#options 	QUOTA2		# new, in-filesystem UFS quotas
44#options 	FFS_EI		# FFS Endian Independent support
45#options 	NFSSERVER
46options 	WAPBL		# File system journaling support
47#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
48
49# Networking options
50
51#options 	GATEWAY		# packet forwarding
52options 	INET		# IP + ICMP + TCP + UDP
53options 	INET6		# IPV6
54#options 	IPSEC		# IP security
55#options 	IPSEC_DEBUG	# debug for IP security
56#options 	MROUTING	# IP multicast routing
57#options 	PIM		# Protocol Independent Multicast
58#options 	NETATALK	# AppleTalk networking
59#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
60#options 	PPP_DEFLATE	# Deflate compression support for PPP
61#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
62#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
63
64options 	NFS_BOOT_BOOTP
65#options 	NFS_BOOT_DHCP
66#options		NFS_BOOT_BOOTSTATIC
67#options		NFS_BOOTSTATIC_MYIP="\"192.168.1.4\""
68#options		NFS_BOOTSTATIC_GWIP="\"192.168.1.1\""
69#options		NFS_BOOTSTATIC_MASK="\"255.255.255.0\""
70#options		NFS_BOOTSTATIC_SERVADDR="\"192.168.1.1\""
71#options		NFS_BOOTSTATIC_SERVER="\"192.168.1.1:/nfs/sdp2430\""
72
73options		NFS_BOOT_RWSIZE=1024
74
75# Compatibility options
76
77#options 	COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
78#options 	COMPAT_43	# 4.3BSD compatibility.
79#options 	COMPAT_09	# NetBSD 0.9,
80#options 	COMPAT_10	# NetBSD 1.0,
81#options 	COMPAT_11	# NetBSD 1.1,
82#options 	COMPAT_12	# NetBSD 1.2,
83#options 	COMPAT_13	# NetBSD 1.3,
84#options 	COMPAT_14	# NetBSD 1.4,
85#options 	COMPAT_15	# NetBSD 1.5,
86#options 	COMPAT_16	# NetBSD 1.6,
87#options 	COMPAT_20	# NetBSD 2.0,
88#options 	COMPAT_30	# NetBSD 3.0,
89#options 	COMPAT_40	# NetBSD 4.0,
90#options 	COMPAT_50	# NetBSD 5.0,
91options 	COMPAT_60	# NetBSD 6.0, and
92options 	COMPAT_70	# NetBSD 7.0 binary compatibility.
93#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
94#options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
95
96# Shared memory options
97
98options 	SYSVMSG		# System V-like message queues
99options 	SYSVSEM		# System V-like semaphores
100#options 	SEMMNI=10	# number of semaphore identifiers
101#options 	SEMMNS=60	# number of semaphores in system
102#options 	SEMUME=10	# max number of undo entries per process
103#options 	SEMMNU=30	# number of undo structures in system
104options 	SYSVSHM		# System V-like memory sharing
105
106# Device options
107
108#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
109#options 	MEMORY_DISK_ROOT_SIZE=8192	# Size in blocks
110#options 	MEMORY_DISK_DYNAMIC
111#options 	MINIROOTSIZE=1000	# Size in blocks
112#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
113#options 	MEMORY_DISK_FBFLAGS=RB_SINGLE
114
115# Miscellaneous kernel options
116options 	KTRACE		# system call tracing, a la ktrace(1)
117#options 	KMEMSTATS	# kernel memory statistics
118#options 	SCSIVERBOSE	# Verbose SCSI errors
119#options 	MIIVERBOSE	# Verbose MII autoconfuration messages
120#options 	USERCONF	# userconf(4) support
121#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
122
123# Alternate buffer queue strategies for better responsiveness under high
124# disk I/O load.
125#options 	BUFQ_READPRIO
126options 	BUFQ_PRIOCSCAN
127
128# Development and Debugging options
129
130#options 	PERFCTRS	# performance counters
131#options 	DIAGNOSTIC	# internal consistency checks
132#options 	DEBUG
133#options 	LOCKDEBUG
134#options 	PMAP_DEBUG	# Enable pmap_debug_level code
135#options 	IPKDB		# remote kernel debugging
136#options 	VERBOSE_INIT_ARM # verbose bootstraping messages
137options 	DDB		# in-kernel debugger
138options		DDB_ONPANIC=1
139options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
140#options 	DDB_COMMANDONENTER="bt"
141#options 	KGDB
142
143# Pseudo-Devices
144
145# disk/mass storage pseudo-devices
146#pseudo-device	md			# memory disk device (ramdisk)
147pseudo-device	vnd			# disk-like interface to files
148#pseudo-device	fss			# file system snapshot device
149pseudo-device	drvctl			# driver control
150pseudo-device	putter			# for puffs and pud
151
152# network pseudo-devices
153pseudo-device	bpfilter		# Berkeley packet filter
154pseudo-device	loop			# network loopback
155#pseudo-device	kttcp			# network loopback
156
157# miscellaneous pseudo-devices
158pseudo-device	pty			# pseudo-terminals
159#options	RND_COM
160#pseudo-device	clockctl		# user control of clock subsystem
161pseudo-device	ksyms			# /dev/ksyms
162pseudo-device	lockstat		# lock profiling
163