GENERIC revision 1.72 1 1.72 martin # $NetBSD: GENERIC,v 1.72 2022/06/10 17:47:20 martin Exp $
2 1.1 uwe #
3 1.3 tsutsui # GENERIC machine description file
4 1.1 uwe #
5 1.3 tsutsui # This machine description file is used to generate the default NetBSD
6 1.3 tsutsui # kernel. The generic kernel does not include all options, subsystems
7 1.3 tsutsui # and device drivers, but should be useful for most applications.
8 1.3 tsutsui #
9 1.3 tsutsui # The machine description file can be customised for your specific
10 1.3 tsutsui # machine to reduce the kernel size and improve its performance.
11 1.3 tsutsui #
12 1.3 tsutsui # For further information on compiling NetBSD kernels, see the config(8)
13 1.3 tsutsui # man page.
14 1.3 tsutsui #
15 1.3 tsutsui # For further information on hardware support for this architecture, see
16 1.3 tsutsui # the intro(4) man page. For further information about kernel options
17 1.3 tsutsui # for this architecture, see the options(4) man page. For an explanation
18 1.3 tsutsui # of each device driver in this file see the section 4 man page for the
19 1.3 tsutsui # device.
20 1.3 tsutsui
21 1.57 mrg include "arch/landisk/conf/std.landisk"
22 1.3 tsutsui
23 1.3 tsutsui options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.3 tsutsui
25 1.72 martin #ident "GENERIC-$Revision: 1.72 $"
26 1.3 tsutsui
27 1.3 tsutsui maxusers 16 # estimated number of users
28 1.3 tsutsui
29 1.5 uwe makeoptions CPUFLAGS="-m4-nofpu" # XXX: move to std.landisk?
30 1.5 uwe #makeoptions COPTS="-Os -freorder-blocks" # -O2 is too -falign-* zealous
31 1.3 tsutsui
32 1.3 tsutsui # CPU-related options.
33 1.3 tsutsui options PCLOCK=33333333 # 33.33MHz
34 1.3 tsutsui options DONT_INIT_BSC
35 1.3 tsutsui #options DONT_INIT_PCIBSC
36 1.3 tsutsui
37 1.3 tsutsui # Cache options.
38 1.3 tsutsui options SH4_CACHE_DISABLE_EMODE
39 1.3 tsutsui #options SH4_CACHE_DISABLE_ICACHE
40 1.3 tsutsui #options SH4_CACHE_DISABLE_DCACHE
41 1.3 tsutsui #options SH4_CACHE_WB_U0_P0_P3
42 1.3 tsutsui #options SH4_CACHE_WB_P1
43 1.3 tsutsui
44 1.3 tsutsui # kloader-related
45 1.3 tsutsui #options KLOADER
46 1.3 tsutsui #options KLOADER_KERNEL_PATH="\"/netbsd\""
47 1.3 tsutsui #options KLOADER_DEBUG
48 1.3 tsutsui
49 1.3 tsutsui # Standard system options
50 1.3 tsutsui
51 1.3 tsutsui options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
52 1.3 tsutsui #options HZ=64 # clock interrupt generates every 1/HZ sec
53 1.3 tsutsui options NTP # NTP phase/frequency locked loop
54 1.3 tsutsui
55 1.3 tsutsui options KTRACE # system call tracing via ktrace(1)
56 1.3 tsutsui
57 1.3 tsutsui options SYSVMSG # System V-like message queues
58 1.3 tsutsui options SYSVSEM # System V-like semaphores
59 1.3 tsutsui options SYSVSHM # System V-like memory sharing
60 1.3 tsutsui
61 1.27 tsutsui #options MODULAR # new style module(7) framework
62 1.43 jnemeth #options MODULAR_DEFAULT_AUTOLOAD
63 1.3 tsutsui
64 1.3 tsutsui options USERCONF # userconf(4) support
65 1.3 tsutsui #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
66 1.3 tsutsui options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
67 1.3 tsutsui
68 1.58 sevan # Alternate buffer queue strategies for better responsiveness under high
69 1.58 sevan # disk I/O load.
70 1.3 tsutsui #options BUFQ_READPRIO
71 1.63 sevan options BUFQ_PRIOCSCAN
72 1.3 tsutsui
73 1.3 tsutsui # Diagnostic/debugging support options
74 1.3 tsutsui #options DIAGNOSTIC # cheap kernel consistency checks
75 1.3 tsutsui #options DEBUG # expensive debugging checks/support
76 1.3 tsutsui options DDB # in-kernel debugger
77 1.40 szptvlfn #options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic'
78 1.3 tsutsui options DDB_HISTORY_SIZE=512 # Enable history editing in DDB
79 1.3 tsutsui #makeoptions DEBUG="-g -fno-omit-frame-pointer"
80 1.3 tsutsui
81 1.3 tsutsui # Compatibility options
82 1.57 mrg include "conf/compat_netbsd16.config"
83 1.3 tsutsui
84 1.3 tsutsui # Executable format options
85 1.3 tsutsui options EXEC_COFF # COFF executables
86 1.3 tsutsui
87 1.3 tsutsui # File systems
88 1.3 tsutsui file-system FFS # UFS
89 1.3 tsutsui file-system EXT2FS # second extended file system (linux)
90 1.3 tsutsui file-system LFS # log-structured file system
91 1.3 tsutsui file-system MFS # memory file system
92 1.3 tsutsui file-system NFS # Network File System client
93 1.3 tsutsui file-system NTFS # Windows/NT file system (experimental)
94 1.3 tsutsui file-system CD9660 # ISO 9660 + Rock Ridge file system
95 1.3 tsutsui file-system MSDOSFS # MS-DOS file system
96 1.3 tsutsui file-system FDESC # /dev/fd
97 1.3 tsutsui file-system KERNFS # /kern
98 1.3 tsutsui file-system NULLFS # loopback file system
99 1.3 tsutsui file-system OVERLAY # overlay file system
100 1.21 pooka file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
101 1.3 tsutsui file-system PROCFS # /proc
102 1.3 tsutsui file-system UMAPFS # NULLFS + uid and gid remapping
103 1.3 tsutsui file-system UNION # union file system
104 1.3 tsutsui file-system CODA # Coda File System; also needs vcoda (below)
105 1.3 tsutsui file-system PTYFS # /dev/pts/N support
106 1.14 uwe file-system TMPFS # Efficient memory file-system
107 1.3 tsutsui #file-system UDF # experimental - OSTA UDF CD/DVD file-system
108 1.3 tsutsui
109 1.3 tsutsui # File system options
110 1.28 bouyer options QUOTA # legacy UFS quotas
111 1.28 bouyer options QUOTA2 # new, in-filesystem UFS quotas
112 1.54 rin #options DISKLABEL_EI # disklabel Endian Independent support
113 1.3 tsutsui #options FFS_EI # FFS Endian Independent support
114 1.30 dholland options WAPBL # File system journaling support
115 1.3 tsutsui #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
116 1.3 tsutsui options NFSSERVER # Network File System server
117 1.3 tsutsui #options FFS_NO_SNAPSHOT # ffs snapshots
118 1.44 manu options UFS_EXTATTR # Extended attribute support for UFS1
119 1.3 tsutsui #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
120 1.3 tsutsui # immutable) behave as system flags.
121 1.3 tsutsui
122 1.3 tsutsui # Networking options
123 1.3 tsutsui #options GATEWAY # packet forwarding
124 1.3 tsutsui options INET # IP + ICMP + TCP + UDP
125 1.3 tsutsui options INET6 # IPV6
126 1.3 tsutsui #options IPSEC # IP security
127 1.3 tsutsui #options IPSEC_DEBUG # debug for IP security
128 1.3 tsutsui #options MROUTING # IP multicast routing
129 1.3 tsutsui #options PIM # Protocol Independent Multicast
130 1.3 tsutsui #options NETATALK # AppleTalk networking protocols
131 1.3 tsutsui #options PPP_BSDCOMP # BSD-Compress compression support for PPP
132 1.3 tsutsui #options PPP_DEFLATE # Deflate compression support for PPP
133 1.3 tsutsui #options PPP_FILTER # Active filter support for PPP (requires bpf)
134 1.3 tsutsui #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
135 1.3 tsutsui
136 1.3 tsutsui #options ALTQ # Manipulate network interfaces' output queues
137 1.3 tsutsui #options ALTQ_BLUE # Stochastic Fair Blue
138 1.3 tsutsui #options ALTQ_CBQ # Class-Based Queueing
139 1.3 tsutsui #options ALTQ_CDNR # Diffserv Traffic Conditioner
140 1.3 tsutsui #options ALTQ_FIFOQ # First-In First-Out Queue
141 1.3 tsutsui #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
142 1.3 tsutsui #options ALTQ_HFSC # Hierarchical Fair Service Curve
143 1.3 tsutsui #options ALTQ_LOCALQ # Local queueing discipline
144 1.3 tsutsui #options ALTQ_PRIQ # Priority Queueing
145 1.3 tsutsui #options ALTQ_RED # Random Early Detection
146 1.3 tsutsui #options ALTQ_RIO # RED with IN/OUT
147 1.3 tsutsui #options ALTQ_WFQ # Weighted Fair Queueing
148 1.1 uwe
149 1.3 tsutsui # These options enable verbose messages for several subsystems.
150 1.3 tsutsui # Warning, these may compile large string tables into the kernel!
151 1.3 tsutsui options MIIVERBOSE # verbose PHY autoconfig messages
152 1.3 tsutsui options PCIVERBOSE # verbose PCI device autoconfig messages
153 1.3 tsutsui #options PCI_CONFIG_DUMP # verbosely dump PCI config space
154 1.3 tsutsui options SCSIVERBOSE # human readable SCSI error messages
155 1.3 tsutsui options USBVERBOSE # verbose USB device autoconfig messages
156 1.1 uwe
157 1.3 tsutsui options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
158 1.3 tsutsui
159 1.3 tsutsui
160 1.3 tsutsui # Kernel root file system and dump configuration.
161 1.3 tsutsui #config netbsd root on ? type ?
162 1.3 tsutsui config netbsd root on wd0a type ffs
163 1.3 tsutsui #config netbsd root on ? type nfs
164 1.3 tsutsui
165 1.3 tsutsui
166 1.3 tsutsui #
167 1.3 tsutsui # Device configuration
168 1.3 tsutsui #
169 1.3 tsutsui
170 1.3 tsutsui mainbus0 at root
171 1.3 tsutsui
172 1.3 tsutsui cpu* at mainbus?
173 1.3 tsutsui
174 1.3 tsutsui # Basic Bus Support
175 1.3 tsutsui
176 1.3 tsutsui # PCI bus support
177 1.3 tsutsui options PCI_NETBSD_CONFIGURE
178 1.3 tsutsui shpcic* at mainbus? # SH7751 PCIC
179 1.3 tsutsui pci0 at shpcic? bus ?
180 1.3 tsutsui
181 1.3 tsutsui # SH bus
182 1.3 tsutsui shb* at mainbus?
183 1.3 tsutsui
184 1.3 tsutsui # ob-board I/O bus
185 1.3 tsutsui obio0 at mainbus?
186 1.3 tsutsui
187 1.3 tsutsui # Serial Devices
188 1.3 tsutsui
189 1.3 tsutsui options SCIFCONSOLE
190 1.3 tsutsui options SCIFCN_SPEED=9600
191 1.3 tsutsui scif0 at shb?
192 1.3 tsutsui
193 1.3 tsutsui rs5c313rtc0 at shb0 # time-of-day clock
194 1.3 tsutsui
195 1.3 tsutsui # SCSI Controllers and Devices
196 1.3 tsutsui
197 1.3 tsutsui # SCSI devices
198 1.3 tsutsui sd* at scsibus? target ? lun ? # SCSI disk drives
199 1.3 tsutsui st* at scsibus? target ? lun ? # SCSI tape drives
200 1.3 tsutsui cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
201 1.3 tsutsui ch* at scsibus? target ? lun ? # SCSI autochangers
202 1.3 tsutsui ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices
203 1.3 tsutsui ss* at scsibus? target ? lun ? # SCSI scanners
204 1.3 tsutsui uk* at scsibus? target ? lun ? # SCSI unknown
205 1.3 tsutsui
206 1.3 tsutsui # IDE and related devices
207 1.3 tsutsui # PCI IDE controllers - see pciide(4) for supported hardware.
208 1.3 tsutsui # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
209 1.3 tsutsui # how to set up DMA modes for this chip. This may work, or may cause
210 1.3 tsutsui # a machine hang with some controllers.
211 1.3 tsutsui pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
212 1.1 uwe acardide* at pci? dev ? function ? # Acard IDE controllers
213 1.1 uwe
214 1.1 uwe wdc0 at obio? port 0x14000000 irq 10 # CF
215 1.3 tsutsui #wdc1 at obio? port 0x18000000 irq 9 # iConnect
216 1.3 tsutsui
217 1.3 tsutsui # ATA (IDE) bus support
218 1.3 tsutsui atabus* at ata?
219 1.3 tsutsui
220 1.3 tsutsui # IDE drives
221 1.3 tsutsui # Flags are used only with controllers that support DMA operations
222 1.3 tsutsui # and mode settings (e.g. some pciide controllers)
223 1.3 tsutsui # The lowest order four bits (rightmost digit) of the flags define the PIO
224 1.3 tsutsui # mode to use, the next set of four bits the DMA mode and the third set the
225 1.3 tsutsui # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
226 1.3 tsutsui # to use, and the last bit must be 1 for this setting to be used.
227 1.3 tsutsui # For DMA and UDMA, 0xf (1111) means 'disable'.
228 1.3 tsutsui # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
229 1.3 tsutsui # (0xc=1100, 0xa=1010, 0xf=1111)
230 1.3 tsutsui # 0x0000 means "use whatever the drive claims to support".
231 1.3 tsutsui wd* at atabus? drive ? flags 0x0000
232 1.3 tsutsui
233 1.3 tsutsui # ATAPI bus support
234 1.3 tsutsui atapibus* at atapi?
235 1.3 tsutsui
236 1.3 tsutsui # ATAPI devices
237 1.3 tsutsui # flags have the same meaning as for IDE drives.
238 1.3 tsutsui cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
239 1.3 tsutsui sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
240 1.3 tsutsui uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
241 1.3 tsutsui
242 1.3 tsutsui # Network Interfaces
243 1.3 tsutsui
244 1.3 tsutsui # PCI network interfaces
245 1.13 uwe re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S
246 1.3 tsutsui rtk* at pci? dev ? function ? # Realtek 8129/8139
247 1.3 tsutsui
248 1.3 tsutsui # MII/PHY support
249 1.62 rin rgephy* at mii? phy ? # Realtek 8169S/8110S/8211 PHYs
250 1.3 tsutsui rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
251 1.3 tsutsui urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
252 1.3 tsutsui ukphy* at mii? phy ? # generic unknown PHYs
253 1.3 tsutsui
254 1.3 tsutsui
255 1.3 tsutsui # USB Controller and Devices
256 1.3 tsutsui
257 1.3 tsutsui # PCI USB controllers
258 1.3 tsutsui ehci* at pci? dev ? function ? # Enhanced Host Controller
259 1.3 tsutsui ohci* at pci? dev ? function ? # Open Host Controller
260 1.3 tsutsui
261 1.3 tsutsui # USB bus support
262 1.3 tsutsui usb* at ehci?
263 1.3 tsutsui usb* at ohci?
264 1.3 tsutsui
265 1.3 tsutsui # USB Hubs
266 1.3 tsutsui uhub* at usb?
267 1.4 drochner uhub* at uhub? port ?
268 1.3 tsutsui
269 1.3 tsutsui # USB HID device
270 1.3 tsutsui uhidev* at uhub? port ? configuration ? interface ?
271 1.3 tsutsui
272 1.3 tsutsui # USB Mice
273 1.3 tsutsui ums* at uhidev? reportid ?
274 1.3 tsutsui wsmouse* at ums? mux 0
275 1.3 tsutsui
276 1.3 tsutsui # USB Keyboards
277 1.3 tsutsui ukbd* at uhidev? reportid ?
278 1.3 tsutsui wskbd* at ukbd? console ? mux 1
279 1.3 tsutsui
280 1.22 tsutsui # USB LCDs and USB-VGA adaptors
281 1.22 tsutsui udl* at uhub? port ? # DisplayLink DL-1x0/1x5
282 1.22 tsutsui wsdisplay* at udl?
283 1.22 tsutsui
284 1.3 tsutsui # USB serial adpater
285 1.3 tsutsui ucycom* at uhidev? reportid ?
286 1.3 tsutsui
287 1.3 tsutsui # USB Generic HID devices
288 1.3 tsutsui uhid* at uhidev? reportid ?
289 1.3 tsutsui
290 1.3 tsutsui # USB Printer
291 1.3 tsutsui ulpt* at uhub? port ? configuration ? interface ?
292 1.3 tsutsui
293 1.3 tsutsui # USB Modem
294 1.3 tsutsui umodem* at uhub? port ? configuration ?
295 1.3 tsutsui ucom* at umodem?
296 1.3 tsutsui
297 1.23 plunky # Option N.V. Wireless WAN modems
298 1.23 plunky uhso* at uhub? port ? configuration ?
299 1.23 plunky
300 1.3 tsutsui # USB Mass Storage
301 1.3 tsutsui umass* at uhub? port ? configuration ? interface ?
302 1.3 tsutsui scsibus* at umass?
303 1.3 tsutsui
304 1.3 tsutsui # USB audio
305 1.3 tsutsui uaudio* at uhub? port ? configuration ?
306 1.3 tsutsui
307 1.3 tsutsui # USB MIDI
308 1.3 tsutsui umidi* at uhub? port ? configuration ?
309 1.3 tsutsui
310 1.3 tsutsui # USB IrDA
311 1.3 tsutsui # USB-IrDA bridge spec
312 1.3 tsutsui uirda* at uhub? port ? configuration ? interface ?
313 1.3 tsutsui irframe* at uirda?
314 1.3 tsutsui
315 1.3 tsutsui # SigmaTel STIr4200 USB/IrDA Bridge
316 1.3 tsutsui ustir* at uhub? port ?
317 1.3 tsutsui irframe* at ustir?
318 1.3 tsutsui
319 1.3 tsutsui # USB Ethernet adapters
320 1.3 tsutsui aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
321 1.3 tsutsui axe* at uhub? port ? # ASIX AX88172 based adapters
322 1.3 tsutsui cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
323 1.3 tsutsui cue* at uhub? port ? # CATC USB-EL1201A based adapters
324 1.3 tsutsui kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
325 1.60 rin mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters
326 1.3 tsutsui udav* at uhub? port ? # Davicom DM9601 based adapters
327 1.32 jakllsch ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g
328 1.62 rin ure* at uhub? port ? # Realtek RTL8152/RTL8153 based adapters
329 1.3 tsutsui url* at uhub? port ? # Realtek RTL8150L based adapters
330 1.3 tsutsui
331 1.3 tsutsui # USB 802.11b adapters
332 1.3 tsutsui atu* at uhub? port ? # Atmel AT76C50XX based adapters
333 1.3 tsutsui
334 1.3 tsutsui # Prolific PL2301/PL2302 host-to-host adapter
335 1.3 tsutsui upl* at uhub? port ?
336 1.3 tsutsui
337 1.3 tsutsui # Serial adapters
338 1.3 tsutsui ubsa* at uhub? port ? # Belkin serial adapter
339 1.3 tsutsui ucom* at ubsa? portno ?
340 1.3 tsutsui
341 1.3 tsutsui uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
342 1.3 tsutsui ucom* at uftdi? portno ?
343 1.3 tsutsui
344 1.3 tsutsui umct* at uhub? port ? # MCT USB-RS232 serial adapter
345 1.3 tsutsui ucom* at umct? portno ?
346 1.3 tsutsui
347 1.3 tsutsui uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
348 1.3 tsutsui ucom* at uplcom? portno ?
349 1.3 tsutsui
350 1.3 tsutsui uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
351 1.3 tsutsui ucom* at uvscom? portno ?
352 1.3 tsutsui
353 1.3 tsutsui # USB Handspring Visor
354 1.3 tsutsui uvisor* at uhub? port ?
355 1.3 tsutsui ucom* at uvisor?
356 1.3 tsutsui
357 1.3 tsutsui # Kyocera AIR-EDGE PHONE
358 1.3 tsutsui ukyopon* at uhub? port ?
359 1.3 tsutsui ucom* at ukyopon? portno ?
360 1.3 tsutsui
361 1.3 tsutsui # USB scanners that use SCSI emulation, e.g., HP5300
362 1.3 tsutsui usscanner* at uhub? port ?
363 1.3 tsutsui
364 1.3 tsutsui # D-Link DSB-R100 USB radio
365 1.3 tsutsui udsbr* at uhub? port ?
366 1.3 tsutsui radio* at udsbr?
367 1.3 tsutsui
368 1.3 tsutsui # USB Generic driver
369 1.3 tsutsui ugen* at uhub? port ?
370 1.3 tsutsui
371 1.3 tsutsui
372 1.3 tsutsui # Audio Devices
373 1.3 tsutsui
374 1.3 tsutsui # Audio support
375 1.3 tsutsui audio* at audiobus?
376 1.3 tsutsui
377 1.53 christos spkr* at audio? # PC speaker (synthesized)
378 1.51 nat
379 1.3 tsutsui # MIDI support
380 1.3 tsutsui midi* at midibus?
381 1.3 tsutsui
382 1.3 tsutsui
383 1.3 tsutsui # Miscellaneous Devices
384 1.3 tsutsui
385 1.3 tsutsui # Power switch
386 1.3 tsutsui pwrsw0 at obio?
387 1.3 tsutsui
388 1.3 tsutsui # Reset button, USL-5P misc button
389 1.3 tsutsui btn0 at obio?
390 1.3 tsutsui
391 1.3 tsutsui # Pull in optional local configuration
392 1.12 jmmv cinclude "arch/landisk/conf/GENERIC.local"
393 1.3 tsutsui
394 1.3 tsutsui
395 1.3 tsutsui # Pseudo-Devices
396 1.3 tsutsui
397 1.16 tls #
398 1.16 tls # accept filters
399 1.16 tls pseudo-device accf_data # "dataready" accept filter
400 1.16 tls pseudo-device accf_http # "httpready" accept filter
401 1.16 tls
402 1.3 tsutsui # disk/mass storage pseudo-devices
403 1.36 christos pseudo-device ccd # concatenated/striped disk devices
404 1.72 martin pseudo-device cgd # cryptographic disk devices
405 1.37 christos pseudo-device raid # RAIDframe disk driver
406 1.3 tsutsui options RAID_AUTOCONFIG # auto-configuration of RAID components
407 1.3 tsutsui # Options to enable various other RAIDframe RAID types.
408 1.3 tsutsui #options RF_INCLUDE_EVENODD=1
409 1.3 tsutsui #options RF_INCLUDE_RAID5_RS=1
410 1.3 tsutsui #options RF_INCLUDE_PARITYLOGGING=1
411 1.3 tsutsui #options RF_INCLUDE_CHAINDECLUSTER=1
412 1.3 tsutsui #options RF_INCLUDE_INTERDECLUSTER=1
413 1.3 tsutsui #options RF_INCLUDE_PARITY_DECLUSTERING=1
414 1.3 tsutsui #options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
415 1.24 pooka pseudo-device fss # file system snapshot device
416 1.3 tsutsui
417 1.72 martin pseudo-device crypto # /dev/crypto device
418 1.72 martin pseudo-device swcrypto # software crypto implementation
419 1.26 hannken pseudo-device md # memory disk device (ramdisk)
420 1.3 tsutsui pseudo-device vnd # disk-like interface to files
421 1.3 tsutsui options VND_COMPRESSION # compressed vnd(4)
422 1.3 tsutsui
423 1.3 tsutsui # network pseudo-devices
424 1.3 tsutsui pseudo-device bpfilter # Berkeley packet filter
425 1.63 sevan pseudo-device carp # Common Address Redundancy Protocol
426 1.59 maxv pseudo-device npf # NPF packet filter
427 1.3 tsutsui pseudo-device loop # network loopback
428 1.3 tsutsui pseudo-device ppp # Point-to-Point Protocol
429 1.3 tsutsui pseudo-device pppoe # PPP over Ethernet (RFC 2516)
430 1.3 tsutsui pseudo-device sl # Serial Line IP
431 1.3 tsutsui pseudo-device irframetty # IrDA frame line discipline
432 1.3 tsutsui pseudo-device tap # virtual Ethernet
433 1.3 tsutsui pseudo-device tun # network tunneling over tty
434 1.3 tsutsui pseudo-device gre # generic L3 over IP tunnel
435 1.3 tsutsui pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
436 1.3 tsutsui #pseudo-device faith # IPv[46] tcp relay translation i/f
437 1.3 tsutsui #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
438 1.3 tsutsui pseudo-device vlan # IEEE 802.1q encapsulation
439 1.3 tsutsui pseudo-device bridge # simple inter-network bridging
440 1.69 roy pseudo-device vether # Virtual Ethernet for bridge
441 1.8 martin pseudo-device agr # IEEE 802.3ad link aggregation
442 1.3 tsutsui
443 1.3 tsutsui # miscellaneous pseudo-devices
444 1.3 tsutsui pseudo-device pty # pseudo-terminals
445 1.38 christos pseudo-device sequencer # MIDI sequencer
446 1.3 tsutsui pseudo-device clockctl # user control of clock subsystem
447 1.46 nonaka pseudo-device drvctl # user control of drive subsystem
448 1.3 tsutsui pseudo-device ksyms # /dev/ksyms
449 1.21 pooka pseudo-device putter # for puffs and pud
450 1.3 tsutsui
451 1.3 tsutsui # a pseudo device needed for Coda # also needs CODA (above)
452 1.37 christos pseudo-device vcoda # coda minicache <-> venus comm.
453 1.3 tsutsui
454 1.3 tsutsui # wscons pseudo-devices
455 1.3 tsutsui pseudo-device wsmux # mouse & keyboard multiplexor
456 1.3 tsutsui #pseudo-device wsfont
457 1.49 christos
458 1.63 sevan include "dev/veriexec.config"
459 1.49 christos
460 1.49 christos options PAX_ASLR_DEBUG=1 # PaX ASLR debug
461 1.49 christos options PAX_SEGVGUARD=0 # PaX Segmentation fault guard
462 1.49 christos options PAX_MPROTECT=1 # PaX mprotect(2) restrictions
463 1.49 christos options PAX_MPROTECT_DEBUG=1 # PaX mprotect debug
464 1.49 christos options PAX_ASLR=1 # PaX Address Space Layout Randomization
465