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