GENERIC.in revision 1.47
1# $NetBSD: GENERIC.in,v 1.47 2005/12/07 12:40:46 tsutsui 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.47 $" 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 111options NS # XNS 112#options NSIP # XNS tunneling over IP 113options ISO,TPIP # OSI 114#options EON # OSI tunneling over IP 115options CCITT,LLC,HDLC # X.25 116options NETATALK # AppleTalk networking protocols 117#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 118')m4_dnl 119 120options PPP_BSDCOMP # BSD-Compress compression support for PPP 121options PPP_DEFLATE # Deflate compression support for PPP 122options PPP_FILTER # Active filter support for PPP (requires bpf) 123options PFIL_HOOKS # pfil(9) packet filter hooks 124options IPFILTER_LOG # ipmon(8) log support 125#options IPFILTER_DEFAULT_BLOCK # block all packets by default 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# Filesystems 141file-system FFS # Berkeley fast file system 142file-system EXT2FS # second extended file system (linux) 143#file-system LFS # log-structured filesystem (experimental) 144 145m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 146file-system MFS # Memory based filesystem 147')m4_dnl 148 149file-system NFS # Network File System client side code 150file-system ADOSFS # AmigaDOS file system 151file-system CD9660 # ISO 9660 + Rock Ridge filesystem 152file-system MSDOSFS # MS-DOS filesystem 153 154file-system KERNFS # kernel data-structure filesystem 155 156m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 157file-system FDESC # user file descriptor filesystem 158file-system NULLFS # loopback filesystem 159file-system OVERLAY # overlay filesystem 160#file-system PORTAL # Portal filesystem 161file-system PROCFS # /proc filesystem 162file-system UMAPFS # NULLFS + uid and gid remapping 163file-system UNION # union filesystem 164file-system SMBFS # experimental - CIFS; also needs nsmb (below) 165file-system PTYFS # /dev/pts/N support 166#file-system TMPFS # experimental - Efficient memory file-system 167')m4_dnl 168 169# Filesystem options 170 171#options FFS_EI # FFS Endian Independant support 172 173m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 174options QUOTA # User and group quotas in FFS 175options SOFTDEP # FFS soft updates support. 176#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 177options NFSSERVER # Network File System server side code 178#options FFS_NO_SNAPSHOT # No FFS snapshot support 179')m4_dnl 180 181#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 182 # immutable) behave as system flags. 183 184# 185# Compatibility options for various existing systems 186# 187 188m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 189#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 190options COMPAT_43 # compatibility with 4.3BSD interfaces 191options COMPAT_09 # compatibility with NetBSD 0.9 192options COMPAT_10 # compatibility with NetBSD 1.0 193options COMPAT_12 # compatibility with NetBSD 1.2 194options COMPAT_13 # compatibility with NetBSD 1.3 195options COMPAT_14 # compatibility with NetBSD 1.4 196options COMPAT_15 # compatibility with NetBSD 1.5 197options COMPAT_16 # compatibility with NetBSD 1.6 198options COMPAT_20 # compatibility with NetBSD 2.0 199options COMPAT_30 # NetBSD 3.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 217#options SEMMNI=10 # number of semaphore identifiers 218#options SEMMNS=60 # number of semaphores in system 219#options SEMUME=10 # max number of undo entries per process 220#options SEMMNU=30 # number of undo structures in system 221options P1003_1B_SEMAPHORE # p1003.1b semaphore support 222')m4_dnl 223 224# 225# Support for various kernel options 226# 227 228m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 229options KTRACE # system call tracing support 230options SYSTRACE # system call vetting via systrace(1) 231options LKM # Loadable kernel modules 232')m4_dnl 233#options INSECURE # disable kernel security levels 234options SCSIVERBOSE # human readable SCSI error messages 235options USERCONF # userconf(4) support 236m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl 237options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 238options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 239options MALLOC_NOINLINE # Not inlining MALLOC saves memory 240', `m4_dnl 241options NTP # NTP phase/frequency locked loop 242#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 243')m4_dnl 244 245# Enable experimental buffer queue strategy for better responsiveness under 246# high disk I/O load. Use it with caution - it's not proven to be stable yet. 247#options BUFQ_READPRIO 248#options BUFQ_PRIOCSCAN 249 250# 251# Misc. debugging options 252# 253options DDB # Kernel debugger 254#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 255#options DIAGNOSTIC # Extra kernel sanity checks 256#options DEBUG # Enable misc. kernel debugging code 257#options SYSCALL_DEBUG # debug all syscalls. 258#options SCSIDEBUG # Add SCSI debugging statements 259#options PANICBUTTON # Forced crash via keypress (?) 260 261# 262# Amiga specific options 263# 264#options LIMITMEM=24 # Do not use more than LIMITMEM MB of the 265 # first bank of RAM. (default: unlimited) 266#options NKPTADD=4 # set this for 4 additional KPT pages 267#options NKPTADDSHIFT=24 # set this for 1 additional KPT page 268 # per 16 MB (1<<24 bytes) of RAM 269 # uncomment and decrease this, or uncomment and 270 # increase NKPTADD if you get "out of PT pages" 271 # panics. 272 273# ATTENTION: There is NO WARRANTY AT ALL that the sync will be complete 274# before the 10 secondinterval ends, or that KBDRESET does work at all. 275#options KBDRESET # sync on Ctrl-Amiga-Amiga 276 277# These options improve performance with the built-in serial port 278# on slower Amigas. Try the larger buffers first then lev6_defer. 279#options SERIBUF_SIZE=4096 280#options SEROBUF_SIZE=32 281#options LEV6_DEFER # defers l6 to l4 (below serial l5) 282 283m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 284#options DEVRELOAD # implement /dev/reload 285# # currently only works for a.out kernels 286')m4_dnl 287 288options RETINACONSOLE # enable code to allow retina to be console 289m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 290options ULOWELLCONSOLE # enable code to allow a2410 to be console 291options CL5426CONSOLE # Cirrus console 292options CV64CONSOLE # CyberVision console 293options TSENGCONSOLE # Tseng console 294options CV3DCONSOLE # CyberVision 64/3D console 295 296options GRF_ECS # Enhanced Chip Set 297options GRF_NTSC # NTSC 298options GRF_PAL # PAL 299options GRF_A2024 # Support for the A2024 300options GRF_AGA # AGA Chip Set 301options GRF_AGA_VGA # AGA VGAONLY timing 302options GRF_SUPER72 # AGA Super-72 303')m4_dnl 304#options KFONT_8X11 # 8x11 font 305 306# select a font for the console according to the character set and keymap 307# you want to use 308options KFONT_CONS_ISO8859_1 309#options KFONT_CONS_ISO8859_2 310 311# This is how you would tell the kernel the A2410 oscillator frequencies: 312# The used frequencies are the defaults, and do not need option setting 313#options ULOWELL_OSC1=36000000 314#options ULOWELL_OSC2=66667000 315 316# This is how you specify the blitting speed, higher values may speed up blits 317# a littel bit. If you raise this value too much some trash may appear. 318# the commented version is the default. 319#options RH_MEMCLK=61000000 320# this option enables the 64 bit sprite which does not work 321# for quite a few people. E.g. The cursor sprite will turn to a block 322# when moved to the top of the screen in X. 323#options RH_64BIT_SPRITE 324# enables fast scroll code appears to now work on 040 systems. 325#options RETINA_SPEED_HACK 326# enables the Hardwarecursor which does not work on some systems. 327#options RH_HARDWARECURSOR 328 329m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 330# wscons aware interface to amiga custom chips. 331# If you enable it enable also wskbd. 332# 333m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 334amidisplaycc0 at mainbus0 # wscons interface to custom chips 335wsdisplay0 at amidisplaycc0 console ? 336options WSEMUL_VT100 337options FONT_VT220L8x10 338options FONT_VT220ISO8x16 339', ` 340#amidisplaycc0 at mainbus0 # wscons interface to custom chips 341#wsdisplay0 at amidisplaycc0 console ? 342#options WSEMUL_VT100 343#options FONT_VT220L8x10 344#options FONT_VT220ISO8x16 345')m4_dnl 346')m4_dnl 347 348m4_ifdef(`WSCONS_CONFIGURATION', `', `m4_dnl 349m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 350grfcc0 at mainbus0 # custom chips 351grfrt0 at zbus0 # retina II 352')m4_dnl 353grfrh0 at zbus0 # retina III 354m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 355grfcl* at zbus0 # Picasso II/Piccolo/Spectrum 356grful0 at zbus0 # A2410 357grfcv0 at zbus0 # CyberVision 64 358grfet* at zbus0 # Tseng (oMniBus, Domino, Merlin) 359grfcv3d0 at zbus0 # CyberVision 64/3D 360')m4_dnl 361 362m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 363grf0 at grfcc0 364grf1 at grfrt0 365')m4_dnl 366grf2 at grfrh0 367m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 368grf3 at grfcl? 369grf4 at grful0 370grf5 at grfcv0 371grf6 at grfet? 372grf7 at grfcv3d0 373ite0 at grf0 # terminal emulators for grfs 374ite1 at grf1 # terminal emulators for grfs 375')m4_dnl 376ite2 at grf2 # terminal emulators for grfs 377m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 378ite3 at grf3 # terminal emulators for grfs 379ite4 at grf4 # terminal emulators for grfs 380ite5 at grf5 # terminal emulators for grfs 381ite6 at grf6 # terminal emulators for grfs 382ite7 at grf7 # terminal emulators for grfs 383')m4_dnl 384')m4_dnl 385 386msc0 at zbus0 # A2232 MSC multiport serial. 387mfc0 at zbus0 # MultiFaceCard I/O board 388mfcs0 at mfc0 unit 0 # MFC serial 389mfcs1 at mfc0 unit 1 # MFC serial 390#mfcp0 at mfc0 unit 0 # MFC parallel [not available yet] 391#mfc1 at zbus0 # MultiFaceCard 2nd I/O board 392#mfcs2 at mfc1 unit 0 393#mfcs3 at mfc1 unit 1 394#mfcp1 at mfc1 unit 0 395 396hyper* at zbus? # zbus HyperCom3/3+/4/4+ 397#hyper* at mainbus0 # not yet: HyperCom1 + HyperCom3 398com* at hyper? port ? # Hypercom3/4 serial ports 399lpt* at hyper? port ? # Hypercom3+/4+ parallel port 400 401#options IOBZCLOCK=22118400 # default, uncomment the next line 402#options IOBZCLOCK=24000000 # if needed. 403 404iobl* at zbus? # zbus IOBlix 405com* at iobl? port ? # IOBlix serial ports 406lpt* at iobl? port ? # IOBlix parallel ports 407 408 409# 410# Keyboard device. Optionally can attach a wskbd. 411# wskbd works together with a wsdisplay so enable them both if you will. 412# Don't enable wskbd if you use ite. 413# 414# XXX in std.amiga: kbd0 at mainbus0 415m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 416wskbd0 at kbd0 console ? 417', ` 418#wskbd0 at kbd0 console ? 419')m4_dnl 420 421 422m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 423# 424# Amiga Mainboard devices (sans graphics and keyboard) 425# 426 427ser0 at mainbus0 # Amiga onboard serial 428par0 at mainbus0 # Amiga onboard parallel 429ms* at mainbus0 # Amiga mice 430fdc0 at mainbus0 # Amiga FDC 431fd* at fdc0 unit ? # floppy disks on the later 432a34kbbc0 at mainbus0 # A3000/A4000 battery backed clock 433a2kbbc0 at mainbus0 # A2000 battery backed clock 434m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 435aucc* at mainbus0 # Amiga CC audio 436audio* at aucc? 437')m4_dnl 438')m4_dnl 439 440m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 441wsmouse* at ms? 442', ` 443#wsmouse* at ms? 444')m4_dnl 445 446m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl 447# 448# DraCo Mainboard devices (sans keyboard) 449# 450 451drbbc0 at mainbus0 # DraCo battery backed clock 452drsupio0 at mainbus0 # DraCo superio chip 453com* at drsupio? port ? # DraCo serial 454lpt0 at drsupio? port ? # DraCo parallel 455')m4_dnl 456 457# 458# Zorro-II, Zorro-III, DraCo Direct-Bus devices (sans graphics) 459# 460 461m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 462m4_ifdef(`DRACO_CONFIGURATION', `', `m4_dnl 463# Alas, Melody-Z2 dont configure in the DraCo bus. 464melody* at zbus0 # Melody MPEG audio decoder 465audio* at melody? 466')m4_dnl 467 468repulse* at zbus0 # ALiENDESiGN Repulse 469audio* at repulse? 470 471toccata* at zbus0 # MacroSystem GmbH Toccata 472audio* at toccata? 473')m4_dnl 474 475# Ethernet cards: 476le* at zbus0 # A2065, Ameristar, Ariadne 477ne* at zbus0 # AriadneII, X-surf 478ed* at zbus0 # Hydra, ASDG LanRover 479es* at zbus0 # CEI A4066 EthernetPLUS 480qn* at zbus0 # Quicknet 481 482# Arcnet 483bah* at zbus0 # C=/Ameristar A2060 / 560 484 485m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl 486# Greater Valley Product Bus 487gvpbus* at zbus0 488 489# scsi stuff, all possible 490gtsc0 at gvpbus? # GVP series II scsi 491scsibus* at gtsc0 492ahsc0 at mainbus0 # A3000 scsi 493scsibus* at ahsc0 494atzsc0 at zbus0 # A2091 scsi 495scsibus* at atzsc0 496wstsc0 at zbus0 # Wordsync II scsi 497scsibus* at wstsc0 498ivsc0 at zbus0 # IVS scsi 499scsibus* at ivsc0 500mlhsc0 at zbus0 # Hacker scsi 501scsibus* at mlhsc0 502otgsc0 at zbus0 # 12 gauge scsi 503scsibus* at otgsc0 504zssc0 at zbus0 # Zeus scsi 505scsibus* at zssc0 506mgnsc0 at zbus0 # Magnum scsi 507scsibus* at mgnsc0 508wesc0 at zbus0 # Warp Engine scsi 509scsibus* at wesc0 510afsc0 at zbus0 # A4091 scsi 511scsibus* at afsc0 512aftsc0 at mainbus0 # A4000T scsi 513scsibus* at aftsc0 514flsc0 at zbus0 # FastlaneZ3 scsi 515scsibus* at flsc0 516bzsc0 at zbus0 # Blizzard 1230 I,II scsi 517scsibus* at bzsc0 518bzivsc0 at zbus0 # Blizzard 12x0 IV scsi 519scsibus* at bzivsc0 520bztzsc0 at zbus0 # Blizzard 2060 scsi 521scsibus* at bztzsc0 522cbsc0 at zbus0 # CyberSCSI I 523scsibus* at cbsc0 524cbiisc0 at zbus0 # CyberSCSI II 525scsibus* at cbiisc0 526cbiiisc0 at zbus0 # Cyberstorm mk.III/Cyberstorm PPC SCSI 527scsibus* at cbiiisc0 528empsc0 at zbus0 # Emplant scsi 529scsibus* at empsc0 530 531wdc0 at mainbus0 # A4000 & A1200 IDE bus 532atabus* at wdc? channel ? # ATA bus 533wd* at atabus? drive ? # + drives 534atapibus* at atabus? # ATAPI bus 535cd* at atapibus? drive ? # ATAPI CD-ROM drives 536sd* at atapibus? drive ? # ATAPI disk drives 537 538pccard0 at mainbus0 539pcmcia* at pccard0 540com* at pcmcia? function ? # Modems and serial cards 541pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 542aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 543wdc* at pcmcia? function ? 544awi* at pcmcia? function ? # BayStack 650 (802.11FH) 545ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 546mbe* at pcmcia? function ? # MB8696x based Ethernet 547ne* at pcmcia? function ? # NE2000-compatible Ethernet 548sm* at pcmcia? function ? # Megahertz Ethernet 549mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 550com* at mhzc? 551sm* at mhzc? 552 553')m4_dnl 554 555m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl 556drsc0 at mainbus0 # DraCo scsi 557scsibus* at drsc0 558')m4_dnl 559 560 561# each hard drive from low target to high 562# will configure to the next available sd unit number 563sd* at scsibus? target ? lun ? # scsi disks 564st* at scsibus? target ? lun ? # scsi tapes 565cd* at scsibus? target ? lun ? # scsi cds 566ch* at scsibus? target ? lun ? # scsi autochangers 567m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 568ss* at scsibus? target ? lun ? # scsi scanner 569uk* at scsibus? target ? lun ? # scsi unknown 570')m4_dnl 571 572pseudo-device loop # loopback network interface 573pseudo-device sl 1 # SLIP network interfaces 574pseudo-device ppp 1 # PPP network interfaces 575pseudo-device pppoe # PPP over Ethernet (RFC 2516) 576pseudo-device tun 1 # network tunnel line discipline 577pseudo-device tap # virtual Ethernet 578#pseudo-device gre 2 # generic L3 over IP tunnel 579pseudo-device bpfilter 16 # Berkeley packet filter 580pseudo-device ipfilter # IP Filter package 581pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 582#pseudo-device faith 1 # IPv[46] tcp relay translation i/f 583#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 584pseudo-device vlan # IEEE 802.1q encapsulation 585pseudo-device bridge # simple inter-network bridging 586#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 587#pseudo-device pf # PF packet filter 588#pseudo-device pflog # PF log if 589m4_ifdef(`GENERIC_CONFIGURATION', `m4_dnl 590pseudo-device fss 4 # file system snapshot device 591', `m4_dnl 592#pseudo-device fss 4 # file system snapshot device 593')m4_dnl 594 595pseudo-device view 4 # views (needed for grfcc) 596m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl 597pseudo-device pty 2 # pseudo-terminals 598', `m4_dnl 599pseudo-device pty # pseudo-terminals 600')m4_dnl 601pseudo-device clockctl # user control of clock subsystem 602 603m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl 604pseudo-device wsfont # wsfont(4) dynamic font loading support 605pseudo-device wsmux # mouse & keyboard multiplexor 606', `m4_dnl 607#pseudo-device wsfont # wsfont(4) dynamic font loading support 608#pseudo-device wsmux # mouse & keyboard multiplexor 609')m4_dnl 610 611pseudo-device vnd 4 # vnode pseudo-disks 612#options VND_COMPRESSION # compressed vnd(4) 613pseudo-device ccd 4 # concatenated disk devices 614#pseudo-device cgd 4 # cryptographic disk devices 615pseudo-device raid 8 # RAIDframe disk driver 616options RAID_AUTOCONFIG # auto-configuration of RAID components 617# Options to enable various other RAIDframe RAID types. 618# options RF_INCLUDE_EVENODD=1 619# options RF_INCLUDE_RAID5_RS=1 620# options RF_INCLUDE_PARITYLOGGING=1 621# options RF_INCLUDE_CHAINDECLUSTER=1 622# options RF_INCLUDE_INTERDECLUSTER=1 623# options RF_INCLUDE_PARITY_DECLUSTERING=1 624# options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 625 626pseudo-device rnd # /dev/random and in-kernel generator 627#options RND_COM # use "com" randomness as well (BROKEN) 628 629m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl 630pseudo-device ksyms # /dev/ksyms (kernel symbols) 631pseudo-device nsmb # experimental - SMB requester 632')m4_dnl 633 634config netbsd root on ? type ? 635