Annotation of elwix/config/ELWIX_i386, revision 1.6

1.6     ! misho       1: # $Id: ELWIX_i386,v 1.5.2.6 2016/12/23 08:32:23 misho Exp $
        !             2: # $FreeBSD: head/sys/i386/conf/GENERIC 310177 2016-12-16 21:10:37Z jhb $
1.2       misho       3: 
                      4: cpu            I486_CPU
                      5: cpu            I586_CPU
                      6: cpu            I686_CPU
                      7: ident          ELWIX_i386
                      8: 
1.4       misho       9: #include               DEFAULTS
1.2       misho      10: 
                     11: hints          "ELWIX_i386.hints"      # Default places to look for devices.
                     12: 
                     13: options        INIT_PATH=/sbin/initx:/sbin/init
                     14: 
                     15: makeoptions    DEBUG=-g                # Build kernel with gdb(1) debug symbols
                     16: #makeoptions   WITH_CTF=1              # Run ctfconvert(1) for DTrace support
                     17: 
                     18: options        SCHED_ULE               # ULE scheduler
                     19: options        PREEMPTION              # Enable kernel thread preemption
                     20: options        INET                    # InterNETworking
                     21: options        INET6                   # IPv6 communications protocols
1.6     ! misho      22: options        IPSEC                   # IP (v4/v6) security
        !            23: options        TCP_HHOOK               # hhook(9) framework for TCP
1.2       misho      24: options        TCP_OFFLOAD             # TCP offload
                     25: options        SCTP                    # Stream Control Transmission Protocol
                     26: options        FFS                     # Berkeley Fast Filesystem
                     27: options        SOFTUPDATES             # Enable FFS soft updates support
                     28: options        UFS_ACL                 # Support for access control lists
                     29: options        UFS_DIRHASH             # Improve performance on big directories
                     30: options        UFS_GJOURNAL            # Enable gjournal-based UFS journaling
                     31: options        QUOTA                   # Enable disk quotas for UFS
1.3       misho      32: options        MD_ROOT                 # MD is a potential root device
1.6     ! misho      33: options        NFSCL                   # Network Filesystem Client
        !            34: options        NFSD                    # Network Filesystem Server
1.2       misho      35: options        NFSLOCKD                # Network Lock Manager
                     36: options        NFS_ROOT                # NFS usable as /, requires NFSCL
                     37: options        MSDOSFS                 # MSDOS Filesystem
                     38: options        CD9660                  # ISO 9660 Filesystem
                     39: options        PROCFS                  # Process filesystem (requires PSEUDOFS)
                     40: options        PSEUDOFS                # Pseudo-filesystem framework
                     41: options        GEOM_PART_GPT           # GUID Partition Tables.
                     42: options        GEOM_RAID               # Soft RAID functionality.
                     43: options        GEOM_LABEL              # Provides labelization
1.6     ! misho      44: #options       GEOM_GATE
        !            45: options        GEOM_MAP
1.2       misho      46: options        GEOM_UZIP
                     47: #device                geom_redboot
                     48: device         geom_map        # to get access to the SPI flash partitions
1.6     ! misho      49: device         geom_uzip       # compressed in-memory filesystem support
1.2       misho      50: options         GEOM_ELI
                     51: options         GEOM_MIRROR
                     52: options                GEOM_CONCAT
                     53: options                GEOM_STRIPE
                     54: options                GEOM_VIRSTOR
                     55: options                GEOM_CACHE
                     56: options                GEOM_MULTIPATH
1.6     ! misho      57: #options       GEOM_LINUX_LVM          # Linux LVM2 volumes
1.2       misho      58: options        COMPAT_43TTY            # BSD 4.3 TTY compat (sgtty)
                     59: options        COMPAT_FREEBSD4         # Compatible with FreeBSD4
                     60: options        COMPAT_FREEBSD5         # Compatible with FreeBSD5
                     61: options        COMPAT_FREEBSD6         # Compatible with FreeBSD6
                     62: options        COMPAT_FREEBSD7         # Compatible with FreeBSD7
1.6     ! misho      63: options        COMPAT_FREEBSD9         # Compatible with FreeBSD9
        !            64: options        COMPAT_FREEBSD10        # Compatible with FreeBSD10
        !            65: options        COMPAT_FREEBSD11        # Compatible with FreeBSD11
1.2       misho      66: options        SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
                     67: options        KTRACE                  # ktrace(1) support
                     68: options        STACK                   # stack(9) support
                     69: options        SYSVSHM                 # SYSV-style shared memory
                     70: options        SYSVMSG                 # SYSV-style message queues
                     71: options        SYSVSEM                 # SYSV-style semaphores
                     72: options        P1003_1B_MQUEUE
                     73: options        P1003_1B_SEMAPHORES     # POSIX-style semaphores
                     74: options        _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
                     75: options        PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
                     76: options        KBD_INSTALL_CDEV        # install a CDEV entry in /dev
                     77: options        HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
                     78: options        AUDIT                   # Security event auditing
                     79: options        CAPABILITY_MODE         # Capsicum capability mode
                     80: options        CAPABILITIES            # Capsicum capabilities
                     81: options        MAC                     # TrustedBSD MAC Framework
                     82: #options       KDTRACE_HOOKS           # Kernel DTrace hooks
                     83: #options       DDB_CTF                 # Kernel ELF linker loads CTF data
1.6     ! misho      84: options        INCLUDE_CONFIG_FILE     # Include this file in kernel
1.2       misho      85: options        FLOWTABLE               # per-cpu routing cache
1.6     ! misho      86: options        RACCT                   # Resource accounting framework
        !            87: options        RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
        !            88: options        RCTL                    # Resource limits
1.2       misho      89: 
                     90: # Debugging support.  Always need this:
                     91: #options       KDB                     # Enable kernel debugger support.
                     92: #options       KDB_TRACE               # Print a stack trace for a panic.
1.4       misho      93: # For full debugger support use (turn off in stable branch):
1.2       misho      94: #options       DDB                     # Support DDB.
                     95: #options       GDB                     # Support remote GDB.
                     96: #options       DEADLKRES               # Enable the deadlock resolver
                     97: #options       INVARIANTS              # Enable calls of extra sanity checking
                     98: #options       INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
                     99: #options       WITNESS                 # Enable checks to detect deadlocks and cycles
                    100: #options       WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
                    101: #options       MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
                    102: 
                    103: # To make an SMP kernel, the next two lines are needed
                    104: options        SMP                     # Symmetric MultiProcessor Kernel
                    105: device         apic                    # I/O APIC
                    106: 
                    107: # CPU frequency control
                    108: device         cpufreq
                    109: 
                    110: # Bus support.
                    111: device         acpi
                    112: device         pci
1.6     ! misho     113: options        PCI_HP                  # PCI-Express native HotPlug
        !           114: options                PCI_IOV                 # PCI SR-IOV support
1.2       misho     115: 
                    116: # Floppy drives
                    117: device         fdc
                    118: 
                    119: # ATA controllers
1.6     ! misho     120: device         ahci                    # AHCI-compatible SATA controllers
        !           121: device         ata                     # Legacy ATA/SATA controllers
        !           122: device         mvs                     # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
        !           123: device         siis                    # SiliconImage SiI3124/SiI3132/SiI3531 SATA
1.2       misho     124: 
                    125: # SCSI Controllers
1.6     ! misho     126: device         ahc                     # AHA2940 and onboard AIC7xxx devices
1.2       misho     127: options        AHC_REG_PRETTY_PRINT    # Print register bitfields in debug
                    128:                                        # output.  Adds ~128k to driver.
1.6     ! misho     129: device         ahd                     # AHA39320/29320 and onboard AIC79xx devices
1.2       misho     130: options        AHD_REG_PRETTY_PRINT    # Print register bitfields in debug
                    131:                                        # output.  Adds ~215k to driver.
1.6     ! misho     132: device         esp                     # AMD Am53C974 (Tekram DC-390(T))
        !           133: device         hptiop                  # Highpoint RocketRaid 3xxx series
        !           134: device         isp                     # Qlogic family
        !           135: #device                ispfw                   # Firmware for QLogic HBAs- normally a module
        !           136: device         mpt                     # LSI-Logic MPT-Fusion
        !           137: device         mps                     # LSI-Logic MPT-Fusion 2
        !           138: device         mpr                     # LSI-Logic MPT-Fusion 3
        !           139: #device                ncr                     # NCR/Symbios Logic
        !           140: device         sym                     # NCR/Symbios Logic (newer chipsets + those of `ncr')
        !           141: device         trm                     # Tekram DC395U/UW/F DC315U adapters
        !           142: 
        !           143: device         adv                     # Advansys SCSI adapters
        !           144: device         adw                     # Advansys wide SCSI adapters
        !           145: device         aha                     # Adaptec 154x SCSI adapters
        !           146: device         aic                     # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
        !           147: device         bt                      # Buslogic/Mylex MultiMaster SCSI adapters
        !           148: 
        !           149: device         ncv                     # NCR 53C500
        !           150: device         nsp                     # Workbit Ninja SCSI-3
        !           151: device         stg                     # TMC 18C30/18C50
        !           152: device         isci                    # Intel C600 SAS controller
1.2       misho     153: 
                    154: # ATA/SCSI peripherals
1.6     ! misho     155: device         scbus                   # SCSI bus (required for ATA/SCSI)
        !           156: device         ch                      # SCSI media changers
        !           157: device         da                      # Direct Access (disks)
        !           158: device         sa                      # Sequential Access (tape etc)
        !           159: device         cd                      # CD
        !           160: device         pass                    # Passthrough device (direct ATA/SCSI access)
        !           161: device         ses                     # Enclosure Services (SES and SAF-TE)
        !           162: #device                ctl                     # CAM Target Layer
1.2       misho     163: 
                    164: # RAID controllers interfaced to the SCSI subsystem
1.6     ! misho     165: device         amr                     # AMI MegaRAID
        !           166: device         arcmsr                  # Areca SATA II RAID
        !           167: device         ciss                    # Compaq Smart RAID 5*
        !           168: device         dpt                     # DPT Smartcache III, IV - See NOTES for options
        !           169: device         hptmv                   # Highpoint RocketRAID 182x
        !           170: device         hptnr                   # Highpoint DC7280, R750
        !           171: device         hptrr                   # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
        !           172: device         hpt27xx                 # Highpoint RocketRAID 27xx
        !           173: device         iir                     # Intel Integrated RAID
        !           174: device         ips                     # IBM (Adaptec) ServeRAID
        !           175: device         mly                     # Mylex AcceleRAID/eXtremeRAID
        !           176: device         twa                     # 3ware 9000 series PATA/SATA RAID
        !           177: device         tws                     # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
1.2       misho     178: 
                    179: # RAID controllers
1.6     ! misho     180: device         aac                     # Adaptec FSA RAID
        !           181: device         aacp                    # SCSI passthrough for aac (requires CAM)
        !           182: device         aacraid                 # Adaptec by PMC RAID
        !           183: device         ida                     # Compaq Smart RAID
        !           184: device         mfi                     # LSI MegaRAID SAS
        !           185: device         mlx                     # Mylex DAC960 family
        !           186: device         mrsas                   # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
        !           187: device         pmspcv                  # PMC-Sierra SAS/SATA Controller driver
        !           188: device         pst                     # Promise Supertrak SX6000
        !           189: device         twe                     # 3ware ATA RAID
        !           190: 
        !           191: # NVM Express (NVMe) support
        !           192: device         nvme                    # base NVMe driver
        !           193: device         nvd                     # expose NVMe namespace as disks, depends on nvme
1.2       misho     194: 
                    195: # atkbdc0 controls both the keyboard and the PS/2 mouse
1.6     ! misho     196: device         atkbdc                  # AT keyboard controller
        !           197: device         atkbd                   # AT keyboard
        !           198: device         psm                     # PS/2 mouse
1.2       misho     199: 
1.6     ! misho     200: device         kbdmux                  # keyboard multiplexer
1.2       misho     201: 
1.6     ! misho     202: device         vga                     # VGA video card driver
        !           203: options        VESA                    # Add support for VESA BIOS Extensions (VBE)
1.2       misho     204: 
1.6     ! misho     205: device         splash                  # Splash screen and screen saver support
1.2       misho     206: 
                    207: # syscons is the default console driver, resembling an SCO console
                    208: device         sc
1.6     ! misho     209: options        SC_PIXEL_MODE           # add support for the raster text mode
1.2       misho     210: 
1.5       misho     211: # vt is the new video console driver
                    212: device         vt
                    213: device         vt_vga
                    214: 
                    215: device         agp                     # support several AGP chipsets
1.2       misho     216: 
                    217: # Power management support (see NOTES for more options)
                    218: #device                apm
                    219: # Add suspend/resume support for the i8254.
                    220: device         pmtimer
                    221: 
                    222: # PCCARD (PCMCIA) support
                    223: # PCMCIA and cardbus bridge support
1.6     ! misho     224: device         cbb                     # cardbus (yenta) bridge
        !           225: device         pccard                  # PC Card (16-bit) bus
        !           226: device         cardbus                 # CardBus (32-bit) bus
1.2       misho     227: 
                    228: # Serial (COM) ports
1.6     ! misho     229: device         uart                    # Generic UART driver
1.2       misho     230: 
                    231: # Parallel port
                    232: device         ppc
1.6     ! misho     233: device         ppbus                   # Parallel port bus (required)
        !           234: device         lpt                     # Printer
        !           235: device         ppi                     # Parallel port interface device
        !           236: #device                vpo                     # Requires scbus and da
1.2       misho     237: 
1.6     ! misho     238: device         puc                     # Multi I/O cards and multi-channel UARTs
1.2       misho     239: 
                    240: # PCI Ethernet NICs.
1.6     ! misho     241: device         bxe                     # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
        !           242: device         de                      # DEC/Intel DC21x4x (``Tulip'')
        !           243: device         em                      # Intel PRO/1000 Gigabit Ethernet Family
        !           244: device         igb                     # Intel PRO/1000 PCIE Server Gigabit Family
        !           245: device         ixgb                    # Intel PRO/10GbE Ethernet Card
        !           246: device         le                      # AMD Am7900 LANCE and Am79C9xx PCnet
        !           247: device         ti                      # Alteon Networks Tigon I/II gigabit Ethernet
        !           248: device         txp                     # 3Com 3cR990 (``Typhoon'')
        !           249: device         vx                      # 3Com 3c590, 3c595 (``Vortex'')
1.2       misho     250: #device                vxge            # Exar/Neterion XFrame 3100 10GbE
                    251: #device                mxge            # Myricom Myri-10G 10GbE NIC
                    252: #device                nxge            # Neterion Xframe 10GbE Server/Storage Adapter
                    253: #device                ixgbe           # Intel Pro/10Gbe PCIE Ethernet
                    254: #device                cxgbe           # Chelsio T4 10GbE PCIe adapter
                    255: #device                cxgb            # Chelsio T3 10 Gigabit Ethernet
                    256: #device                cxgb_t3fw       # Chelsio T3 10 Gigabit Ethernet firmware
                    257: #device                my              # Myson Fast Ethernet (MTD80X, MTD89X)
                    258: 
                    259: # PCI Ethernet NICs that use the common MII bus controller code.
                    260: # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
1.6     ! misho     261: device         miibus                  # MII bus support
        !           262: device         ae                      # Attansic/Atheros L2 FastEthernet
        !           263: device         age                     # Attansic/Atheros L1 Gigabit Ethernet
        !           264: device         alc                     # Atheros AR8131/AR8132 Ethernet
        !           265: device         ale                     # Atheros AR8121/AR8113/AR8114 Ethernet
        !           266: device         bce                     # Broadcom BCM5706/BCM5708 Gigabit Ethernet
        !           267: device         bfe                     # Broadcom BCM440x 10/100 Ethernet
        !           268: device         bge                     # Broadcom BCM570xx Gigabit Ethernet
        !           269: #device                cas                     # Sun Cassini/Cassini+ and NS DP83065 Saturn
        !           270: device         dc                      # DEC/Intel 21143 and various workalikes
        !           271: device         et                      # Agere ET1310 10/100/Gigabit Ethernet
        !           272: device         fxp                     # Intel EtherExpress PRO/100B (82557, 82558)
        !           273: #device                gem                     # Sun GEM/Sun ERI/Apple GMAC
        !           274: #device                hme                     # Sun HME (Happy Meal Ethernet)
        !           275: device         jme                     # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
        !           276: device         lge                     # Level 1 LXT1001 gigabit Ethernet
        !           277: device         msk                     # Marvell/SysKonnect Yukon II Gigabit Ethernet
        !           278: device         nfe                     # nVidia nForce MCP on-board Ethernet
        !           279: device         nge                     # NatSemi DP83820 gigabit Ethernet
        !           280: device         pcn                     # AMD Am79C97x PCI 10/100 (precedence over 'le')
        !           281: device         re                      # RealTek 8139C+/8169/8169S/8110S
        !           282: device         rl                      # RealTek 8129/8139
        !           283: device         sf                      # Adaptec AIC-6915 (``Starfire'')
        !           284: device         sge                     # Silicon Integrated Systems SiS190/191
        !           285: device         sis                     # Silicon Integrated Systems SiS 900/SiS 7016
        !           286: device         sk                      # SysKonnect SK-984x & SK-982x gigabit Ethernet
        !           287: device         ste                     # Sundance ST201 (D-Link DFE-550TX)
        !           288: device         stge                    # Sundance/Tamarack TC9021 gigabit Ethernet
        !           289: device         tl                      # Texas Instruments ThunderLAN
        !           290: device         tx                      # SMC EtherPower II (83c170 ``EPIC'')
        !           291: device         vge                     # VIA VT612x gigabit Ethernet
        !           292: device         vr                      # VIA Rhine, Rhine II
        !           293: device         vte                     # DM&P Vortex86 RDC R6040 Fast Ethernet
        !           294: device         wb                      # Winbond W89C840F
        !           295: device         xl                      # 3Com 3c90x (``Boomerang'', ``Cyclone'')
1.2       misho     296: 
                    297: # ISA Ethernet NICs.  pccard NICs included.
1.6     ! misho     298: device         cs                      # Crystal Semiconductor CS89x0 NIC
1.2       misho     299: # 'device ed' requires 'device miibus'
1.6     ! misho     300: device         ed                      # NE[12]000, SMC Ultra, 3c503, DS8390 cards
        !           301: device         ex                      # Intel EtherExpress Pro/10 and Pro/10+
        !           302: device         ep                      # Etherlink III based cards
        !           303: device         fe                      # Fujitsu MB8696x based cards
        !           304: device         ie                      # EtherExpress 8/16, 3C507, StarLAN 10 etc.
        !           305: device         sn                      # SMC's 9000 series of Ethernet chips
        !           306: device         xe                      # Xircom pccard Ethernet
1.2       misho     307: 
                    308: options                XBONEHACK
                    309: device         wlan_acl
                    310: device         wlan_xauth
                    311: device         wlan_rssadapt
                    312: #options       AH_RXCFG_SDMAMW_4BYTES
                    313: #options       ATH_EEPROM_FIRMWARE     # Use EEPROM from flash
                    314: options                ALQ
                    315: options                IEEE80211_ALQ
                    316: options                IEEE80211_SUPPORT_TDMA
                    317: options                IEEE80211_SUPPORT_SUPERG
                    318: # Wireless NIC cards
1.6     ! misho     319: device         wlan                    # 802.11 support
        !           320: options        IEEE80211_DEBUG         # enable debug msgs
        !           321: options        IEEE80211_AMPDU_AGE     # age frames in AMPDU reorder q's
1.2       misho     322: options        IEEE80211_SUPPORT_MESH  # enable 802.11s draft support
1.6     ! misho     323: device         wlan_wep                # 802.11 WEP support
        !           324: device         wlan_ccmp               # 802.11 CCMP support
        !           325: device         wlan_tkip               # 802.11 TKIP support
        !           326: device         wlan_amrr               # AMRR transmit rate control algorithm
        !           327: device         an                      # Aironet 4500/4800 802.11 wireless NICs.
        !           328: device         ath                     # Atheros NICs
        !           329: device         ath_pci                 # Atheros pci/cardbus glue
        !           330: device         ath_hal                 # pci/cardbus chip support
1.2       misho     331: options        AH_SUPPORT_AR5416       # enable AR5416 tx/rx descriptors
1.6     ! misho     332: options        AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
        !           333: options        ATH_ENABLE_11N          # Enable 802.11n support for AR5416 and later
        !           334: device         ath_rate_sample         # SampleRate tx rate control for ath
        !           335: #device                bwi                     # Broadcom BCM430x/BCM431x wireless NICs.
        !           336: #device                bwn                     # Broadcom BCM43xx wireless NICs.
        !           337: device         ipw                     # Intel 2100 wireless NICs.
        !           338: device         iwi                     # Intel 2200BG/2225BG/2915ABG wireless NICs.
        !           339: device         iwn                     # Intel 4965/1000/5000/6000 wireless NICs.
        !           340: device         malo                    # Marvell Libertas wireless NICs.
        !           341: device         mwl                     # Marvell 88W8363 802.11n wireless NICs.
        !           342: device         ral                     # Ralink Technology RT2500 wireless NICs.
        !           343: device         wi                      # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
        !           344: #device                wl                      # Older non 802.11 Wavelan wireless NIC.
        !           345: device         wpi                     # Intel 3945ABG wireless NICs.
1.2       misho     346: 
                    347: device         iwifw
                    348: device         ipwfw
                    349: device         iwnfw
                    350: device         mwlfw
                    351: device         wpifw
                    352: 
                    353: # Pseudo devices.
1.6     ! misho     354: device         loop                    # Network loopback
        !           355: device         random                  # Entropy device
        !           356: device         padlock_rng             # VIA Padlock RNG
        !           357: device         rdrand_rng              # Intel Bull Mountain RNG
        !           358: device         ether                   # Ethernet support
        !           359: device         vlan                    # 802.1Q VLAN support
        !           360: device         tun                     # Packet tunnel.
        !           361: device         md                      # Memory "disks"
        !           362: device         gif                     # IPv6 and IPv4 tunneling
        !           363: device         firmware                # firmware assist module
1.2       misho     364: 
                    365: # The `bpf' device enables the Berkeley Packet Filter.
                    366: # Be aware of the administrative consequences of enabling this!
                    367: # Note that 'bpf' is required for DHCP.
1.6     ! misho     368: device         bpf                     # Berkeley packet filter
1.2       misho     369: 
                    370: # USB support
1.6     ! misho     371: #options       USB_DEBUG               # enable debug msgs
        !           372: device         uhci                    # UHCI PCI->USB interface
        !           373: device         ohci                    # OHCI PCI->USB interface
        !           374: device         ehci                    # EHCI PCI->USB interface (USB 2.0)
        !           375: device         xhci                    # XHCI PCI->USB interface (USB 3.0)
        !           376: device         usb                     # USB Bus (required)
        !           377: device         ukbd                    # Keyboard
        !           378: device         umass                   # Disks/Mass storage - Requires scbus and da
1.2       misho     379: # USB Serial devices
                    380: device         u3g             # USB-based 3G modems (Option, Huawei, Sierra)
                    381: device         uark            # Technologies ARK3116 based serial adapters
                    382: device         ubsa            # Belkin F5U103 and compatible serial adapters
                    383: device         uftdi           # For FTDI usb serial adapters
                    384: device         uipaq           # Some WinCE based devices
                    385: device         uplcom          # Prolific PL-2303 serial adapters
                    386: device         uslcom          # SI Labs CP2101/CP2102 serial adapters
                    387: device         uvisor          # Visor and Palm devices
                    388: device         uvscom          # USB serial support for DDI pocket's PHS
                    389: # USB Ethernet, requires miibus
                    390: device         aue             # ADMtek USB Ethernet
                    391: device         axe             # ASIX Electronics USB Ethernet
                    392: device         cdce            # Generic USB over Ethernet
                    393: device         cue             # CATC USB Ethernet
                    394: device         kue             # Kawasaki LSI USB Ethernet
                    395: device         rue             # RealTek RTL8150 USB Ethernet
                    396: device         udav            # Davicom DM9601E USB
                    397: # USB Wireless
                    398: device         rum             # Ralink Technology RT2501USB wireless NICs
                    399: device         run             # Ralink Technology RT2700/RT2800/RT3000 NICs.
                    400: device         uath            # Atheros AR5523 wireless NICs
                    401: device         upgt            # Conexant/Intersil PrismGT wireless NICs.
                    402: device         ural            # Ralink Technology RT2500USB wireless NICs
                    403: device         urtw            # Realtek RTL8187B/L wireless NICs
                    404: device         zyd             # ZyDAS zd1211/zd1211b wireless NICs
                    405: 
                    406: device         ucom
                    407: device         umcs
                    408: 
                    409: # FireWire support
                    410: device         firewire        # FireWire bus code
                    411: # sbp(4) works for some systems but causes boot failure on others
                    412: #device                sbp             # SCSI over FireWire (Requires scbus and da)
                    413: device         fwe             # Ethernet over FireWire (non-standard!)
                    414: device         fwip            # IP over FireWire (RFC 2734,3146)
                    415: device         dcons           # Dumb console driver
                    416: device         dcons_crom      # Configuration ROM for dcons
                    417: 
                    418: # Sound support
1.6     ! misho     419: device         sound                   # Generic sound driver (required)
        !           420: device         snd_cmi                 # CMedia CMI8338/CMI8738
        !           421: device         snd_csa                 # Crystal Semiconductor CS461x/428x
        !           422: device         snd_emu10kx             # Creative SoundBlaster Live! and Audigy
        !           423: device         snd_es137x              # Ensoniq AudioPCI ES137x
        !           424: device         snd_hda                 # Intel High Definition Audio
        !           425: device         snd_ich                 # Intel, NVidia and other ICH AC'97 Audio
        !           426: device         snd_via8233             # VIA VT8233x Audio
1.2       misho     427: 
                    428: # MMC/SD
1.6     ! misho     429: device         mmc                     # MMC/SD bus
        !           430: device         mmcsd                   # MMC/SD memory card
        !           431: device         sdhci                   # Generic PCI SD Host Controller
1.2       misho     432: 
                    433: # VirtIO support
1.6     ! misho     434: device         virtio                  # Generic VirtIO bus (required)
        !           435: device         virtio_pci              # VirtIO PCI device
        !           436: device         vtnet                   # VirtIO Ethernet device
        !           437: device         virtio_blk              # VirtIO Block device
        !           438: device         virtio_scsi             # VirtIO SCSI device
        !           439: device         virtio_balloon          # VirtIO Memory Balloon device
1.2       misho     440: 
1.6     ! misho     441: # HyperV drivers and enchancement support
        !           442: device         hyperv                  # HyperV drivers 
1.5       misho     443: 
                    444: # Xen HVM Guest Optimizations
                    445: # NOTE: XENHVM depends on xenpci.  They must be added or removed together.
1.6     ! misho     446: options        XENHVM                  # Xen HVM kernel infrastructure
        !           447: device         xenpci                  # Xen HVM Hypervisor services driver
1.5       misho     448: 
                    449: # VMware support
1.6     ! misho     450: device         vmx                     # VMware VMXNET3 Ethernet
        !           451: 
        !           452: # The crypto framework is required by IPSEC
        !           453: device         crypto                  # Required by IPSEC
1.4       misho     454: 
1.2       misho     455: ### ELWIX Additional custom settings ...
                    456: 
1.5       misho     457: #device                iscsi_initiator
                    458: 
1.2       misho     459: device         if_bridge
                    460: device         tap
                    461: device         gre
                    462: device         lagg
                    463: device         carp
                    464: 
                    465: device         siba_bwn
                    466: 
                    467: #options               NDISAPI
                    468: #device                ndis
                    469: 
                    470: device         pf
                    471: device         pflog
                    472: device         pfsync
                    473: 
                    474: device         hifn
                    475: device         enc
                    476: device         cryptodev
                    477: options                IPSEC_NAT_T
                    478: 
                    479: options                ALTQ
                    480: options                ALTQ_CBQ
                    481: options                ALTQ_HFSC
                    482: options                ALTQ_PRIQ
                    483: options                ALTQ_CDNR
                    484: options                ALTQ_RED
                    485: options                ALTQ_RIO
                    486: 
                    487: options        MROUTING
                    488: options        RADIX_MPATH
                    489: options                PPS_SYNC
                    490: options        DEVICE_POLLING
                    491: options                HZ=1000
                    492: 
                    493: options        IPFIREWALL
                    494: options        IPFIREWALL_VERBOSE
                    495: options        IPFIREWALL_VERBOSE_LIMIT=100
                    496: options        IPFIREWALL_DEFAULT_TO_ACCEPT
                    497: options        IPFIREWALL_NAT
                    498: options        LIBALIAS
                    499: options        IPDIVERT
                    500: options        IPSTEALTH
                    501: options                DUMMYNET
                    502: 
                    503: options                NETGRAPH
                    504: options                NETGRAPH_ETHER
                    505: options                NETGRAPH_SOCKET
                    506: options                NETGRAPH_PPPOE
                    507: options                NETGRAPH_KSOCKET
                    508: options                NETGRAPH_PPTPGRE
                    509: options                NETGRAPH_L2TP
                    510: options                NETGRAPH_ECHO
                    511: options                NETGRAPH_FRAME_RELAY
                    512: options                NETGRAPH_LMI
                    513: options                NETGRAPH_TTY
                    514: options                NETGRAPH_CISCO
                    515: ##options      NETGRAPH_MPPC_COMPRESSION
                    516: options        NETGRAPH_MPPC_ENCRYPTION
                    517: options                NETGRAPH_PPP
                    518: options                NETGRAPH_VJC
                    519: options        NETGRAPH_UI
                    520: options                NETGRAPH_TCPMSS
                    521: options                NETGRAPH_DEFLATE
                    522: options        NETGRAPH_PRED1
                    523: options        NETGRAPH_RFC1490
                    524: options        NETGRAPH_SPPP
                    525: options        NETGRAPH_TAG
                    526: options                NETGRAPH_IPFW
                    527: options                NETGRAPH_IFACE
                    528: options                NETGRAPH_EIFACE
                    529: options                NETGRAPH_TEE
                    530: options                NETGRAPH_ASYNC
                    531: options                NETGRAPH_SPLIT
                    532: options                NETGRAPH_HOLE
                    533: options                NETGRAPH_ONE2MANY
                    534: options                NETGRAPH_NETFLOW
                    535: options                NETGRAPH_BPF
                    536: options                NETGRAPH_GIF
                    537: options                NETGRAPH_GIF_DEMUX
                    538: options                NETGRAPH_BRIDGE
                    539: options                NETGRAPH_VLAN
                    540: options                NETGRAPH_PIPE
                    541: options                NETGRAPH_CAR
                    542: 
                    543: options        NULLFS
                    544: options        UNIONFS
                    545: options                TMPFS
                    546: 
                    547: device         ic
                    548: device         iic
                    549: device         iicsmb
                    550: #device                iicoc           # OpenCores I2C controller support
                    551: device         smb
                    552: device         smbus
                    553: device         iicbus
                    554: device         iicbb
                    555: device         bktr
                    556: options                BKTR_NEW_MSP34XX_DRIVER
                    557: options                BKTR_KODICOM_MUX
                    558: device         speaker
                    559: 
                    560: device         ds133x
                    561: device         ds1374
                    562: device         ds1672
                    563: 
                    564: device         intpm
                    565: device         alpm
                    566: device         ichsmb
                    567: device         viapm
                    568: device         amdpm
                    569: device         amdsmb
                    570: device         nfpm
                    571: device         nfsmb
                    572: 
                    573: device         ipmi
                    574: device         pcf
                    575: 
                    576: device         gpio
                    577: device         gpioled
                    578: device         gpioiic
                    579: 
                    580: device         glxsb
                    581: device         glxiic
                    582: options                CPU_GEODE
                    583: options                CPU_SOEKRIS
                    584: options                COMPAT_AOUT
                    585: options        ENABLE_ALART            # Control alarm on Intel intpm driver
                    586: options        PANIC_REBOOT_WAIT_TIME=10
                    587: device         coretemp
                    588: device         cpuctl
                    589: device         nvram
                    590: device         ichwd
                    591: device         amdsbwd
                    592: device         viawd
                    593: device         wbwd
                    594: 
1.6     ! misho     595: device         vxlan
        !           596: 
1.2       misho     597: #device                disc
                    598: #device                edsc
                    599: options                VIMAGE
1.6     ! misho     600: #device                epair
1.2       misho     601: device         stf
                    602: 
                    603: # NETMAP subsystem
1.6     ! misho     604: device         netmap
1.2       misho     605: 
                    606: device         rlswitch
                    607: 
                    608: options        ACCEPT_FILTER_DATA
                    609: options        ACCEPT_FILTER_DNS
                    610: options        ACCEPT_FILTER_HTTP
                    611: 
                    612: options        SW_WATCHDOG
                    613: 
                    614: device         etherswitch
                    615: device         rtl8366rb

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>