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