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