GENERIC.in revision 1.73
1# $NetBSD: GENERIC.in,v 1.73 2009/12/05 20:11:03 pooka Exp $ 2# 3# GENERIC machine description file 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 21m4_divert(-1) 22# 23# GENERIC Amiga or DraCo 24# 25# This configuration file contains all possible options 26# 27# make AMIGA extracts the AMIGA configuration file. 28# make DRACO extracts the DRACO configuration file. 29# make GENERIC extracts the GENERIC configuration file. 30# make INSTALL extracts the INSTALL configuration file. 31# make WSCONS extracts the WSCONS configuration file. 32# 33# commit them, too. 34# 35 36# Define XXX_CONFIGURATION 37# 38m4_define(M4_Target`_CONFIGURATION', `') 39 40# If not building AMIGA, set DRACO_CONFIGURATION 41# 42m4_ifelse(M4_Target, `AMIGA', `', `m4_define(`DRACO_CONFIGURATION', `')') 43 44# If not building DRACO, set AMIGA_CONFIGURATION 45# 46m4_ifelse(M4_Target, `DRACO', `', `m4_define(`AMIGA_CONFIGURATION', `')') 47 48# If building WSCONS, uncomment various options 49# 50m4_ifdef(`WSCONS_CONFIGURATION', `m4_define(`WSOFF', `wson')', `m4_define(`WSOFF', `wsoff')') 51 52 53m4_divert(0)m4_dnl 54 55include "arch/amiga/conf/std.amiga" 56 57options INCLUDE_CONFIG_FILE # embed config file in kernel binary 58 59#ident "GENERIC-$Revision: 1.73 $" 60 61m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl 62makeoptions COPTS="-Os" 63')m4_dnl 64 65maxusers 8 66options RTC_OFFSET=0 67 68# 69# mainboards to support (in addition to Amiga) 70# 71m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl 72options DRACO 73')m4_dnl 74m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 75options BB060STUPIDROM # You need this, if you have a non-DraCo 76 # MC68060 with an OS ROM up to (at least) 77 # V40 (OS3.1) and want to boot with the 78 # bootblock. 79 # You do not need this if you have a DraCo, 80 # have no 68060 or NEVER use the bootblock 81options P5PPC68KBOARD # Phase5 PPC/68K board support 82')m4_dnl 83# 84# processors this kernel should support 85# 86options M68060 # support for 060 87options M060SP # MC68060 software support (Required for 060) 88m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 89options M68040 # support for 040 90options FPSP # MC68040 floating point support 91options M68030 # support for 030 92options M68020 # support for 020/851 93options FPU_EMULATE # FPU emulation 94')m4_dnl 95 96# 97# Networking options 98# 99options INET # IP networking support (Required) 100options INET6 # IPV6 101#options IPSEC # IP security 102#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 103#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 104#options IPSEC_DEBUG # debug for IP security 105#options GATEWAY # Packet forwarding 106#options DIRECTED_BROADCAST # Broadcast across subnets 107 108m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 109#options MROUTING # Multicast routing 110#options PIM # Protocol Independent Multicast 111#options ISO,TPIP # OSI 112#options EON # OSI tunneling over IP 113options NETATALK # AppleTalk networking protocols 114#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 115')m4_dnl 116 117options PPP_BSDCOMP # BSD-Compress compression support for PPP 118options PPP_DEFLATE # Deflate compression support for PPP 119options PPP_FILTER # Active filter support for PPP (requires bpf) 120options PFIL_HOOKS # pfil(9) packet filter hooks 121options IPFILTER_LOG # ipmon(8) log support 122options IPFILTER_LOOKUP # ippool(8) support 123#options IPFILTER_DEFAULT_BLOCK # block all packets by default 124 125#options ALTQ # Manipulate network interfaces' output queues 126#options ALTQ_BLUE # Stochastic Fair Blue 127#options ALTQ_CBQ # Class-Based Queueing 128#options ALTQ_CDNR # Diffserv Traffic Conditioner 129#options ALTQ_FIFOQ # First-In First-Out Queue 130#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 131#options ALTQ_HFSC # Hierarchical Fair Service Curve 132#options ALTQ_LOCALQ # Local queueing discipline 133#options ALTQ_PRIQ # Priority Queueing 134#options ALTQ_RED # Random Early Detection 135#options ALTQ_RIO # RED with IN/OUT 136#options ALTQ_WFQ # Weighted Fair Queueing 137 138# Filesystems 139file-system FFS # Berkeley fast file system 140file-system EXT2FS # second extended file system (linux) 141#file-system LFS # log-structured filesystem (experimental) 142 143m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 144file-system MFS # Memory based filesystem 145')m4_dnl 146 147file-system NFS # Network File System client side code 148file-system ADOSFS # AmigaDOS file system 149file-system CD9660 # ISO 9660 + Rock Ridge filesystem 150file-system MSDOSFS # MS-DOS filesystem 151 152file-system KERNFS # kernel data-structure filesystem 153 154m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 155file-system FDESC # user file descriptor filesystem 156file-system NULLFS # loopback filesystem 157file-system OVERLAY # overlay filesystem 158file-system PROCFS # /proc filesystem 159file-system UMAPFS # NULLFS + uid and gid remapping 160file-system UNION # union filesystem 161file-system SMBFS # experimental - CIFS; also needs nsmb (below) 162file-system PTYFS # /dev/pts/N support 163#file-system TMPFS # Efficient memory file-system 164#file-system UDF # experimental - OSTA UDF CD/DVD file-system 165')m4_dnl 166 167# Filesystem options 168 169#options FFS_EI # FFS Endian Independant support 170options WAPBL # File system journaling support - Experimental 171 172m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 173options QUOTA # User and group quotas in FFS 174#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 175options NFSSERVER # Network File System server side code 176#options FFS_NO_SNAPSHOT # No FFS snapshot support 177')m4_dnl 178 179#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 180 # immutable) behave as system flags. 181 182# 183# Compatibility options for various existing systems 184# 185 186m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 187#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 188options COMPAT_43 # compatibility with 4.3BSD interfaces 189options COMPAT_09 # compatibility with NetBSD 0.9 190options COMPAT_10 # compatibility with NetBSD 1.0 191options COMPAT_12 # compatibility with NetBSD 1.2 192options COMPAT_13 # compatibility with NetBSD 1.3 193options COMPAT_14 # compatibility with NetBSD 1.4 194options COMPAT_15 # compatibility with NetBSD 1.5 195options COMPAT_16 # compatibility with NetBSD 1.6 196options COMPAT_20 # compatibility with NetBSD 2.0 197options COMPAT_30 # NetBSD 3.0 compatibility. 198options COMPAT_40 # NetBSD 4.0 compatibility. 199options COMPAT_50 # NetBSD 5.0 compatibility. 200options COMPAT_SUNOS # Support to run Sun (m68k) executables 201options COMPAT_SVR4 # Support to run SVR4 (m68k) executables 202options COMPAT_NOMID # allow nonvalid machine id executables 203#options COMPAT_LINUX # Support to run Linux/m68k executables 204')m4_dnl 205 206options EXEC_AOUT # 32-bit aout executables (NetBSD-1.5.x) 207options COMPAT_AOUT_M68K # actually make some system calls work. 208options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 209 210m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 211# 212# Support for System V IPC facilities. 213# 214options SYSVSHM # System V-like shared memory 215options SYSVMSG # System V-like messages 216options SYSVSEM # System V-like semaphores 217options P1003_1B_SEMAPHORE # p1003.1b semaphore support 218')m4_dnl 219 220# 221# Support for various kernel options 222# 223 224m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 225options KTRACE # system call tracing support 226')m4_dnl 227#options INSECURE # disable kernel security levels 228options SCSIVERBOSE # human readable SCSI error messages 229options USERCONF # userconf(4) support 230m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl 231options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 232options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 233', `m4_dnl 234options NTP # NTP phase/frequency locked loop 235#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 236')m4_dnl 237 238# Enable experimental buffer queue strategy for better responsiveness under 239# high disk I/O load. Use it with caution - it's not proven to be stable yet. 240#options BUFQ_READPRIO 241#options BUFQ_PRIOCSCAN 242 243# 244# Misc. debugging options 245# 246options DDB # Kernel debugger 247#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 248#options DIAGNOSTIC # Extra kernel sanity checks 249#options DEBUG # Enable misc. kernel debugging code 250#options SYSCALL_DEBUG # debug all syscalls. 251#options SCSIDEBUG # Add SCSI debugging statements 252#options PANICBUTTON # Forced crash via keypress (?) 253 254# 255# Amiga specific options 256# 257#options LIMITMEM=24 # Do not use more than LIMITMEM MB of the 258 # first bank of RAM. (default: unlimited) 259#options NKPTADD=4 # set this for 4 additional KPT pages 260#options NKPTADDSHIFT=24 # set this for 1 additional KPT page 261 # per 16 MB (1<<24 bytes) of RAM 262 # uncomment and decrease this, or uncomment and 263 # increase NKPTADD if you get "out of PT pages" 264 # panics. 265 266# ATTENTION: There is NO WARRANTY AT ALL that the sync will be complete 267# before the 10 secondinterval ends, or that KBDRESET does work at all. 268#options KBDRESET # sync on Ctrl-Amiga-Amiga 269 270# These options improve performance with the built-in serial port 271# on slower Amigas. Try the larger buffers first then lev6_defer. 272#options SERIBUF_SIZE=4096 273#options SEROBUF_SIZE=32 274#options LEV6_DEFER # defers l6 to l4 (below serial l5) 275 276m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 277#options DEVRELOAD # implement /dev/reload 278# # currently only works for a.out kernels 279')m4_dnl 280 281options RETINACONSOLE # enable code to allow retina to be console 282m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 283options ULOWELLCONSOLE # enable code to allow a2410 to be console 284options CL5426CONSOLE # Cirrus console 285options CV64CONSOLE # CyberVision console 286options TSENGCONSOLE # Tseng console 287options CV3DCONSOLE # CyberVision 64/3D console 288 289options GRF_ECS # Enhanced Chip Set 290options GRF_NTSC # NTSC 291options GRF_PAL # PAL 292options GRF_A2024 # Support for the A2024 293options GRF_AGA # AGA Chip Set 294options GRF_AGA_VGA # AGA VGAONLY timing 295options GRF_SUPER72 # AGA Super-72 296')m4_dnl 297#options KFONT_8X11 # 8x11 font 298 299# select a font for the console according to the character set and keymap 300# you want to use 301options KFONT_CONS_ISO8859_1 302#options KFONT_CONS_ISO8859_2 303 304# This is how you would tell the kernel the A2410 oscillator frequencies: 305# The used frequencies are the defaults, and do not need option setting 306#options ULOWELL_OSC1=36000000 307#options ULOWELL_OSC2=66667000 308 309# This is how you specify the blitting speed, higher values may speed up blits 310# a littel bit. If you raise this value too much some trash may appear. 311# the commented version is the default. 312#options RH_MEMCLK=61000000 313# this option enables the 64 bit sprite which does not work 314# for quite a few people. E.g. The cursor sprite will turn to a block 315# when moved to the top of the screen in X. 316#options RH_64BIT_SPRITE 317# enables fast scroll code appears to now work on 040 systems. 318#options RETINA_SPEED_HACK 319# enables the Hardwarecursor which does not work on some systems. 320#options RH_HARDWARECURSOR 321 322m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 323# wscons aware interface to amiga custom chips. 324# If you enable it enable also wskbd. 325# 326m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 327amidisplaycc0 at mainbus0 # wscons interface to custom chips 328wsdisplay0 at amidisplaycc0 console ? 329options WSEMUL_VT100 330options FONT_VT220L8x10 331options FONT_VT220ISO8x16 332', ` 333#amidisplaycc0 at mainbus0 # wscons interface to custom chips 334#wsdisplay0 at amidisplaycc0 console ? 335#options WSEMUL_VT100 336#options FONT_VT220L8x10 337#options FONT_VT220ISO8x16 338')m4_dnl 339')m4_dnl 340 341m4_ifdef(`WSCONS_CONFIGURATION', `', `m4_dnl 342m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 343grfcc0 at mainbus0 # custom chips 344grfrt0 at zbus0 # retina II 345')m4_dnl 346grfrh0 at zbus0 # retina III 347m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 348grfcl* at zbus0 # Picasso II/Piccolo/Spectrum 349grful0 at zbus0 # A2410 350grfcv0 at zbus0 # CyberVision 64 351grfet* at zbus0 # Tseng (oMniBus, Domino, Merlin) 352grfcv3d0 at zbus0 # CyberVision 64/3D 353')m4_dnl 354 355m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 356grf0 at grfcc0 357grf1 at grfrt0 358')m4_dnl 359grf2 at grfrh0 360m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 361grf3 at grfcl? 362grf4 at grful0 363grf5 at grfcv0 364grf6 at grfet? 365grf7 at grfcv3d0 366ite0 at grf0 # terminal emulators for grfs 367ite1 at grf1 # terminal emulators for grfs 368')m4_dnl 369ite2 at grf2 # terminal emulators for grfs 370m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 371ite3 at grf3 # terminal emulators for grfs 372ite4 at grf4 # terminal emulators for grfs 373ite5 at grf5 # terminal emulators for grfs 374ite6 at grf6 # terminal emulators for grfs 375ite7 at grf7 # terminal emulators for grfs 376')m4_dnl 377')m4_dnl 378 379msc0 at zbus0 # A2232 MSC multiport serial. 380mfc0 at zbus0 # MultiFaceCard I/O board 381mfcs0 at mfc0 unit 0 # MFC serial 382mfcs1 at mfc0 unit 1 # MFC serial 383#mfcp0 at mfc0 unit 0 # MFC parallel [not available yet] 384#mfc1 at zbus0 # MultiFaceCard 2nd I/O board 385#mfcs2 at mfc1 unit 0 386#mfcs3 at mfc1 unit 1 387#mfcp1 at mfc1 unit 0 388 389hyper* at zbus? # zbus HyperCom3/3+/4/4+ 390#hyper* at mainbus0 # not yet: HyperCom1 + HyperCom3 391com* at hyper? port ? # Hypercom3/4 serial ports 392lpt* at hyper? port ? # Hypercom3+/4+ parallel port 393 394#options IOBZCLOCK=22118400 # default, uncomment the next line 395#options IOBZCLOCK=24000000 # if needed. 396 397iobl* at zbus? # zbus IOBlix 398com* at iobl? port ? # IOBlix serial ports 399lpt* at iobl? port ? # IOBlix parallel ports 400 401 402# 403# Keyboard device. Optionally can attach a wskbd. 404# wskbd works together with a wsdisplay so enable them both if you will. 405# Don't enable wskbd if you use ite. 406# 407# XXX in std.amiga: kbd0 at mainbus0 408m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 409wskbd0 at kbd0 console ? 410', ` 411#wskbd0 at kbd0 console ? 412')m4_dnl 413 414 415m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 416# 417# Amiga Mainboard devices (sans graphics and keyboard) 418# 419 420ser0 at mainbus0 # Amiga onboard serial 421par0 at mainbus0 # Amiga onboard parallel 422ms* at mainbus0 # Amiga mice 423fdc0 at mainbus0 # Amiga FDC 424fd* at fdc0 unit ? # floppy disks on the later 425a34kbbc0 at mainbus0 # A3000/A4000 battery backed clock 426a2kbbc0 at mainbus0 # A2000 battery backed clock 427m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 428aucc* at mainbus0 # Amiga CC audio 429audio* at aucc? 430')m4_dnl 431')m4_dnl 432 433m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 434wsmouse* at ms? 435', ` 436#wsmouse* at ms? 437')m4_dnl 438 439m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl 440# 441# DraCo Mainboard devices (sans keyboard) 442# 443 444drbbc0 at mainbus0 # DraCo battery backed clock 445drsupio0 at mainbus0 # DraCo superio chip 446com* at drsupio? port ? # DraCo serial 447lpt0 at drsupio? port ? # DraCo parallel 448')m4_dnl 449 450# 451# Zorro-II, Zorro-III, DraCo Direct-Bus devices (sans graphics) 452# 453 454m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 455m4_ifdef(`DRACO_CONFIGURATION', `', `m4_dnl 456# Alas, Melody-Z2 dont configure in the DraCo bus. 457melody* at zbus0 # Melody MPEG audio decoder 458audio* at melody? 459')m4_dnl 460 461repulse* at zbus0 # ALiENDESiGN Repulse 462audio* at repulse? 463 464toccata* at zbus0 # MacroSystem GmbH Toccata 465audio* at toccata? 466')m4_dnl 467 468# Ethernet cards: 469le* at zbus0 # A2065, Ameristar, Ariadne 470ne* at zbus0 # AriadneII, X-surf 471ed* at zbus0 # Hydra, ASDG LanRover 472es* at zbus0 # CEI A4066 EthernetPLUS 473qn* at zbus0 # Quicknet 474 475# Arcnet 476bah* at zbus0 # C=/Ameristar A2060 / 560 477 478m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 479# Greater Valley Product Bus 480gvpbus* at zbus0 481 482# scsi stuff, all possible 483gtsc0 at gvpbus? # GVP series II scsi 484scsibus* at gtsc0 485ahsc0 at mainbus0 # A3000 scsi 486scsibus* at ahsc0 487atzsc0 at zbus0 # A2091 scsi 488scsibus* at atzsc0 489wstsc0 at zbus0 # Wordsync II scsi 490scsibus* at wstsc0 491ivsc0 at zbus0 # IVS scsi 492scsibus* at ivsc0 493mlhsc0 at zbus0 # Hacker scsi 494scsibus* at mlhsc0 495otgsc0 at zbus0 # 12 gauge scsi 496scsibus* at otgsc0 497zssc0 at zbus0 # Zeus scsi 498scsibus* at zssc0 499mgnsc0 at zbus0 # Magnum scsi 500scsibus* at mgnsc0 501wesc0 at zbus0 # Warp Engine scsi 502scsibus* at wesc0 503afsc0 at zbus0 # A4091 scsi 504scsibus* at afsc0 505aftsc0 at mainbus0 # A4000T scsi 506scsibus* at aftsc0 507flsc0 at zbus0 # FastlaneZ3 scsi 508scsibus* at flsc0 509bzsc0 at zbus0 # Blizzard 1230 I,II scsi 510scsibus* at bzsc0 511bzivsc0 at zbus0 # Blizzard 12x0 IV scsi 512scsibus* at bzivsc0 513bztzsc0 at zbus0 # Blizzard 2060 scsi 514scsibus* at bztzsc0 515cbsc0 at zbus0 # CyberSCSI I 516scsibus* at cbsc0 517cbiisc0 at zbus0 # CyberSCSI II 518scsibus* at cbiisc0 519cbiiisc0 at zbus0 # Cyberstorm mk.III/Cyberstorm PPC SCSI 520scsibus* at cbiiisc0 521empsc0 at zbus0 # Emplant scsi 522scsibus* at empsc0 523 524wdc0 at mainbus0 # A4000 & A1200 IDE bus 525wdc* at zbus0 # Buddha / Catweasel 526 527atabus* at wdc? channel ? # ATA bus 528wd* at atabus? drive ? # + drives 529atapibus* at atabus? # ATAPI bus 530cd* at atapibus? drive ? # ATAPI CD-ROM drives 531sd* at atapibus? drive ? # ATAPI disk drives 532 533pccard0 at mainbus0 534pcmcia* at pccard0 535com* at pcmcia? function ? # Modems and serial cards 536pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 537aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 538wdc* at pcmcia? function ? 539awi* at pcmcia? function ? # BayStack 650 (802.11FH) 540ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 541mbe* at pcmcia? function ? # MB8696x based Ethernet 542ne* at pcmcia? function ? # NE2000-compatible Ethernet 543sm* at pcmcia? function ? # Megahertz Ethernet 544mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 545com* at mhzc? 546sm* at mhzc? 547 548')m4_dnl 549 550m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl 551drsc0 at mainbus0 # DraCo scsi 552scsibus* at drsc0 553')m4_dnl 554 555 556# each hard drive from low target to high 557# will configure to the next available sd unit number 558sd* at scsibus? target ? lun ? # scsi disks 559st* at scsibus? target ? lun ? # scsi tapes 560cd* at scsibus? target ? lun ? # scsi cds 561ch* at scsibus? target ? lun ? # scsi autochangers 562m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 563ss* at scsibus? target ? lun ? # scsi scanner 564uk* at scsibus? target ? lun ? # scsi unknown 565')m4_dnl 566 567m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 568# 569# accept filters 570pseudo-device accf_data # "dataready" accept filter 571pseudo-device accf_http # "httpready" accept filter 572')m4_dnl 573 574pseudo-device loop # loopback network interface 575pseudo-device sl # SLIP network interfaces 576pseudo-device ppp # PPP network interfaces 577pseudo-device pppoe # PPP over Ethernet (RFC 2516) 578pseudo-device tun # network tunnel line discipline 579pseudo-device tap # virtual Ethernet 580#pseudo-device gre # generic L3 over IP tunnel 581pseudo-device bpfilter # Berkeley packet filter 582#pseudo-device carp # Common Address Redundancy Protocol 583pseudo-device ipfilter # IP Filter package 584pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 585#pseudo-device faith # IPv[46] tcp relay translation i/f 586pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 587pseudo-device vlan # IEEE 802.1q encapsulation 588pseudo-device bridge # simple inter-network bridging 589#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 590pseudo-device agr # IEEE 802.3ad link aggregation 591#pseudo-device pf # PF packet filter 592#pseudo-device pflog # PF log if 593m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl 594#pseudo-device fss 4 # file system snapshot device 595', `m4_dnl 596pseudo-device fss 4 # file system snapshot device 597')m4_dnl 598 599pseudo-device view 4 # views (needed for grfcc) 600m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl 601pseudo-device pty 2 # pseudo-terminals 602', `m4_dnl 603pseudo-device pty # pseudo-terminals 604')m4_dnl 605pseudo-device clockctl # user control of clock subsystem 606 607m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 608pseudo-device wsfont # wsfont(4) dynamic font loading support 609pseudo-device wsmux # mouse & keyboard multiplexor 610', `m4_dnl 611#pseudo-device wsfont # wsfont(4) dynamic font loading support 612#pseudo-device wsmux # mouse & keyboard multiplexor 613')m4_dnl 614 615pseudo-device vnd # vnode pseudo-disks 616#options VND_COMPRESSION # compressed vnd(4) 617pseudo-device ccd 4 # concatenated disk devices 618#pseudo-device cgd 4 # cryptographic disk devices 619pseudo-device raid 8 # RAIDframe disk driver 620options RAID_AUTOCONFIG # auto-configuration of RAID components 621# Options to enable various other RAIDframe RAID types. 622# options RF_INCLUDE_EVENODD=1 623# options RF_INCLUDE_RAID5_RS=1 624# options RF_INCLUDE_PARITYLOGGING=1 625# options RF_INCLUDE_CHAINDECLUSTER=1 626# options RF_INCLUDE_INTERDECLUSTER=1 627# options RF_INCLUDE_PARITY_DECLUSTERING=1 628# options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 629 630pseudo-device rnd # /dev/random and in-kernel generator 631#options RND_COM # use "com" randomness as well (BROKEN) 632 633m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 634pseudo-device ksyms # /dev/ksyms (kernel symbols) 635pseudo-device nsmb # experimental - SMB requester 636')m4_dnl 637 638# Veriexec 639# 640# a pseudo device needed for veriexec 641#pseudo-device veriexec 1 642# 643# Uncomment the fingerprint methods below that are desired. Note that 644# removing fingerprint methods will have almost no impact on the kernel 645# code size. 646# 647#options VERIFIED_EXEC_FP_RMD160 648#options VERIFIED_EXEC_FP_SHA256 649#options VERIFIED_EXEC_FP_SHA384 650#options VERIFIED_EXEC_FP_SHA512 651#options VERIFIED_EXEC_FP_SHA1 652#options VERIFIED_EXEC_FP_MD5 653 654config netbsd root on ? type ? 655