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