GENERIC revision 1.105
1# $NetBSD: GENERIC,v 1.105 2020/08/01 08:20:51 maxv Exp $
2#
3# machine description file for GENERIC NAS
4# 
5# This machine description file is used to generate the default NetBSD
6# kernel.  The generic kernel does not include all options, subsystems
7# and device drivers, but should be useful for most applications.
8#
9# The machine description file can be customised for your specific
10# machine to reduce the kernel size and improve its performance.
11#
12# For further information on compiling NetBSD kernels, see the config(8)
13# man page.
14#
15# For further information on hardware support for this architecture, see
16# the intro(4) man page.  For further information about kernel options
17# for this architecture, see the options(4) man page.  For an explanation
18# of each device driver in this file see the section 4 man page for the
19# device.
20
21include 	"arch/sandpoint/conf/std.sandpoint"
22
23options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
24
25#ident 		"GENERIC-$Revision: 1.105 $"
26
27maxusers	32
28
29#options 	ALTIVEC		# Include AltiVec support
30
31# Standard system options
32#options 	INSECURE	# disable kernel security levels
33
34options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
35options 	KTRACE
36
37options 	SYSVMSG		# System V message queues
38options 	SYSVSEM		# System V semaphores
39options 	SYSVSHM		# System V shared memory
40
41#options 	MODULAR		# module(7) support
42#options 	MODULAR_DEFAULT_AUTOLOAD
43#options 	USERCONF	# userconf(4) support
44
45#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
46options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
47
48# Alternate buffer queue strategies for better responsiveness under high
49# disk I/O load.
50#options 	BUFQ_READPRIO
51options 	BUFQ_PRIOCSCAN
52
53# Diagnostic/debugging support options
54#options 	DIAGNOSTIC	# cheap kernel consistency checks
55#options 	DEBUG		# expensive debugging checks/support
56options 	DDB
57#options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
58#options 	TRAP_PANICWAIT
59#options 	PMAPCHECK
60#options 	PMAPDEBUG
61options 	MSGBUFSIZE=65536
62
63#makeoptions	DEBUG="-g"
64
65# Compatibility options
66include 	"conf/compat_netbsd09.config"
67options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
68#options 	COMPAT_386BSD_MBRPART	# recognize old partition ID
69#options 	COMPAT_LINUX	# binary compatibility with Linux
70
71# Wedge support
72options 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
73options 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
74#options 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
75#options 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
76options		DKWEDGE_METHOD_APPLE    # Support Apple partitions as wedges
77#options	DKWEDGE_METHOD_RDB	# Support RDB partitions as wedges
78
79# File systems
80file-system 	FFS		# UFS
81file-system 	EXT2FS		# second extended file system (linux)
82#file-system 	LFS		# log-structured file system
83file-system 	MFS		# memory file system
84file-system 	NFS		# Network File System client
85#file-system 	NTFS		# Windows/NT file system (experimental)
86file-system 	CD9660		# ISO 9660 + Rock Ridge file system
87file-system 	MSDOSFS		# MS-DOS file system
88file-system 	FDESC		# /dev/fd
89file-system 	KERNFS		# /kern
90file-system 	NULLFS		# loopback file system
91#file-system 	OVERLAY		# overlay file system
92file-system 	PROCFS		# /proc
93#file-system 	UMAPFS		# NULLFS + uid and gid remapping
94#file-system 	UNION		# union file system
95#file-system	CODA		# Coda File System; also needs vcoda (below)
96file-system	PTYFS		# /dev/ptm support
97file-system	TMPFS		# Efficient memory file-system
98
99# File system options
100options 	QUOTA		# legacy UFS quotas
101options 	QUOTA2		# new, in-filesystem UFS quotas
102#options 	DISKLABEL_EI	# disklabel Endian Independent support
103#options 	FFS_EI		# FFS Endian Independent support
104options 	WAPBL		# File system journaling support
105options 	NFSSERVER	# Network File System server
106#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
107options 	UFS_EXTATTR	# Extended attribute support for UFS1
108#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
109
110#options 	NFS_BOOT_DHCP
111options 	NFS_BOOT_BOOTPARAM,NFS_BOOT_BOOTP
112
113# Networking options
114#options 	GATEWAY		# packet forwarding
115options 	INET		# IP + ICMP + TCP + UDP
116options 	INET6		# IPV6
117#options 	IPSEC		# IP security
118#options 	IPSEC_DEBUG	# debug for IP security
119#options 	MROUTING	# IP multicast routing
120#options 	PIM		# Protocol Independent Multicast
121#options 	NETATALK	# AppleTalk networking protocols
122#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
123#options 	PPP_DEFLATE	# Deflate compression support for PPP
124#options 	PPP_FILTER	# Active filter support for PPP (requires BPF)
125#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
126
127#options 	ALTQ		# Manipulate network interfaces' output queues
128#options 	ALTQ_BLUE	# Stochastic Fair Blue
129#options 	ALTQ_CBQ	# Class-Based Queueing
130#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
131#options 	ALTQ_FIFOQ	# First-In First-Out Queue
132#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
133#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
134#options 	ALTQ_LOCALQ	# Local queueing discipline
135#options 	ALTQ_PRIQ	# Priority Queueing
136#options 	ALTQ_RED	# Random Early Detection
137#options 	ALTQ_RIO	# RED with IN/OUT
138#options 	ALTQ_WFQ	# Weighted Fair Queueing
139
140# These options enable verbose messages for several subsystems.
141# Warning, these may compile large string tables into the kernel!
142#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
143#options 	MIIVERBOSE	# verbose PHY autoconfig messages
144#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
145#options 	SCSIVERBOSE	# human readable SCSI error messages
146#options 	USBVERBOSE	# verbose USB device autoconfig messages
147
148# Kernel root file system and dump configuration
149config		netbsd	root on ? type ?
150
151#
152# Device configuration
153#
154mainbus0	at root
155cpu*		at mainbus0
156
157#cfi0		at mainbus0
158#nor*		at cfi?
159#flash*		at nor?
160
161nhpow0		at mainbus0			# NH230/231 power,LED,buttons
162
163#options 	PCI_NETBSD_CONFIGURE
164pci*		at mainbus0 bus ?
165pchb*		at pci? dev ? function ?	# PCI host bridge
166
167eumb*		at mainbus0
168com0		at eumb? unit 0			# console at 0x4500
169#com1		at eumb? unit 1
170satmgr0 	at eumb? unit 1 		# satmgr at 0x4600
171ociic*		at eumb?
172iic*		at ociic?
173lmtemp*		at iic? addr 0x48		# LM75 temperature sensor
174rs5c372rtc*	at iic? addr 0x32
175s390rtc*	at iic? addr 0x30
176pcf8563rtc*	at iic? addr 0x51
177dsrtc*		at iic? addr 0x68
178strtc*		at iic? addr 0x68		# ST M41T80 (or compat) RTC
179
180# PCI IDE controllers - see pciide(4) for supported hardware.
181acardide*	at pci? dev ? function ?	# Acard IDE controllers
182cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
183iteide* 	at pci? dev ? function ?	# IT Express IDE controllers
184satalink*	at pci? dev ? function ?	# SiI SATALink controllers
185viaide* 	at pci? dev ? function ?	# VIA IDE controllers
186
187# ATA (IDE) bus support
188atabus* at ata?
189
190# IDE drives
191# Flags are used only with controllers that support DMA operations
192# and mode settings (e.g. some pciide controllers)
193# The lowest order four bits (rightmost digit) of the flags define the PIO
194# mode to use, the next set of four bits the DMA mode and the third set the
195# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
196# to use, and the last bit must be 1 for this setting to be used.
197# For DMA and UDMA, 0xf (1111) means 'disable'.
198# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
199# (0xc=1100, 0xa=1010, 0xf=1111)
200# 0x0000 means "use whatever the drive claims to support".
201wd*		at atabus? drive ? flags 0x0000
202
203# ATAPI bus support
204atapibus*	at atapi?
205
206# ATAPI devices
207# flags have the same meaning as for IDE drives.
208cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
209sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
210uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
211
212# PCI network interfaces
213ral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
214re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
215skc*	at pci? dev ? function ?	# Marvell Yukon Gigabit Ethernet
216sk*	at skc?				# Marvell Yukon Gigabit Ethernet
217stge*	at pci? dev ? function ?	# Sundance ST1023 Gigabit
218tlp*	at pci? dev ? function ?	# DEC Tulip and similar
219wm*	at pci? dev ? function ?	# Intel 8254x Gigabit Ethernet
220
221inphy*	at mii? phy ?			# Intel 82555 PHYs
222nsphy*	at mii? phy ?			# NS83840 PHYs
223rgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
224makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
225ukphy*	at mii? phy ?			# generic unknown PHYs
226
227# GPIO devices
228gpio*	at gpiobus?
229
230# USB Controller and Devices
231ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
232ohci*	at pci?	dev ? function ?	# Open Host Controller
233
234# USB bus support
235usb*	at ehci?
236usb*	at ohci?
237
238# USB Hubs
239uhub*	at usb?
240uhub*	at uhub? port ?
241
242# USB HID devices
243uhidev* at uhub? port ? configuration ? interface ?	# USB HID device
244uthum*	at uhidev? reportid ?				# TEMPerHUM sensors
245uhid*	at uhidev? reportid ?				# USB Generic HID
246
247# USB video
248uvideo* at uhub?			# USB Video Class capture devices
249video*	at videobus?
250
251# USB printer
252ulpt*	at uhub? port ? configuration ? interface ?
253
254# USB Mass Storage
255umass*	at uhub? port ? configuration ? interface ?
256
257# USB scanners
258#uscanner* at uhub? port ?
259ugen*	at uhub? port ? configuration ? interface ?	# USB Generic driver
260
261# SCSI bus support
262scsibus* 	at umass?
263
264# SCSI devices
265sd*		at scsibus? target ? lun ?	# SCSI disk drives
266cd*		at scsibus? target ? lun ?	# SCSI CD-ROM drives
267
268
269#
270# Pseudo-Devices
271#
272#pseudo-device 	crypto			# /dev/crypto device
273#pseudo-device	swcrypto		# software crypto implementation
274
275# disk/mass storage pseudo-devices
276#pseudo-device	ccd			# concatenated/striped disk devices
277#pseudo-device	cgd			# cryptographic disk devices
278pseudo-device	fss			# file system snapshot device
279#pseudo-device	putter			# for puffs and pud
280
281pseudo-device	raid			# RAIDframe disk driver
282options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
283# Options to enable various other RAIDframe RAID types.
284#options 	RF_INCLUDE_EVENODD=1
285#options 	RF_INCLUDE_RAID5_RS=1
286#options 	RF_INCLUDE_PARITYLOGGING=1
287#options 	RF_INCLUDE_CHAINDECLUSTER=1
288#options 	RF_INCLUDE_INTERDECLUSTER=1
289#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
290#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
291
292pseudo-device	vnd		
293#options 	VND_COMPRESSION		# compressed vnd(4)
294
295# network pseudo-devices
296pseudo-device	loop
297pseudo-device	bpfilter		# packet filter
298pseudo-device	carp			# Common Address Redundancy Protocol
299#pseudo-device	ppp			# Point-to-Point Protocol
300#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
301#pseudo-device	npf			# NPF packet filter
302#pseudo-device	sl			# Serial Line IP
303#pseudo-device	tun			# network tunneling over tty
304#pseudo-device	tap			# virtual Ethernet
305#pseudo-device	gre			# generic L3 over IP tunnel
306#pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
307#pseudo-device	faith			# IPv[46] tcp relay translation i/f
308#pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
309#pseudo-device	vlan			# IEEE 802.1q encapsulation
310#pseudo-device	bridge			# simple inter-network bridging
311#pseudo-device	agr			# IEEE 802.3ad link aggregation
312
313#
314# accept filters
315#pseudo-device	accf_data		# "dataready" accept filter
316#pseudo-device	accf_http		# "httpready" accept filter
317
318# miscellaneous pseudo-devices
319pseudo-device	pty
320pseudo-device	clockctl		# user control of clock subsystem
321pseudo-device	ksyms			# /dev/ksyms
322#pseudo-device	lockstat		# lock profiling
323
324# a pseudo device needed for Coda	# also needs CODA (above)
325#pseudo-device	vcoda			# coda minicache <-> venus comm.
326
327# userland interface to drivers, including autoconf and properties retrieval
328pseudo-device	drvctl
329
330include "dev/veriexec.config"
331
332#options 	PAX_MPROTECT=0		# PaX mprotect(2) restrictions
333#options 	PAX_ASLR=0		# PaX Address Space Layout Randomization
334