Annotation of elwix/config/ELWIX, revision 1.4

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

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