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