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