Annotation of elwix/config/ELWIX_amd64, revision 1.2.2.5
1.2.2.5 ! misho 1: # $Id: ELWIX_amd64,v 1.2.2.4 2018/07/06 00:23:20 misho Exp $
1.2 misho 2: # $FreeBSD: head/sys/amd64/conf/GENERIC 271137 2014-09-04 21:06:33Z markj $
3:
4: cpu HAMMER
5: ident ELWIX_amd64
6:
7: #include DEFAULTS
8:
9: hints "ELWIX_amd64.hints" # Default places to look for devices.
10:
11: options INIT_PATH=/sbin/initx:/sbin/init
12:
13: makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
1.2.2.1 misho 14: makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
1.2 misho 15:
16: options SCHED_ULE # ULE scheduler
17: options PREEMPTION # Enable kernel thread preemption
1.2.2.4 misho 18: options VIMAGE # Subsystem virtualization, e.g. VNET
1.2 misho 19: options INET # InterNETworking
20: options INET6 # IPv6 communications protocols
21: options IPSEC # IP (v4/v6) security
1.2.2.4 misho 22: options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5
1.2 misho 23: options TCP_OFFLOAD # TCP offload
1.2.2.4 misho 24: options TCP_BLACKBOX # Enhanced TCP event logging
1.2 misho 25: options TCP_HHOOK # hhook(9) framework for TCP
1.2.2.4 misho 26: options TCP_RFC7413 # TCP Fast Open
1.2 misho 27: options SCTP # Stream Control Transmission Protocol
28: options FFS # Berkeley Fast Filesystem
29: options SOFTUPDATES # Enable FFS soft updates support
30: options UFS_ACL # Support for access control lists
31: options UFS_DIRHASH # Improve performance on big directories
32: options UFS_GJOURNAL # Enable gjournal-based UFS journaling
33: options QUOTA # Enable disk quotas for UFS
34: options MD_ROOT # MD is a potential root device
35: options NFSCL # Network Filesystem Client
36: options NFSD # Network Filesystem Server
37: options NFSLOCKD # Network Lock Manager
38: options NFS_ROOT # NFS usable as /, requires NFSCL
39: options MSDOSFS # MSDOS Filesystem
40: options CD9660 # ISO 9660 Filesystem
41: options PROCFS # Process filesystem (requires PSEUDOFS)
42: options PSEUDOFS # Pseudo-filesystem framework
43: options GEOM_PART_GPT # GUID Partition Tables.
44: options GEOM_RAID # Soft RAID functionality.
45: options GEOM_LABEL # Provides labelization
46: #options GEOM_GATE
47: options GEOM_MAP
48: options GEOM_UZIP
49: #device geom_redboot
50: device geom_map # to get access to the SPI flash partitions
51: device geom_uzip # compressed in-memory filesystem support
52: options GEOM_ELI
53: options GEOM_MIRROR
54: options GEOM_CONCAT
55: options GEOM_STRIPE
56: options GEOM_VIRSTOR
57: options GEOM_CACHE
58: options GEOM_MULTIPATH
59: #options GEOM_LINUX_LVM # Linux LVM2 volumes
60: options COMPAT_43TTY # BSD 4.3 TTY compat (sgtty)
61: options COMPAT_FREEBSD32 # Compatible with i386 binaries
62: options COMPAT_FREEBSD4 # Compatible with FreeBSD4
63: options COMPAT_FREEBSD5 # Compatible with FreeBSD5
64: options COMPAT_FREEBSD6 # Compatible with FreeBSD6
65: options COMPAT_FREEBSD7 # Compatible with FreeBSD7
66: options COMPAT_FREEBSD9 # Compatible with FreeBSD9
67: options COMPAT_FREEBSD10 # Compatible with FreeBSD10
68: options COMPAT_FREEBSD11 # Compatible with FreeBSD11
69: options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
70: options KTRACE # ktrace(1) support
71: options STACK # stack(9) support
72: options SYSVSHM # SYSV-style shared memory
73: options SYSVMSG # SYSV-style message queues
74: options SYSVSEM # SYSV-style semaphores
75: options P1003_1B_MQUEUE
76: options P1003_1B_SEMAPHORES # POSIX-style semaphores
77: options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
78: options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
79: options KBD_INSTALL_CDEV # install a CDEV entry in /dev
80: options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
81: options AUDIT # Security event auditing
82: options CAPABILITY_MODE # Capsicum capability mode
83: options CAPABILITIES # Capsicum capabilities
84: options MAC # TrustedBSD MAC Framework
85: #options KDTRACE_FRAME # Ensure frames are compiled in
86: #options KDTRACE_HOOKS # Kernel DTrace hooks
87: #options DDB_CTF # Kernel ELF linker loads CTF data
88: options INCLUDE_CONFIG_FILE # Include this file in kernel
89: options RACCT # Resource accounting framework
90: options RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
91: options RCTL # Resource limits
92:
93: # Debugging support. Always need this:
1.2.2.1 misho 94: options KDB # Enable kernel debugger support.
95: options KDB_TRACE # Print a stack trace for a panic.
1.2 misho 96: # For full debugger support use (turn off in stable branch):
97: #options BUF_TRACKING # Track buffer history
1.2.2.1 misho 98: options DDB # Support DDB.
1.2 misho 99: #options FULL_BUF_TRACKING # Track more buffer history
1.2.2.1 misho 100: options GDB # Support remote GDB.
1.2 misho 101: #options DEADLKRES # Enable the deadlock resolver
102: #options INVARIANTS # Enable calls of extra sanity checking
103: #options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
104: #options WITNESS # Enable checks to detect deadlocks and cycles
105: #options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
106: #options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
107:
1.2.2.5 ! misho 108: # Kernel dump features.
! 109: options EKCD # Support for encrypted kernel dumps
! 110: options GZIO # gzip-compressed kernel and user dumps
! 111: options ZSTDIO # zstd-compressed kernel and user dumps
! 112: options NETDUMP # netdump(4) client support
! 113:
1.2 misho 114: # Make an SMP-capable kernel by default
115: options SMP # Symmetric MultiProcessor Kernel
116: options EARLY_AP_STARTUP
117:
118: # CPU frequency control
119: device cpufreq
120:
121: # Bus support.
122: device acpi
123: options ACPI_DMAR
124: device pci
125: options PCI_HP # PCI-Express native HotPlug
126: options PCI_IOV # PCI SR-IOV support
127:
128: # Floppy drives
129: device fdc
130:
131: # ATA controllers
132: device ahci # AHCI-compatible SATA controllers
133: device ata # Legacy ATA/SATA controllers
134: device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
135: device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA
136:
137: # SCSI Controllers
138: device ahc # AHA2940 and onboard AIC7xxx devices
139: device ahd # AHA39320/29320 and onboard AIC79xx devices
140: device esp # AMD Am53C974 (Tekram DC-390(T))
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 mps # LSI-Logic MPT-Fusion 2
146: device mpr # LSI-Logic MPT-Fusion 3
147: #device ncr # NCR/Symbios Logic
148: device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
149: device trm # Tekram DC395U/UW/F DC315U adapters
150:
151: device adv # Advansys SCSI adapters
152: device adw # Advansys wide SCSI adapters
153: device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
154: device bt # Buslogic/Mylex MultiMaster SCSI adapters
155: device isci # Intel C600 SAS controller
1.2.2.4 misho 156: device ocs_fc # Emulex FC adapters
1.2 misho 157:
158: # ATA/SCSI peripherals
159: device scbus # SCSI bus (required for ATA/SCSI)
1.2.2.1 misho 160: #device ch # SCSI media changers
1.2 misho 161: device da # Direct Access (disks)
162: device sa # Sequential Access (tape etc)
163: device cd # CD
164: device pass # Passthrough device (direct ATA/SCSI access)
165: device ses # Enclosure Services (SES and SAF-TE)
166: #device ctl # CAM Target Layer
167:
168: # RAID controllers interfaced to the SCSI subsystem
169: device amr # AMI MegaRAID
170: device arcmsr # Areca SATA II 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 hptnr # Highpoint DC7280, R750
175: device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
176: device hpt27xx # Highpoint RocketRAID 27xx
177: device iir # Intel Integrated RAID
178: device ips # IBM (Adaptec) ServeRAID
179: device mly # Mylex AcceleRAID/eXtremeRAID
180: device twa # 3ware 9000 series PATA/SATA RAID
1.2.2.5 ! misho 181: device smartpqi # Microsemi smartpqi driver
1.2 misho 182: device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
183:
184: # RAID controllers
185: device aac # Adaptec FSA RAID
186: device aacp # SCSI passthrough for aac (requires CAM)
187: device aacraid # Adaptec by PMC RAID
188: device ida # Compaq Smart RAID
189: device mfi # LSI MegaRAID SAS
190: device mlx # Mylex DAC960 family
191: device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
192: device pmspcv # PMC-Sierra SAS/SATA Controller driver
193: #XXX pointer/int warnings
194: #device pst # Promise Supertrak SX6000
195: device twe # 3ware ATA RAID
196:
197: # NVM Express (NVMe) support
198: device nvme # base NVMe driver
199: device nvd # expose NVMe namespaces as disks, depends on nvme
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
209: options VESA # Add support for VESA BIOS Extensions (VBE)
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: # vt is the new video console driver
218: device vt
219: device vt_vga
220: device vt_efifb
221:
222: device agp # support several AGP chipsets
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 ppi # Parallel port interface device
238: #device vpo # Requires scbus and da
239:
240: device puc # Multi I/O cards and multi-channel UARTs
241:
242: # PCI Ethernet NICs.
243: device bxe # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
244: device de # DEC/Intel DC21x4x (``Tulip'')
245: device em # Intel PRO/1000 Gigabit Ethernet Family
246: device ix # Intel PRO/10GbE PCIE PF Ethernet
247: device ixv # Intel PRO/10GbE PCIE VF Ethernet
248: device ixl # Intel XL710 40Gbe PCIE Ethernet
1.2.2.5 ! misho 249: #options IXL_IW # Enable iWARP Client Interface in ixl(4)
! 250: #device ixlv # Intel XL710 40Gbe VF PCIE Ethernet
1.2 misho 251: device le # AMD Am7900 LANCE and Am79C9xx PCnet
252: device ti # Alteon Networks Tigon I/II gigabit Ethernet
253: device txp # 3Com 3cR990 (``Typhoon'')
254: device vx # 3Com 3c590, 3c595 (``Vortex'')
255:
256: # PCI Ethernet NICs that use the common MII bus controller code.
257: # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
258: device miibus # MII bus support
259: device ae # Attansic/Atheros L2 FastEthernet
260: device age # Attansic/Atheros L1 Gigabit Ethernet
261: device alc # Atheros AR8131/AR8132 Ethernet
262: device ale # Atheros AR8121/AR8113/AR8114 Ethernet
263: device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
264: device bfe # Broadcom BCM440x 10/100 Ethernet
265: device bge # Broadcom BCM570xx Gigabit Ethernet
266: #device cas # Sun Cassini/Cassini+ and NS DP83065 Saturn
267: device dc # DEC/Intel 21143 and various workalikes
268: device et # Agere ET1310 10/100/Gigabit Ethernet
269: device fxp # Intel EtherExpress PRO/100B (82557, 82558)
270: #device gem # Sun GEM/Sun ERI/Apple GMAC
271: #device hme # Sun HME (Happy Meal Ethernet)
272: device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
273: device lge # Level 1 LXT1001 gigabit Ethernet
274: device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
275: device nfe # nVidia nForce MCP on-board Ethernet
276: device nge # NatSemi DP83820 gigabit Ethernet
277: device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
278: device re # RealTek 8139C+/8169/8169S/8110S
279: device rl # RealTek 8129/8139
280: device sf # Adaptec AIC-6915 (``Starfire'')
281: device sge # Silicon Integrated Systems SiS190/191
282: device sis # Silicon Integrated Systems SiS 900/SiS 7016
283: device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
284: device ste # Sundance ST201 (D-Link DFE-550TX)
285: device stge # Sundance/Tamarack TC9021 gigabit Ethernet
286: device tl # Texas Instruments ThunderLAN
287: device tx # SMC EtherPower II (83c170 ``EPIC'')
288: device vge # VIA VT612x gigabit Ethernet
289: device vr # VIA Rhine, Rhine II
290: device wb # Winbond W89C840F
291: device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
292:
1.2.2.3 misho 293: #options XBONEHACK
1.2 misho 294: device wlan_acl
295: device wlan_xauth
296: device wlan_rssadapt
297: #options AH_RXCFG_SDMAMW_4BYTES
298: #options ATH_EEPROM_FIRMWARE # Use EEPROM from flash
299: options ALQ
300: options IEEE80211_ALQ
301: options IEEE80211_SUPPORT_TDMA
302: options IEEE80211_SUPPORT_SUPERG
303: # Wireless NIC cards
304: device wlan # 802.11 support
305: options IEEE80211_DEBUG # enable debug msgs
306: options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
307: options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
308: device wlan_wep # 802.11 WEP support
309: device wlan_ccmp # 802.11 CCMP support
310: device wlan_tkip # 802.11 TKIP support
311: device wlan_amrr # AMRR transmit rate control algorithm
312: device an # Aironet 4500/4800 802.11 wireless NICs.
313: device ath # Atheros NICs
314: device ath_pci # Atheros pci/cardbus glue
315: device ath_hal # pci/cardbus chip support
316: options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors
317: options AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
318: options ATH_ENABLE_11N # Enable 802.11n support for AR5416 and later
319: device ath_rate_sample # SampleRate tx rate control for ath
320: device bwi # Broadcom BCM430x/BCM431x wireless NICs.
321: device bwn # Broadcom BCM43xx wireless NICs.
322: device ipw # Intel 2100 wireless NICs.
323: device iwi # Intel 2200BG/2225BG/2915ABG wireless NICs.
324: device iwn # Intel 4965/1000/5000/6000 wireless NICs.
325: device malo # Marvell Libertas wireless NICs.
326: device mwl # Marvell 88W8363 802.11n wireless NICs.
327: device ral # Ralink Technology RT2500 wireless NICs.
328: device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
329: device wpi # Intel 3945ABG wireless NICs.
330:
331: device iwifw
332: device ipwfw
333: device iwnfw
334: device mwlfw
335: device wpifw
336:
337: # Pseudo devices.
338: device loop # Network loopback
339: device random # Entropy device
340: device padlock_rng # VIA Padlock RNG
341: device rdrand_rng # Intel Bull Mountain RNG
342: device ether # Ethernet support
343: device vlan # 802.1Q VLAN support
344: device tun # Packet tunnel.
345: device md # Memory "disks"
346: device gif # IPv6 and IPv4 tunneling
347: device firmware # firmware assist module
348:
349: # The `bpf' device enables the Berkeley Packet Filter.
350: # Be aware of the administrative consequences of enabling this!
351: # Note that 'bpf' is required for DHCP.
352: device bpf # Berkeley packet filter
353:
354: # USB support
1.2.2.1 misho 355: options USB_DEBUG # enable debug msgs
1.2 misho 356: device uhci # UHCI PCI->USB interface
357: device ohci # OHCI PCI->USB interface
358: device ehci # EHCI PCI->USB interface (USB 2.0)
359: device xhci # XHCI PCI->USB interface (USB 3.0)
360: device usb # USB Bus (required)
361: device ukbd # Keyboard
362: device umass # Disks/Mass storage - Requires scbus and da
363:
364: # USB Serial devices
365: device u3g # USB-based 3G modems (Option, Huawei, Sierra)
366: device uark # Technologies ARK3116 based serial adapters
367: device ubsa # Belkin F5U103 and compatible serial adapters
368: device uftdi # For FTDI usb serial adapters
369: device uipaq # Some WinCE based devices
370: device uplcom # Prolific PL-2303 serial adapters
371: device uslcom # SI Labs CP2101/CP2102 serial adapters
372: device uvisor # Visor and Palm devices
373: device uvscom # USB serial support for DDI pocket's PHS
374: # USB Ethernet, requires miibus
375: device aue # ADMtek USB Ethernet
376: device axe # ASIX Electronics USB Ethernet
377: device cdce # Generic USB over Ethernet
378: device cue # CATC USB Ethernet
379: device kue # Kawasaki LSI USB Ethernet
380: device rue # RealTek RTL8150 USB Ethernet
381: device udav # Davicom DM9601E USB
382: # USB Wireless
383: device rum # Ralink Technology RT2501USB wireless NICs
384: device run # Ralink Technology RT2700/RT2800/RT3000 NICs.
385: device uath # Atheros AR5523 wireless NICs
386: device upgt # Conexant/Intersil PrismGT wireless NICs.
387: device ural # Ralink Technology RT2500USB wireless NICs
388: device urtw # Realtek RTL8187B/L wireless NICs
389: device zyd # ZyDAS zd1211/zd1211b wireless NICs
390:
391: device ucom
392: device umcs
393:
394: # FireWire support
1.2.2.4 misho 395: #device firewire # FireWire bus code
396: ## sbp(4) works for some systems but causes boot failure on others
397: ##device sbp # SCSI over FireWire (Requires scbus and da)
398: #device fwe # Ethernet over FireWire (non-standard!)
399: #device fwip # IP over FireWire (RFC 2734,3146)
400: #device dcons # Dumb console driver
401: #device dcons_crom # Configuration ROM for dcons
1.2 misho 402:
403: # Sound support
404: device sound # Generic sound driver (required)
405: device snd_cmi # CMedia CMI8338/CMI8738
406: device snd_csa # Crystal Semiconductor CS461x/428x
407: device snd_emu10kx # Creative SoundBlaster Live! and Audigy
408: device snd_es137x # Ensoniq AudioPCI ES137x
409: device snd_hda # Intel High Definition Audio
410: device snd_ich # Intel, NVidia and other ICH AC'97 Audio
411: device snd_via8233 # VIA VT8233x Audio
412:
413: # MMC/SD
414: device mmc # MMC/SD bus
415: device mmcsd # MMC/SD memory card
416: device sdhci # Generic PCI SD Host Controller
417:
418: # VirtIO support
419: device virtio # Generic VirtIO bus (required)
420: device virtio_pci # VirtIO PCI device
421: device vtnet # VirtIO Ethernet device
422: device virtio_blk # VirtIO Block device
423: device virtio_scsi # VirtIO SCSI device
424: device virtio_balloon # VirtIO Memory Balloon device
425:
1.2.2.1 misho 426: # HyperV drivers and enhancement support
1.2 misho 427: device hyperv # HyperV drivers
428:
429: # Xen HVM Guest Optimizations
430: # NOTE: XENHVM depends on xenpci. They must be added or removed together.
431: options XENHVM # Xen HVM kernel infrastructure
432: device xenpci # Xen HVM Hypervisor services driver
433:
434: # VMware support
435: device vmx # VMware VMXNET3 Ethernet
436:
1.2.2.1 misho 437: # Netmap provides direct access to TX/RX rings on supported NICs
438: device netmap # netmap(4) support
439:
440: # The crypto framework is required by IPSEC
441: device crypto # Required by IPSEC
442:
1.2 misho 443: ### ELWIX Additional custom settings ...
444:
1.2.2.1 misho 445: # Add multiple route table support
1.2.2.4 misho 446: #options ROUTETABLES=16
1.2.2.1 misho 447:
448: device cxgb # Chelsio T3 10 Gigabit Ethernet adapter driver
449: device cxgb_t3fw # Chelsio T3 10 Gigabit Ethernet firmware
450: device cxgbe # Chelsio T4 10Gb and 1Gb Ethernet adapter driver
451: device my # Myson Technology Ethernet PCI driver
452: device mxge # Myricom Myri10GE 10 Gigabit Ethernet adapter driver
453: device qlxge # QLogic 8100 Series 10 Gigabit Ethernet
454: device oce # Device driver for Emulex OneConnect 10Gb network adapters
455:
1.2 misho 456: #device iscsi_initiator
457:
458: device if_bridge
459: device tap
460: device gre
461: device lagg
462: device carp
463:
1.2.2.4 misho 464: #device siba_bwn
1.2 misho 465:
466: #options NDISAPI
467: #device ndis
468:
469: device pf
470: device pflog
471: device pfsync
472:
473: device hifn
474: device enc
475: device cryptodev
1.2.2.1 misho 476: options TCP_SIGNATURE #include support for RFC 2385
1.2 misho 477:
478: options ALTQ
479: options ALTQ_CBQ
480: options ALTQ_HFSC
481: options ALTQ_PRIQ
482: options ALTQ_CDNR
483: options ALTQ_RED
484: options ALTQ_RIO
485:
486: options MROUTING
487: options RADIX_MPATH
488: options PPS_SYNC
489: options DEVICE_POLLING
490: options HZ=1000
491:
492: options IPFIREWALL
493: options IPFIREWALL_VERBOSE
494: options IPFIREWALL_VERBOSE_LIMIT=100
495: options IPFIREWALL_DEFAULT_TO_ACCEPT
496: options IPFIREWALL_NAT
497: options LIBALIAS
498: options IPDIVERT
499: options IPSTEALTH
500: options DUMMYNET
501:
502: options NETGRAPH
503: options NETGRAPH_ETHER
504: options NETGRAPH_SOCKET
505: options NETGRAPH_PPPOE
506: options NETGRAPH_KSOCKET
507: options NETGRAPH_PPTPGRE
508: options NETGRAPH_L2TP
509: options NETGRAPH_ECHO
510: options NETGRAPH_FRAME_RELAY
511: options NETGRAPH_LMI
512: options NETGRAPH_TTY
513: options NETGRAPH_CISCO
514: ##options NETGRAPH_MPPC_COMPRESSION
515: options NETGRAPH_MPPC_ENCRYPTION
516: options NETGRAPH_PPP
517: options NETGRAPH_VJC
518: options NETGRAPH_UI
519: options NETGRAPH_TCPMSS
520: options NETGRAPH_DEFLATE
521: options NETGRAPH_PRED1
522: options NETGRAPH_RFC1490
523: options NETGRAPH_SPPP
524: options NETGRAPH_TAG
525: options NETGRAPH_IPFW
526: options NETGRAPH_IFACE
527: options NETGRAPH_EIFACE
528: options NETGRAPH_TEE
529: options NETGRAPH_ASYNC
530: options NETGRAPH_SPLIT
531: options NETGRAPH_HOLE
532: options NETGRAPH_ONE2MANY
533: options NETGRAPH_NETFLOW
534: options NETGRAPH_BPF
535: options NETGRAPH_GIF
536: options NETGRAPH_GIF_DEMUX
537: options NETGRAPH_BRIDGE
538: options NETGRAPH_VLAN
539: options NETGRAPH_PIPE
540: options NETGRAPH_CAR
541:
542: options NULLFS
543: options UNIONFS
544: options TMPFS
545:
546: device ic
547: device iic
548: device iicsmb
549: #device iicoc # OpenCores I2C controller support
550: device smb
551: device smbus
552: device iicbus
553: device iicbb
554: device bktr
555: options BKTR_NEW_MSP34XX_DRIVER
556: options BKTR_KODICOM_MUX
557: device speaker
558:
559: device ds133x
560: device ds1374
561: device ds1672
562:
563: device intpm
564: device alpm
565: device ichsmb
566: device viapm
567: device amdpm
568: device amdsmb
569: device nfpm
570: device nfsmb
571:
572: device ipmi
573: device pcf
574:
575: device gpio
576: device gpioled
577: device gpioiic
578:
579: options ENABLE_ALART # Control alarm on Intel intpm driver
580: options PANIC_REBOOT_WAIT_TIME=10
581: device coretemp
582: device cpuctl
583: device nvram
584: device ichwd
585: device amdsbwd
586: device viawd
587: device wbwd
588:
589: #device disc
590: #device edsc
591: #device epair
592: device stf
593:
594: device rlswitch
595:
596: options ACCEPT_FILTER_DATA
597: options ACCEPT_FILTER_DNS
598: options ACCEPT_FILTER_HTTP
599:
600: options SW_WATCHDOG
601:
602: device etherswitch
1.2.2.2 misho 603: #device rtl8366rb
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>