Annotation of elwix/config/ELWIX, revision 1.3.2.13
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.3.2.12 misho 19: # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.578 2012/09/13 10:12:16 kib Exp $
1.1 misho 20:
21: cpu I486_CPU
22: cpu I586_CPU
23: cpu I686_CPU
24: ident ELWIX
25:
1.3.2.1 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.3.2.8 misho 29: #makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
30:
1.1 misho 31: options SCHED_ULE # ULE scheduler
32: options PREEMPTION # Enable kernel thread preemption
33: options INET # InterNETworking
34: options INET6 # IPv6 communications protocols
1.3.2.12 misho 35: options TCP_OFFLOAD # TCP offload
1.3.2.11 misho 36: options SCTP # Stream Control Transmission Protocol
1.1 misho 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.3.2.8 misho 45: options NFSCLIENT #Network File System client
46: options NFSSERVER #Network File System server
1.3.2.13! misho 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.3.2.12 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.3.2.1 misho 84: options CAPABILITY_MODE # Capsicum capability mode
85: options CAPABILITIES # Capsicum capabilities
1.1 misho 86: options MAC # TrustedBSD MAC Framework
87: #options KDTRACE_HOOKS # Kernel DTrace hooks
1.3.2.8 misho 88: #options DDB_CTF # Kernel ELF linker loads CTF data
1.3.2.12 misho 89: options FLOWTABLE # per-cpu routing cache
1.1 misho 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.3.2.1 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
142: #device ncr # NCR/Symbios Logic
143: device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
144: device trm # Tekram DC395U/UW/F DC315U adapters
145:
146: device adv # Advansys SCSI adapters
147: device adw # Advansys wide SCSI adapters
148: device aha # Adaptec 154x SCSI adapters
149: device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
150: device bt # Buslogic/Mylex MultiMaster SCSI adapters
151:
152: device ncv # NCR 53C500
153: device nsp # Workbit Ninja SCSI-3
154: device stg # TMC 18C30/18C50
1.3.2.1 misho 155: device isci # Intel C600 SAS controller
1.1 misho 156:
157: # ATA/SCSI peripherals
158: device scbus # SCSI bus (required for ATA/SCSI)
159: device ch # SCSI media changers
160: device da # Direct Access (disks)
161: device sa # Sequential Access (tape etc)
162: device cd # CD
163: device pass # Passthrough device (direct ATA/SCSI access)
1.3.2.1 misho 164: device ses # Enclosure Services (SES and SAF-TE)
165: device ctl # CAM Target Layer
1.1 misho 166:
167: # RAID controllers interfaced to the SCSI subsystem
168: device amr # AMI MegaRAID
169: device arcmsr # Areca SATA II RAID
170: device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID
171: device ciss # Compaq Smart RAID 5*
172: device dpt # DPT Smartcache III, IV - See NOTES for options
173: device hptmv # Highpoint RocketRAID 182x
174: device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
1.3.2.12 misho 175: device hpt27xx # Highpoint RocketRAID 27xx
1.1 misho 176: device iir # Intel Integrated RAID
177: device ips # IBM (Adaptec) ServeRAID
178: device mly # Mylex AcceleRAID/eXtremeRAID
179: device twa # 3ware 9000 series PATA/SATA RAID
1.2 misho 180: device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
1.1 misho 181:
182: # RAID controllers
183: device aac # Adaptec FSA RAID
184: device aacp # SCSI passthrough for aac (requires CAM)
185: device ida # Compaq Smart RAID
186: device mfi # LSI MegaRAID SAS
187: device mlx # Mylex DAC960 family
188: device pst # Promise Supertrak SX6000
189: device twe # 3ware ATA RAID
190:
191: # atkbdc0 controls both the keyboard and the PS/2 mouse
192: device atkbdc # AT keyboard controller
193: device atkbd # AT keyboard
194: device psm # PS/2 mouse
195:
196: device kbdmux # keyboard multiplexer
197:
198: device vga # VGA video card driver
1.3.2.8 misho 199: options VESA # Add support for VESA BIOS Extensions (VBE)
1.1 misho 200:
201: device splash # Splash screen and screen saver support
202:
203: # syscons is the default console driver, resembling an SCO console
204: device sc
205: options SC_PIXEL_MODE # add support for the raster text mode
206:
207: device agp # support several AGP chipsets
208:
209: # Power management support (see NOTES for more options)
210: #device apm
211: # Add suspend/resume support for the i8254.
212: device pmtimer
213:
214: # PCCARD (PCMCIA) support
215: # PCMCIA and cardbus bridge support
216: device cbb # cardbus (yenta) bridge
217: device pccard # PC Card (16-bit) bus
218: device cardbus # CardBus (32-bit) bus
219:
220: # Serial (COM) ports
221: device uart # Generic UART driver
222:
223: # Parallel port
224: device ppc
225: device ppbus # Parallel port bus (required)
226: device lpt # Printer
227: device plip # TCP/IP over parallel
228: device ppi # Parallel port interface device
229: #device vpo # Requires scbus and da
230:
1.3 misho 231: device puc # Multi I/O cards and multi-channel UARTs
1.1 misho 232:
233: # PCI Ethernet NICs.
234: device bxe # Broadcom BCM57710/BCM57711/BCM57711E 10Gb Ethernet
235: device de # DEC/Intel DC21x4x (``Tulip'')
1.3.2.4 misho 236: device em # Intel PRO/1000 Gigabit Ethernet Family
237: device igb # Intel PRO/1000 PCIE Server Gigabit Family
238: device ixgb # Intel PRO/10GbE Ethernet Card
1.1 misho 239: device le # AMD Am7900 LANCE and Am79C9xx PCnet
240: device ti # Alteon Networks Tigon I/II gigabit Ethernet
241: device txp # 3Com 3cR990 (``Typhoon'')
242: device vx # 3Com 3c590, 3c595 (``Vortex'')
1.3.2.5 misho 243: #device vxge # Exar/Neterion XFrame 3100 10GbE
244: #device mxge # Myricom Myri-10G 10GbE NIC
245: #device nxge # Neterion Xframe 10GbE Server/Storage Adapter
246: #device ixgbe # Intel Pro/10Gbe PCIE Ethernet
247: #device cxgbe # Chelsio T4 10GbE PCIe adapter
248: #device cxgb # Chelsio T3 10 Gigabit Ethernet
249: #device cxgb_t3fw # Chelsio T3 10 Gigabit Ethernet firmware
250: #device my # Myson Fast Ethernet (MTD80X, MTD89X)
1.1 misho 251:
252: # PCI Ethernet NICs that use the common MII bus controller code.
253: # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
254: device miibus # MII bus support
255: device ae # Attansic/Atheros L2 FastEthernet
256: device age # Attansic/Atheros L1 Gigabit Ethernet
257: device alc # Atheros AR8131/AR8132 Ethernet
258: device ale # Atheros AR8121/AR8113/AR8114 Ethernet
259: device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
260: device bfe # Broadcom BCM440x 10/100 Ethernet
261: device bge # Broadcom BCM570xx Gigabit Ethernet
1.3.2.8 misho 262: #device cas # Sun Cassini/Cassini+ and NS DP83065 Saturn
1.1 misho 263: device dc # DEC/Intel 21143 and various workalikes
264: device et # Agere ET1310 10/100/Gigabit Ethernet
265: device fxp # Intel EtherExpress PRO/100B (82557, 82558)
1.3.2.8 misho 266: #device gem # Sun GEM/Sun ERI/Apple GMAC
267: #device hme # Sun HME (Happy Meal Ethernet)
1.1 misho 268: device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
269: device lge # Level 1 LXT1001 gigabit Ethernet
270: device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
1.3.2.4 misho 271: device nfe # nVidia nForce MCP on-board Ethernet
1.1 misho 272: device nge # NatSemi DP83820 gigabit Ethernet
1.3.2.4 misho 273: #device nve # nVidia nForce MCP on-board Ethernet Networking
274: device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
1.1 misho 275: device re # RealTek 8139C+/8169/8169S/8110S
276: device rl # RealTek 8129/8139
277: device sf # Adaptec AIC-6915 (``Starfire'')
278: device sge # Silicon Integrated Systems SiS190/191
279: device sis # Silicon Integrated Systems SiS 900/SiS 7016
280: device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
281: device ste # Sundance ST201 (D-Link DFE-550TX)
282: device stge # Sundance/Tamarack TC9021 gigabit Ethernet
283: device tl # Texas Instruments ThunderLAN
284: device tx # SMC EtherPower II (83c170 ``EPIC'')
1.3.2.4 misho 285: device vge # VIA VT612x gigabit Ethernet
1.1 misho 286: device vr # VIA Rhine, Rhine II
287: device vte # DM&P Vortex86 RDC R6040 Fast Ethernet
288: device wb # Winbond W89C840F
289: device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
290:
291: # ISA Ethernet NICs. pccard NICs included.
292: device cs # Crystal Semiconductor CS89x0 NIC
293: # 'device ed' requires 'device miibus'
294: device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
295: device ex # Intel EtherExpress Pro/10 and Pro/10+
296: device ep # Etherlink III based cards
297: device fe # Fujitsu MB8696x based cards
298: device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc.
299: device sn # SMC's 9000 series of Ethernet chips
300: device xe # Xircom pccard Ethernet
301:
302: options XBONEHACK
303: options WLCACHE
304: device wlan_acl
305: device wlan_xauth
306: options IEEE80211_SUPPORT_TDMA
307: options IEEE80211_SUPPORT_SUPERG
308: # Wireless NIC cards
309: device wlan # 802.11 support
310: options IEEE80211_DEBUG # enable debug msgs
311: options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
312: options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
313: device wlan_wep # 802.11 WEP support
314: device wlan_ccmp # 802.11 CCMP support
315: device wlan_tkip # 802.11 TKIP support
316: device wlan_amrr # AMRR transmit rate control algorithm
317: device an # Aironet 4500/4800 802.11 wireless NICs.
1.3.2.12 misho 318: device ath # Atheros NICs
1.1 misho 319: device ath_pci # Atheros pci/cardbus glue
320: device ath_hal # pci/cardbus chip support
321: options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors
1.3.2.12 misho 322: options AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
323: options ATH_ENABLE_11N # Enable 802.11n support for AR5416 and later
1.1 misho 324: device ath_rate_sample # SampleRate tx rate control for ath
325: device bwi # Broadcom BCM430x/BCM431x wireless NICs.
326: device bwn # Broadcom BCM43xx wireless NICs.
327: device ipw # Intel 2100 wireless NICs.
328: device iwi # Intel 2200BG/2225BG/2915ABG wireless NICs.
329: device iwn # Intel 4965/1000/5000/6000 wireless NICs.
330: device malo # Marvell Libertas wireless NICs.
331: device mwl # Marvell 88W8363 802.11n wireless NICs.
332: device ral # Ralink Technology RT2500 wireless NICs.
333: device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
334: #device wl # Older non 802.11 Wavelan wireless NIC.
335: device wpi # Intel 3945ABG wireless NICs.
1.3.2.1 misho 336:
1.1 misho 337: device iwifw
338: device ipwfw
1.3.2.1 misho 339: device iwnfw
1.1 misho 340: device mwlfw
1.3.2.1 misho 341: device wpifw
1.1 misho 342:
343: # Pseudo devices.
344: device loop # Network loopback
345: device random # Entropy device
1.3.2.12 misho 346: options PADLOCK_RNG # VIA Padlock RNG
347: options RDRAND_RNG # Intel Bull Mountain RNG
1.1 misho 348: device ether # Ethernet support
349: device vlan # 802.1Q VLAN support
350: device tun # Packet tunnel.
351: device md # Memory "disks"
352: device gif # IPv6 and IPv4 tunneling
353: device faith # IPv6-to-IPv4 relaying (translation)
354: device firmware # firmware assist module
355:
356: # The `bpf' device enables the Berkeley Packet Filter.
357: # Be aware of the administrative consequences of enabling this!
358: # Note that 'bpf' is required for DHCP.
359: device bpf # Berkeley packet filter
360:
361: # USB support
362: #options USB_DEBUG # enable debug msgs
363: device uhci # UHCI PCI->USB interface
364: device ohci # OHCI PCI->USB interface
365: device ehci # EHCI PCI->USB interface (USB 2.0)
366: device xhci # XHCI PCI->USB interface (USB 3.0)
367: device usb # USB Bus (required)
368: device ukbd # Keyboard
369: device umass # Disks/Mass storage - Requires scbus and da
370: # USB Serial devices
371: device u3g # USB-based 3G modems (Option, Huawei, Sierra)
372: device uark # Technologies ARK3116 based serial adapters
373: device ubsa # Belkin F5U103 and compatible serial adapters
374: device uftdi # For FTDI usb serial adapters
375: device uipaq # Some WinCE based devices
376: device uplcom # Prolific PL-2303 serial adapters
377: device uslcom # SI Labs CP2101/CP2102 serial adapters
378: device uvisor # Visor and Palm devices
379: device uvscom # USB serial support for DDI pocket's PHS
380: # USB Ethernet, requires miibus
381: device aue # ADMtek USB Ethernet
382: device axe # ASIX Electronics USB Ethernet
383: device cdce # Generic USB over Ethernet
384: device cue # CATC USB Ethernet
385: device kue # Kawasaki LSI USB Ethernet
386: device rue # RealTek RTL8150 USB Ethernet
387: device udav # Davicom DM9601E USB
388: # USB Wireless
389: device rum # Ralink Technology RT2501USB wireless NICs
390: device run # Ralink Technology RT2700/RT2800/RT3000 NICs.
391: device uath # Atheros AR5523 wireless NICs
392: device upgt # Conexant/Intersil PrismGT wireless NICs.
393: device ural # Ralink Technology RT2500USB wireless NICs
394: device urtw # Realtek RTL8187B/L wireless NICs
1.2 misho 395: device zyd # ZyDAS zd1211/zd1211b wireless NICs
1.1 misho 396:
1.3.2.7 misho 397: device ucom
398: device umcs
399:
1.1 misho 400: # FireWire support
401: device firewire # FireWire bus code
1.3 misho 402: # sbp(4) works for some systems but causes boot failure on others
403: #device sbp # SCSI over FireWire (Requires scbus and da)
1.1 misho 404: device fwe # Ethernet over FireWire (non-standard!)
405: device fwip # IP over FireWire (RFC 2734,3146)
406: device dcons # Dumb console driver
407: device dcons_crom # Configuration ROM for dcons
408:
409: # Sound support
410: device sound # Generic sound driver (required)
1.3.2.8 misho 411: device snd_cmi # CMedia CMI8338/CMI8738
412: device snd_csa # Crystal Semiconductor CS461x/428x
413: device snd_emu10kx # Creative SoundBlaster Live! and Audigy
1.1 misho 414: device snd_es137x # Ensoniq AudioPCI ES137x
415: device snd_hda # Intel High Definition Audio
416: device snd_ich # Intel, NVidia and other ICH AC'97 Audio
417: device snd_via8233 # VIA VT8233x Audio
418:
1.3.2.1 misho 419: # MMC/SD
420: device mmc # MMC/SD bus
421: device mmcsd # MMC/SD memory card
422: device sdhci # Generic PCI SD Host Controller
423:
424: ### ELWIX Additional custom settings ...
425:
1.1 misho 426: device if_bridge
427: device tap
428: device gre
429: device lagg
430: device carp
431:
432: device siba_bwn
433:
1.3.2.11 misho 434: options NDISAPI
1.1 misho 435: #device ndis
436:
437: device pf
438: device pflog
439: device pfsync
440:
441: device hifn
442: device enc
443: device crypto
444: device cryptodev
445: options IPSEC
446: options IPSEC_NAT_T
447: options IPSEC_FILTERTUNNEL
448:
449: options ALTQ
450: options ALTQ_CBQ
451: options ALTQ_HFSC
452: options ALTQ_PRIQ
453: options ALTQ_CDNR
454: options ALTQ_RED
455: options ALTQ_RIO
456:
457: options MROUTING
1.3.2.8 misho 458: options RADIX_MPATH
1.3.2.1 misho 459: options PPS_SYNC
1.1 misho 460: options DEVICE_POLLING
461: options HZ=1000
462:
463: options IPFIREWALL
464: options IPFIREWALL_VERBOSE
465: options IPFIREWALL_VERBOSE_LIMIT=100
466: options IPFIREWALL_DEFAULT_TO_ACCEPT
467: options IPFIREWALL_FORWARD
468: options IPFIREWALL_NAT
469: options LIBALIAS
470: options IPDIVERT
471: options IPSTEALTH
472: options DUMMYNET
473:
474: options NETGRAPH
475: options NETGRAPH_ETHER
476: options NETGRAPH_SOCKET
477: options NETGRAPH_PPPOE
478: options NETGRAPH_KSOCKET
479: options NETGRAPH_PPTPGRE
480: options NETGRAPH_L2TP
481: options NETGRAPH_ECHO
482: options NETGRAPH_FRAME_RELAY
483: options NETGRAPH_LMI
484: options NETGRAPH_TTY
485: options NETGRAPH_CISCO
486: ##options NETGRAPH_MPPC_COMPRESSION
487: options NETGRAPH_MPPC_ENCRYPTION
488: options NETGRAPH_PPP
489: options NETGRAPH_VJC
490: options NETGRAPH_UI
491: options NETGRAPH_TCPMSS
492: options NETGRAPH_DEFLATE
493: options NETGRAPH_PRED1
494: options NETGRAPH_RFC1490
495: options NETGRAPH_SPPP
496: options NETGRAPH_TAG
497: options NETGRAPH_IPFW
498: options NETGRAPH_IFACE
499: options NETGRAPH_EIFACE
500: options NETGRAPH_TEE
501: options NETGRAPH_ASYNC
502: options NETGRAPH_SPLIT
503: options NETGRAPH_HOLE
504: options NETGRAPH_ONE2MANY
505: options NETGRAPH_NETFLOW
506: options NETGRAPH_BPF
507: options NETGRAPH_GIF
508: options NETGRAPH_GIF_DEMUX
509: options NETGRAPH_BRIDGE
510:
511: options NULLFS
512: options UNIONFS
513: options TMPFS
514:
515: options VFS_AIO
516:
517: device ic
518: device iic
519: device iicsmb
1.3.2.11 misho 520: #device iicoc # OpenCores I2C controller support
1.1 misho 521: device smb
522: device smbus
523: device iicbus
524: device iicbb
1.3 misho 525: device bktr
526: options BKTR_NEW_MSP34XX_DRIVER
527: options BKTR_KODICOM_MUX
1.1 misho 528: device speaker
529:
1.3.2.8 misho 530: device ds133x
531: device ds1374
532: device ds1672
533:
534: device intpm
535: device alpm
536: device ichsmb
537: device viapm
538: device amdpm
539: device amdsmb
540: device nfpm
541: device nfsmb
542:
1.3.2.1 misho 543: device ipmi
544: device pcf
545:
1.1 misho 546: device gpio
547: device gpioled
548: device gpioiic
549:
550: device glxsb
1.3.2.1 misho 551: device glxiic
1.1 misho 552: options CPU_GEODE
553: options CPU_SOEKRIS
554: options COMPAT_AOUT
555: options ENABLE_ALART # Control alarm on Intel intpm driver
556: options PANIC_REBOOT_WAIT_TIME=10
557: device coretemp
558: device cpuctl
559: device nvram
560: device ichwd
1.3.2.1 misho 561: device amdsbwd
562: device viawd
1.3.2.8 misho 563: device wbwd
1.1 misho 564:
1.3.2.5 misho 565: #device disc
566: #device edsc
1.3.2.12 misho 567: options VIMAGE
1.1 misho 568: device epair
569: device stf
570:
1.3.2.4 misho 571: # NETMAP subsystem
1.3.2.13! misho 572: #device netmap
1.3.2.8 misho 573:
574: device rlswitch
1.3 misho 575:
1.1 misho 576: options ACCEPT_FILTER_DATA
577: options ACCEPT_FILTER_DNS
578: options ACCEPT_FILTER_HTTP
579:
580: options ZERO_COPY_SOCKETS
581: options SW_WATCHDOG
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>