Annotation of elwix/config/ELWIX, revision 1.1

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

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