Annotation of elwix/config/ELWIX_amd64, revision 1.4.2.2
1.4.2.2 ! misho 1: # $Id: ELWIX_amd64,v 1.4.2.1 2021/09/08 12:07:28 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
1.4.2.2 ! misho 217: device vmd
1.4 misho 218:
1.2 misho 219: # atkbdc0 controls both the keyboard and the PS/2 mouse
220: device atkbdc # AT keyboard controller
221: device atkbd # AT keyboard
222: device psm # PS/2 mouse
223:
224: device kbdmux # keyboard multiplexer
225:
226: device vga # VGA video card driver
227: options VESA # Add support for VESA BIOS Extensions (VBE)
228:
229: device splash # Splash screen and screen saver support
230:
231: # syscons is the default console driver, resembling an SCO console
232: device sc
233: options SC_PIXEL_MODE # add support for the raster text mode
234:
235: # vt is the new video console driver
236: device vt
237: device vt_vga
238: device vt_efifb
1.4 misho 239: device vt_vbefb
1.2 misho 240:
241: device agp # support several AGP chipsets
242:
243: # PCCARD (PCMCIA) support
244: # PCMCIA and cardbus bridge support
245: device cbb # cardbus (yenta) bridge
246: device cardbus # CardBus (32-bit) bus
247:
248: # Serial (COM) ports
249: device uart # Generic UART driver
250:
251: # Parallel port
252: device ppc
253: device ppbus # Parallel port bus (required)
254: device lpt # Printer
255: device ppi # Parallel port interface device
256: #device vpo # Requires scbus and da
257:
258: device puc # Multi I/O cards and multi-channel UARTs
259:
1.3 misho 260: # PCI/PCI-X/PCIe Ethernet NICs that use iflib infrastructure
261: device iflib
262: device em # Intel PRO/1000 Gigabit Ethernet Family
1.4.2.1 misho 263: device igc # Intel I225 2.5G Ethernet
1.3 misho 264: device ix # Intel PRO/10GbE PCIE PF Ethernet
265: device ixv # Intel PRO/10GbE PCIE VF Ethernet
266: device ixl # Intel 700 Series Physical Function
267: device iavf # Intel Adaptive Virtual Function
1.4 misho 268: device ice # Intel 800 Series Physical Function
1.3 misho 269: device vmx # VMware VMXNET3 Ethernet
1.4 misho 270: device axp # AMD EPYC integrated NIC (requires miibus)
1.3 misho 271:
1.2 misho 272: # PCI Ethernet NICs.
273: device bxe # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
274: device le # AMD Am7900 LANCE and Am79C9xx PCnet
275: device ti # Alteon Networks Tigon I/II gigabit Ethernet
1.4 misho 276:
277: # Nvidia/Mellanox Connect-X 4 and later, Ethernet only
278: # mlx5ib requires ibcore infra and is not included by default
279: device mlx5 # Base driver
280: device mlxfw # Firmware update
281: device mlx5en # Ethernet driver
1.2 misho 282:
283: # PCI Ethernet NICs that use the common MII bus controller code.
284: # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
285: device miibus # MII bus support
286: device ae # Attansic/Atheros L2 FastEthernet
287: device age # Attansic/Atheros L1 Gigabit Ethernet
288: device alc # Atheros AR8131/AR8132 Ethernet
289: device ale # Atheros AR8121/AR8113/AR8114 Ethernet
290: device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
291: device bfe # Broadcom BCM440x 10/100 Ethernet
292: device bge # Broadcom BCM570xx Gigabit Ethernet
293: #device cas # Sun Cassini/Cassini+ and NS DP83065 Saturn
294: device dc # DEC/Intel 21143 and various workalikes
295: device et # Agere ET1310 10/100/Gigabit Ethernet
296: device fxp # Intel EtherExpress PRO/100B (82557, 82558)
297: #device gem # Sun GEM/Sun ERI/Apple GMAC
298: device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
299: device lge # Level 1 LXT1001 gigabit Ethernet
300: device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
301: device nfe # nVidia nForce MCP on-board Ethernet
302: device nge # NatSemi DP83820 gigabit Ethernet
303: device re # RealTek 8139C+/8169/8169S/8110S
304: device rl # RealTek 8129/8139
305: device sge # Silicon Integrated Systems SiS190/191
306: device sis # Silicon Integrated Systems SiS 900/SiS 7016
307: device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
308: device ste # Sundance ST201 (D-Link DFE-550TX)
309: device stge # Sundance/Tamarack TC9021 gigabit Ethernet
310: device vge # VIA VT612x gigabit Ethernet
311: device vr # VIA Rhine, Rhine II
312: device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
313:
1.3 misho 314: #options XBONEHACK
1.2 misho 315: device wlan_acl
316: device wlan_xauth
317: device wlan_rssadapt
318: #options AH_RXCFG_SDMAMW_4BYTES
319: #options ATH_EEPROM_FIRMWARE # Use EEPROM from flash
320: options ALQ
321: options IEEE80211_ALQ
322: options IEEE80211_SUPPORT_TDMA
323: options IEEE80211_SUPPORT_SUPERG
324: # Wireless NIC cards
325: device wlan # 802.11 support
326: options IEEE80211_DEBUG # enable debug msgs
327: options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
328: device wlan_wep # 802.11 WEP support
329: device wlan_ccmp # 802.11 CCMP support
330: device wlan_tkip # 802.11 TKIP support
331: device wlan_amrr # AMRR transmit rate control algorithm
332: device ath # Atheros NICs
333: device ath_pci # Atheros pci/cardbus glue
334: device ath_hal # pci/cardbus chip support
335: options AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
336: options ATH_ENABLE_11N # Enable 802.11n support for AR5416 and later
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 wpi # Intel 3945ABG wireless NICs.
347:
348: device iwifw
349: device ipwfw
350: device iwnfw
351: device mwlfw
352: device wpifw
353:
354: # Pseudo devices.
1.3 misho 355: device crypto # core crypto support
1.4 misho 356: device aesni # AES-NI OpenCrypto module
1.2 misho 357: device loop # Network loopback
358: device padlock_rng # VIA Padlock RNG
359: device rdrand_rng # Intel Bull Mountain RNG
360: device ether # Ethernet support
361: device vlan # 802.1Q VLAN support
1.3 misho 362: device tuntap # Packet tunnel.
1.2 misho 363: device md # Memory "disks"
364: device gif # IPv6 and IPv4 tunneling
365: device firmware # firmware assist module
1.4 misho 366: device xz # lzma decompression
1.2 misho 367:
368: # The `bpf' device enables the Berkeley Packet Filter.
369: # Be aware of the administrative consequences of enabling this!
370: # Note that 'bpf' is required for DHCP.
371: device bpf # Berkeley packet filter
372:
373: # USB support
1.3 misho 374: options USB_DEBUG # enable debug msgs
1.2 misho 375: device uhci # UHCI PCI->USB interface
376: device ohci # OHCI PCI->USB interface
377: device ehci # EHCI PCI->USB interface (USB 2.0)
378: device xhci # XHCI PCI->USB interface (USB 3.0)
379: device usb # USB Bus (required)
380: device ukbd # Keyboard
381: device umass # Disks/Mass storage - Requires scbus and da
382:
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
408: device zyd # ZyDAS zd1211/zd1211b wireless NICs
409:
410: device ucom
411: device umcs
412:
413: # Sound support
414: device sound # Generic sound driver (required)
415: device snd_cmi # CMedia CMI8338/CMI8738
416: device snd_csa # Crystal Semiconductor CS461x/428x
417: device snd_emu10kx # Creative SoundBlaster Live! and Audigy
418: device snd_es137x # Ensoniq AudioPCI ES137x
419: device snd_hda # Intel High Definition Audio
420: device snd_ich # Intel, NVidia and other ICH AC'97 Audio
421: device snd_via8233 # VIA VT8233x Audio
422:
423: # MMC/SD
424: device mmc # MMC/SD bus
425: device mmcsd # MMC/SD memory card
426: device sdhci # Generic PCI SD Host Controller
1.4 misho 427: device rtsx # Realtek SD card reader
1.2 misho 428:
429: # VirtIO support
430: device virtio # Generic VirtIO bus (required)
431: device virtio_pci # VirtIO PCI device
432: device vtnet # VirtIO Ethernet device
433: device virtio_blk # VirtIO Block device
434: device virtio_scsi # VirtIO SCSI device
435: device virtio_balloon # VirtIO Memory Balloon device
436:
1.4.2.2 ! misho 437: # Linux KVM paravirtualization support
! 438: device kvm_clock # KVM paravirtual clock driver
! 439:
1.3 misho 440: # HyperV drivers and enhancement support
1.2 misho 441: device hyperv # HyperV drivers
442:
443: # Xen HVM Guest Optimizations
1.4.2.2 ! misho 444: # NOTE: XENHVM depends on xenpci and xentimer.
! 445: # They must be added or removed together.
1.2 misho 446: options XENHVM # Xen HVM kernel infrastructure
447: device xenpci # Xen HVM Hypervisor services driver
1.4.2.2 ! misho 448: device xentimer # Xen x86 PV timer device
1.2 misho 449:
1.3 misho 450: # Netmap provides direct access to TX/RX rings on supported NICs
451: device netmap # netmap(4) support
452:
453: # evdev interface
454: options EVDEV_SUPPORT # evdev support in legacy drivers
455: device evdev # input event device support
456: device uinput # install /dev/uinput cdev
1.2 misho 457:
1.4 misho 458: # HID support
459: options HID_DEBUG # enable debug msgs
460: device hid # Generic HID support
461: options IICHID_SAMPLING # Workaround missing GPIO INTR support
462:
1.2 misho 463: ### ELWIX Additional custom settings ...
464:
1.3 misho 465: # Add multiple route table support
466: #options ROUTETABLES=16
467:
468: device cxgb # Chelsio T3 10 Gigabit Ethernet adapter driver
469: device cxgb_t3fw # Chelsio T3 10 Gigabit Ethernet firmware
470: device cxgbe # Chelsio T4 10Gb and 1Gb Ethernet adapter driver
471: device my # Myson Technology Ethernet PCI driver
472: device mxge # Myricom Myri10GE 10 Gigabit Ethernet adapter driver
473: device qlxge # QLogic 8100 Series 10 Gigabit Ethernet
474: device oce # Device driver for Emulex OneConnect 10Gb network adapters
475:
1.2 misho 476: #device iscsi_initiator
477:
478: device if_bridge
479: device gre
480: device lagg
481: device carp
482:
483: device pf
484: device pflog
485: device pfsync
486:
487: device hifn
488: device enc
489: device cryptodev
1.3 misho 490: options TCP_SIGNATURE #include support for RFC 2385
1.2 misho 491:
492: options ALTQ
493: options ALTQ_CBQ
494: options ALTQ_HFSC
495: options ALTQ_PRIQ
496: options ALTQ_CDNR
497: options ALTQ_RED
498: options ALTQ_RIO
499:
500: options MROUTING
501: options PPS_SYNC
502: options DEVICE_POLLING
503: options HZ=1000
504:
505: options IPFIREWALL
506: options IPFIREWALL_VERBOSE
507: options IPFIREWALL_VERBOSE_LIMIT=100
508: options IPFIREWALL_DEFAULT_TO_ACCEPT
509: options IPFIREWALL_NAT
510: options LIBALIAS
511: options IPDIVERT
512: options IPSTEALTH
513: options DUMMYNET
514:
515: options NETGRAPH
516: options NETGRAPH_ETHER
517: options NETGRAPH_SOCKET
518: options NETGRAPH_PPPOE
519: options NETGRAPH_KSOCKET
520: options NETGRAPH_PPTPGRE
521: options NETGRAPH_L2TP
522: options NETGRAPH_ECHO
523: options NETGRAPH_FRAME_RELAY
524: options NETGRAPH_LMI
525: options NETGRAPH_TTY
526: options NETGRAPH_CISCO
527: ##options NETGRAPH_MPPC_COMPRESSION
528: options NETGRAPH_MPPC_ENCRYPTION
529: options NETGRAPH_PPP
530: options NETGRAPH_VJC
531: options NETGRAPH_UI
532: options NETGRAPH_TCPMSS
533: options NETGRAPH_DEFLATE
534: options NETGRAPH_PRED1
535: options NETGRAPH_RFC1490
536: options NETGRAPH_SPPP
537: options NETGRAPH_TAG
538: options NETGRAPH_IPFW
539: options NETGRAPH_IFACE
540: options NETGRAPH_EIFACE
541: options NETGRAPH_TEE
542: options NETGRAPH_ASYNC
543: options NETGRAPH_SPLIT
544: options NETGRAPH_HOLE
545: options NETGRAPH_ONE2MANY
546: options NETGRAPH_NETFLOW
547: options NETGRAPH_BPF
548: options NETGRAPH_GIF
549: options NETGRAPH_GIF_DEMUX
550: options NETGRAPH_BRIDGE
551: options NETGRAPH_VLAN
552: options NETGRAPH_PIPE
553: options NETGRAPH_CAR
554:
555: options NULLFS
556: options UNIONFS
557:
558: device ic
559: device iic
560: device iicsmb
561: #device iicoc # OpenCores I2C controller support
562: device smb
563: device smbus
564: device iicbus
565: device iicbb
566: device speaker
567:
568: device ds133x
569: device ds1374
570: device ds1672
571:
572: device intpm
573: device alpm
574: device ichsmb
575: device viapm
576: device amdpm
577: device amdsmb
578: device nfpm
579: device nfsmb
580:
581: device ipmi
582: device pcf
583:
584: device gpio
585: device gpioled
586: device gpioiic
587:
588: options ENABLE_ALART # Control alarm on Intel intpm driver
589: options PANIC_REBOOT_WAIT_TIME=10
590: device coretemp
591: device cpuctl
592: device nvram
593: device ichwd
594: device amdsbwd
595: device viawd
596: device wbwd
597:
598: #device disc
599: #device edsc
600: #device epair
601: device stf
602:
603: device rlswitch
604:
605: options ACCEPT_FILTER_DATA
606: options ACCEPT_FILTER_DNS
607: options ACCEPT_FILTER_HTTP
608:
609: options SW_WATCHDOG
610:
611: device etherswitch
1.3 misho 612: #device rtl8366rb
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>