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