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