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