Annotation of elwix/config/ELWIX_i386, revision 1.4

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

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