Annotation of elwix/config/ELWIX_amd64, revision 1.3.2.1
1.3.2.1 ! misho 1: # $Id: ELWIX_amd64,v 1.3 2021/03/11 13:59:50 misho Exp $
! 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.3.2.1 ! misho 34: options IPSEC
1.3 misho 35: options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5
1.3.2.1 ! misho 36: options ROUTE_MPATH # Multipath routing support
1.2 misho 37: options TCP_OFFLOAD # TCP offload
1.3 misho 38: options TCP_BLACKBOX # Enhanced TCP event logging
1.2 misho 39: options TCP_HHOOK # hhook(9) framework for TCP
1.3 misho 40: options TCP_RFC7413 # TCP Fast Open
1.3.2.1 ! misho 41: options SCTP_SUPPORT # Allow kldload of SCTP
! 42: options KERN_TLS # TLS transmit & receive offload
1.2 misho 43: options FFS # Berkeley Fast Filesystem
44: options SOFTUPDATES # Enable FFS soft updates support
45: options UFS_ACL # Support for access control lists
46: options UFS_DIRHASH # Improve performance on big directories
47: options UFS_GJOURNAL # Enable gjournal-based UFS journaling
48: options QUOTA # Enable disk quotas for UFS
49: options MD_ROOT # MD is a potential root device
50: options NFSCL # Network Filesystem Client
51: options NFSD # Network Filesystem Server
52: options NFSLOCKD # Network Lock Manager
53: options NFS_ROOT # NFS usable as /, requires NFSCL
54: options MSDOSFS # MSDOS Filesystem
55: options CD9660 # ISO 9660 Filesystem
56: options PROCFS # Process filesystem (requires PSEUDOFS)
57: options PSEUDOFS # Pseudo-filesystem framework
1.3.2.1 ! misho 58: options TMPFS # Efficient memory filesystem
1.2 misho 59: options GEOM_RAID # Soft RAID functionality.
60: options GEOM_LABEL # Provides labelization
1.3 misho 61: options EFIRT # EFI Runtime Services support
1.2 misho 62: options GEOM_MAP
63: options GEOM_UZIP
64: #device geom_redboot
65: device geom_map # to get access to the SPI flash partitions
66: device geom_uzip # compressed in-memory filesystem support
1.3 misho 67: options GEOM_PART_BSD
68: options GEOM_PART_EBR
69: options GEOM_PART_MBR
70: options GEOM_PART_GPT
1.2 misho 71: options GEOM_ELI
72: options GEOM_MIRROR
73: options GEOM_CONCAT
74: options GEOM_STRIPE
75: options GEOM_VIRSTOR
76: options GEOM_CACHE
77: options GEOM_MULTIPATH
78: options COMPAT_FREEBSD32 # Compatible with i386 binaries
79: options COMPAT_FREEBSD4 # Compatible with FreeBSD4
80: options COMPAT_FREEBSD5 # Compatible with FreeBSD5
81: options COMPAT_FREEBSD6 # Compatible with FreeBSD6
82: options COMPAT_FREEBSD7 # Compatible with FreeBSD7
83: options COMPAT_FREEBSD9 # Compatible with FreeBSD9
84: options COMPAT_FREEBSD10 # Compatible with FreeBSD10
85: options COMPAT_FREEBSD11 # Compatible with FreeBSD11
1.3.2.1 ! misho 86: options COMPAT_FREEBSD12 # Compatible with FreeBSD12
1.2 misho 87: options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
88: options KTRACE # ktrace(1) support
89: options STACK # stack(9) support
90: options SYSVSHM # SYSV-style shared memory
91: options SYSVMSG # SYSV-style message queues
92: options SYSVSEM # SYSV-style semaphores
93: options P1003_1B_MQUEUE
94: options P1003_1B_SEMAPHORES # POSIX-style semaphores
95: options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
96: options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
97: options KBD_INSTALL_CDEV # install a CDEV entry in /dev
98: options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
99: options AUDIT # Security event auditing
100: options CAPABILITY_MODE # Capsicum capability mode
101: options CAPABILITIES # Capsicum capabilities
102: options MAC # TrustedBSD MAC Framework
103: #options KDTRACE_FRAME # Ensure frames are compiled in
104: #options KDTRACE_HOOKS # Kernel DTrace hooks
105: #options DDB_CTF # Kernel ELF linker loads CTF data
106: options INCLUDE_CONFIG_FILE # Include this file in kernel
107: options RACCT # Resource accounting framework
108: options RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
109: options RCTL # Resource limits
110:
111: # Debugging support. Always need this:
1.3 misho 112: options KDB # Enable kernel debugger support.
113: options KDB_TRACE # Print a stack trace for a panic.
1.2 misho 114: # For full debugger support use (turn off in stable branch):
115: #options BUF_TRACKING # Track buffer history
1.3 misho 116: options DDB # Support DDB.
1.2 misho 117: #options FULL_BUF_TRACKING # Track more buffer history
1.3 misho 118: options GDB # Support remote GDB.
1.2 misho 119: #options DEADLKRES # Enable the deadlock resolver
120: #options INVARIANTS # Enable calls of extra sanity checking
121: #options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
1.3.2.1 ! misho 122: #options QUEUE_MACRO_DEBUG_TRASH # Trash queue(2) internal pointers on invalidation
1.2 misho 123: #options WITNESS # Enable checks to detect deadlocks and cycles
124: #options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
125: #options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
1.3.2.1 ! misho 126: #options VERBOSE_SYSINIT=0 # Support debug.verbose_sysinit, off by default
1.2 misho 127:
1.3 misho 128: # Kernel dump features.
129: options EKCD # Support for encrypted kernel dumps
130: options GZIO # gzip-compressed kernel and user dumps
131: options ZSTDIO # zstd-compressed kernel and user dumps
1.3.2.1 ! misho 132: options DEBUGNET # debugnet networking
1.3 misho 133: options NETDUMP # netdump(4) client support
1.3.2.1 ! misho 134: options NETGDB # netgdb(4) client support
1.3 misho 135:
1.2 misho 136: # Make an SMP-capable kernel by default
137: options SMP # Symmetric MultiProcessor Kernel
138: options EARLY_AP_STARTUP
139:
140: # CPU frequency control
141: device cpufreq
142:
143: # Bus support.
144: device acpi
1.3.2.1 ! misho 145: device smbios
! 146: options IOMMU
1.2 misho 147: device pci
148: options PCI_HP # PCI-Express native HotPlug
149: options PCI_IOV # PCI SR-IOV support
150:
1.3.2.1 ! misho 151: options COMPAT_LINUXKPI
! 152:
1.2 misho 153: # Floppy drives
154: device fdc
155:
156: # ATA controllers
157: device ahci # AHCI-compatible SATA controllers
158: device ata # Legacy ATA/SATA controllers
159: device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
160: device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA
161:
162: # SCSI Controllers
163: device ahc # AHA2940 and onboard AIC7xxx devices
164: device ahd # AHA39320/29320 and onboard AIC79xx devices
165: device esp # AMD Am53C974 (Tekram DC-390(T))
166: device hptiop # Highpoint RocketRaid 3xxx series
167: device isp # Qlogic family
168: #device ispfw # Firmware for QLogic HBAs- normally a module
169: device mpt # LSI-Logic MPT-Fusion
170: device mps # LSI-Logic MPT-Fusion 2
171: device mpr # LSI-Logic MPT-Fusion 3
1.3.2.1 ! misho 172: device sym # NCR/Symbios Logic
1.2 misho 173: device isci # Intel C600 SAS controller
1.3 misho 174: device ocs_fc # Emulex FC adapters
1.3.2.1 ! misho 175: device pvscsi # VMware PVSCSI
1.2 misho 176:
177: # ATA/SCSI peripherals
178: device scbus # SCSI bus (required for ATA/SCSI)
179: device ch # SCSI media changers
180: device da # Direct Access (disks)
181: device sa # Sequential Access (tape etc)
182: device cd # CD
183: device pass # Passthrough device (direct ATA/SCSI access)
184: device ses # Enclosure Services (SES and SAF-TE)
185: #device ctl # CAM Target Layer
186:
187: # RAID controllers interfaced to the SCSI subsystem
188: device amr # AMI MegaRAID
189: device arcmsr # Areca SATA II RAID
190: device ciss # Compaq Smart RAID 5*
191: device iir # Intel Integrated RAID
192: device ips # IBM (Adaptec) ServeRAID
193: device mly # Mylex AcceleRAID/eXtremeRAID
194: device twa # 3ware 9000 series PATA/SATA RAID
1.3 misho 195: device smartpqi # Microsemi smartpqi driver
1.2 misho 196: device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
197:
198: # RAID controllers
199: device aac # Adaptec FSA RAID
200: device aacp # SCSI passthrough for aac (requires CAM)
201: device aacraid # Adaptec by PMC RAID
202: device ida # Compaq Smart RAID
203: device mfi # LSI MegaRAID SAS
204: device mlx # Mylex DAC960 family
205: device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
206: device pmspcv # PMC-Sierra SAS/SATA Controller driver
207: #XXX pointer/int warnings
208: #device pst # Promise Supertrak SX6000
209: device twe # 3ware ATA RAID
210:
211: # NVM Express (NVMe) support
212: device nvme # base NVMe driver
213: device nvd # expose NVMe namespaces as disks, depends on nvme
214:
1.3.2.1 ! misho 215: # Intel Volume Management Device (VMD) support
! 216: device vmd # base VMD device
! 217: device vmd_bus # bus for VMD children
! 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.3.2.1 ! 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 pccard # PC Card (16-bit) bus
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
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.3.2.1 ! misho 268: device ice # Intel 800 Series Physical Function
1.3 misho 269: device vmx # VMware VMXNET3 Ethernet
1.3.2.1 ! 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.3.2.1 ! 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 an # Aironet 4500/4800 802.11 wireless NICs.
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.3.2.1 ! 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.3.2.1 ! 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.3.2.1 ! 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.3.2.1 ! 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>