Annotation of elwix/config/ELWIX_i386, revision 1.8.2.3
1.8.2.3 ! misho 1: # $Id: ELWIX_i386,v 1.8.2.2 2021/09/14 15:16:23 misho Exp $
1.8 misho 2: # $FreeBSD$
1.2 misho 3:
1.8.2.1 misho 4: machine i386
1.2 misho 5: cpu I486_CPU
6: cpu I586_CPU
7: cpu I686_CPU
8: ident ELWIX_i386
9:
1.4 misho 10: #include DEFAULTS
1.2 misho 11:
12: hints "ELWIX_i386.hints" # Default places to look for devices.
13:
14: options INIT_PATH=/sbin/initx:/sbin/init
15:
16: makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
1.7 misho 17: makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
1.2 misho 18:
1.8.2.1 misho 19: # Pseudo devices.
20: device mem # Memory and kernel memory devices
21: device io # I/O device
22:
1.7 misho 23: # UART chips on this platform
24: device uart_ns8250
25:
1.8.2.3 ! misho 26: # Default congestion control algorithm
! 27: options CC_CUBIC # include CUBIC congestion control
! 28:
1.7 misho 29: # enable support for native hardware
30: device atpic
1.8.2.1 misho 31: options NEW_PCIB
1.7 misho 32:
1.2 misho 33: options SCHED_ULE # ULE scheduler
34: options PREEMPTION # Enable kernel thread preemption
1.7 misho 35: options VIMAGE # Subsystem virtualization, e.g. VNET
1.2 misho 36: options INET # InterNETworking
37: options INET6 # IPv6 communications protocols
1.6 misho 38: options IPSEC # IP (v4/v6) security
1.7 misho 39: options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5
1.8.2.3 ! misho 40: options ROUTE_MPATH # Multipath routing support
1.6 misho 41: options TCP_HHOOK # hhook(9) framework for TCP
1.2 misho 42: options TCP_OFFLOAD # TCP offload
1.8 misho 43: options SCTP_SUPPORT # Allow kldload of SCTP
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
1.3 misho 50: options MD_ROOT # MD is a potential root device
1.6 misho 51: options NFSCL # Network Filesystem Client
52: options NFSD # Network Filesystem Server
1.2 misho 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.8 misho 59: options TMPFS # Efficient memory filesystem
1.7 misho 60: options GEOM_PART_BSD
61: options GEOM_PART_EBR
62: options GEOM_PART_MBR
1.8.2.3 ! misho 63: options GEOM_PART_GPT
1.2 misho 64: options GEOM_RAID # Soft RAID functionality.
65: options GEOM_LABEL # Provides labelization
1.6 misho 66: options GEOM_MAP
1.2 misho 67: options GEOM_UZIP
1.8 misho 68: device xz
1.2 misho 69: #device geom_redboot
70: device geom_map # to get access to the SPI flash partitions
1.6 misho 71: device geom_uzip # compressed in-memory filesystem support
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
1.6 misho 79: #options GEOM_LINUX_LVM # Linux LVM2 volumes
1.2 misho 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
1.6 misho 84: options COMPAT_FREEBSD9 # Compatible with FreeBSD9
85: options COMPAT_FREEBSD10 # Compatible with FreeBSD10
86: options COMPAT_FREEBSD11 # Compatible with FreeBSD11
1.8 misho 87: options COMPAT_FREEBSD12 # Compatible with FreeBSD12
1.8.2.3 ! misho 88: options COMPAT_FREEBSD13 # Compatible with FreeBSD13
1.2 misho 89: options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
90: options KTRACE # ktrace(1) support
91: options STACK # stack(9) support
92: options SYSVSHM # SYSV-style shared memory
93: options SYSVMSG # SYSV-style message queues
94: options SYSVSEM # SYSV-style semaphores
95: options P1003_1B_MQUEUE
96: options P1003_1B_SEMAPHORES # POSIX-style semaphores
97: options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
98: options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
99: options KBD_INSTALL_CDEV # install a CDEV entry in /dev
100: options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
101: options AUDIT # Security event auditing
102: options CAPABILITY_MODE # Capsicum capability mode
103: options CAPABILITIES # Capsicum capabilities
104: options MAC # TrustedBSD MAC Framework
1.7 misho 105: options KDTRACE_HOOKS # Kernel DTrace hooks
106: options DDB_CTF # Kernel ELF linker loads CTF data
1.6 misho 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
1.8 misho 111: options RATELIMIT # TX rate limiting support
112: options KERN_TLS # TLS transmit and receive offload
1.8.2.3 ! misho 113: options NETLINK # netlink(4) support
1.2 misho 114:
115: # Debugging support. Always need this:
1.7 misho 116: options KDB # Enable kernel debugger support.
117: options KDB_TRACE # Print a stack trace for a panic.
1.4 misho 118: # For full debugger support use (turn off in stable branch):
1.7 misho 119: options DDB # Support DDB.
120: options GDB # Support remote GDB.
1.2 misho 121: #options DEADLKRES # Enable the deadlock resolver
122: #options INVARIANTS # Enable calls of extra sanity checking
123: #options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
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.8 misho 127: options VERBOSE_SYSINIT=0 # Support debug.verbose_sysinit, off by default
1.2 misho 128:
1.7 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.8 misho 133: options DEBUGNET # debugnet networking
1.7 misho 134: options NETDUMP # netdump(4) client support
1.8 misho 135: options NETGDB # netgdb(4) client support
1.7 misho 136:
1.2 misho 137: # To make an SMP kernel, the next two lines are needed
138: options SMP # Symmetric MultiProcessor Kernel
139: device apic # I/O APIC
1.7 misho 140: options EARLY_AP_STARTUP
1.2 misho 141:
142: # CPU frequency control
143: device cpufreq
144:
145: # Bus support.
1.7 misho 146: device isa
147: options ISAPNP
1.2 misho 148: device acpi
1.8 misho 149: device smbios
1.2 misho 150: device pci
1.6 misho 151: options PCI_HP # PCI-Express native HotPlug
1.8.2.3 ! misho 152: options PCI_IOV # PCI SR-IOV support
1.2 misho 153:
154: # Floppy drives
155: device fdc
156:
157: # ATA controllers
1.6 misho 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
1.2 misho 162:
163: # SCSI Controllers
1.6 misho 164: device ahc # AHA2940 and onboard AIC7xxx devices
165: device hptiop # Highpoint RocketRaid 3xxx series
166: device isp # Qlogic family
167: #device ispfw # Firmware for QLogic HBAs- normally a module
168: device mpt # LSI-Logic MPT-Fusion
169: device mps # LSI-Logic MPT-Fusion 2
170: device mpr # LSI-Logic MPT-Fusion 3
1.8 misho 171: device sym # NCR/Symbios Logic
1.6 misho 172: device isci # Intel C600 SAS controller
1.8 misho 173: device pvscsi # VMware PVSCSI
1.2 misho 174:
175: # ATA/SCSI peripherals
1.6 misho 176: device scbus # SCSI bus (required for ATA/SCSI)
177: device ch # SCSI media changers
178: device da # Direct Access (disks)
179: device sa # Sequential Access (tape etc)
180: device cd # CD
181: device pass # Passthrough device (direct ATA/SCSI access)
182: device ses # Enclosure Services (SES and SAF-TE)
183: #device ctl # CAM Target Layer
1.2 misho 184:
185: # RAID controllers interfaced to the SCSI subsystem
1.6 misho 186: device arcmsr # Areca SATA II RAID
187: device ciss # Compaq Smart RAID 5*
188: device ips # IBM (Adaptec) ServeRAID
189: device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
1.2 misho 190:
191: # RAID controllers
1.6 misho 192: device aac # Adaptec FSA RAID
193: device aacp # SCSI passthrough for aac (requires CAM)
194: device aacraid # Adaptec by PMC RAID
195: device ida # Compaq Smart RAID
196: device mfi # LSI MegaRAID SAS
197: device mlx # Mylex DAC960 family
198: device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
199: device pst # Promise Supertrak SX6000
200:
201: # NVM Express (NVMe) support
202: device nvme # base NVMe driver
203: device nvd # expose NVMe namespace as disks, depends on nvme
1.2 misho 204:
205: # atkbdc0 controls both the keyboard and the PS/2 mouse
1.6 misho 206: device atkbdc # AT keyboard controller
207: device atkbd # AT keyboard
208: device psm # PS/2 mouse
1.2 misho 209:
1.6 misho 210: device kbdmux # keyboard multiplexer
1.2 misho 211:
1.8.2.3 ! misho 212: # syscons is the legacy console driver, resembling an SCO console
1.6 misho 213: device vga # VGA video card driver
214: options VESA # Add support for VESA BIOS Extensions (VBE)
1.2 misho 215:
1.6 misho 216: device splash # Splash screen and screen saver support
1.2 misho 217: device sc
1.6 misho 218: options SC_PIXEL_MODE # add support for the raster text mode
1.2 misho 219:
1.8.2.3 ! misho 220: # vt is the default video console driver
1.5 misho 221: device vt
222: device vt_vga
1.8 misho 223: device vt_vbefb
1.5 misho 224:
225: device agp # support several AGP chipsets
1.2 misho 226:
1.8.2.3 ! misho 227: # CardBus bridge support
! 228: device cbb # CardBus (yenta) bridge
1.6 misho 229: device cardbus # CardBus (32-bit) bus
1.2 misho 230:
231: # Serial (COM) ports
1.6 misho 232: device uart # Generic UART driver
1.2 misho 233:
234: # Parallel port
235: device ppc
1.6 misho 236: device ppbus # Parallel port bus (required)
237: device lpt # Printer
238: device ppi # Parallel port interface device
239: #device vpo # Requires scbus and da
1.2 misho 240:
1.6 misho 241: device puc # Multi I/O cards and multi-channel UARTs
1.2 misho 242:
1.8 misho 243: # PCI/PCI-X/PCIe Ethernet NICs that use iflib infrastructure
244: device iflib
1.8.2.1 misho 245: device igc # Intel I225 2.5G Ethernet
1.8 misho 246: device em # Intel PRO/1000 Gigabit Ethernet Family
247: device vmx # VMware VMXNET3 Ethernet
248:
1.2 misho 249: # PCI Ethernet NICs.
1.6 misho 250: device bxe # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
251: device le # AMD Am7900 LANCE and Am79C9xx PCnet
252: device ti # Alteon Networks Tigon I/II gigabit Ethernet
1.2 misho 253:
254: # PCI Ethernet NICs that use the common MII bus controller code.
255: # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
1.6 misho 256: device miibus # MII bus support
257: device ae # Attansic/Atheros L2 FastEthernet
258: device age # Attansic/Atheros L1 Gigabit Ethernet
259: device alc # Atheros AR8131/AR8132 Ethernet
260: device ale # Atheros AR8121/AR8113/AR8114 Ethernet
261: device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
262: device bfe # Broadcom BCM440x 10/100 Ethernet
263: device bge # Broadcom BCM570xx Gigabit Ethernet
264: #device cas # Sun Cassini/Cassini+ and NS DP83065 Saturn
265: device dc # DEC/Intel 21143 and various workalikes
266: device et # Agere ET1310 10/100/Gigabit Ethernet
267: device fxp # Intel EtherExpress PRO/100B (82557, 82558)
268: #device gem # Sun GEM/Sun ERI/Apple GMAC
269: device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
270: device lge # Level 1 LXT1001 gigabit Ethernet
271: device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
272: device nfe # nVidia nForce MCP on-board Ethernet
273: device nge # NatSemi DP83820 gigabit Ethernet
274: device re # RealTek 8139C+/8169/8169S/8110S
275: device rl # RealTek 8129/8139
276: device sge # Silicon Integrated Systems SiS190/191
277: device sis # Silicon Integrated Systems SiS 900/SiS 7016
278: device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
279: device ste # Sundance ST201 (D-Link DFE-550TX)
280: device stge # Sundance/Tamarack TC9021 gigabit Ethernet
281: device vge # VIA VT612x gigabit Ethernet
282: device vr # VIA Rhine, Rhine II
283: device vte # DM&P Vortex86 RDC R6040 Fast Ethernet
284: device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
1.2 misho 285:
1.7 misho 286: #options XBONEHACK
1.2 misho 287: device wlan_acl
288: device wlan_xauth
289: device wlan_rssadapt
290: #options AH_RXCFG_SDMAMW_4BYTES
291: #options ATH_EEPROM_FIRMWARE # Use EEPROM from flash
292: options ALQ
293: options IEEE80211_ALQ
294: options IEEE80211_SUPPORT_TDMA
295: options IEEE80211_SUPPORT_SUPERG
296: # Wireless NIC cards
1.6 misho 297: device wlan # 802.11 support
298: options IEEE80211_DEBUG # enable debug msgs
1.2 misho 299: options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
1.6 misho 300: device wlan_wep # 802.11 WEP support
301: device wlan_ccmp # 802.11 CCMP support
302: device wlan_tkip # 802.11 TKIP support
303: device wlan_amrr # AMRR transmit rate control algorithm
304: device ath # Atheros NICs
305: device ath_hal # pci/cardbus chip support
306: options AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
307: options ATH_ENABLE_11N # Enable 802.11n support for AR5416 and later
308: device ath_rate_sample # SampleRate tx rate control for ath
309: #device bwi # Broadcom BCM430x/BCM431x wireless NICs.
310: #device bwn # Broadcom BCM43xx wireless NICs.
311: device ipw # Intel 2100 wireless NICs.
312: device iwi # Intel 2200BG/2225BG/2915ABG wireless NICs.
313: device iwn # Intel 4965/1000/5000/6000 wireless NICs.
314: device malo # Marvell Libertas wireless NICs.
315: device mwl # Marvell 88W8363 802.11n wireless NICs.
316: device ral # Ralink Technology RT2500 wireless NICs.
317: device wpi # Intel 3945ABG wireless NICs.
1.2 misho 318:
319: device iwifw
1.8 misho 320: device iwibssfw
321: device iwiibssfw
322: device iwimonitorfw
1.2 misho 323: device ipwfw
1.8 misho 324: device ipwbssfw
325: device ipwibssfw
326: device ipwmonitorfw
1.2 misho 327: device iwnfw
1.8 misho 328: device iwn1000fw
329: device iwn105fw
330: device iwn135fw
331: device iwn2000fw
332: device iwn2030fw
333: device iwn4965fw
334: device iwn5000fw
335: device iwn5150fw
336: device iwn6000fw
337: device iwn6000g2afw
338: device iwn6000g2bfw
339: device iwn6050fw
1.2 misho 340: device wpifw
341:
342: # Pseudo devices.
1.8 misho 343: device crypto # core crypto support
344: device aesni # AES-NI OpenCrypto module
1.6 misho 345: device loop # Network loopback
346: device padlock_rng # VIA Padlock RNG
347: device rdrand_rng # Intel Bull Mountain RNG
348: device ether # Ethernet support
349: device vlan # 802.1Q VLAN support
1.8 misho 350: device tuntap # Packet tunnel.
1.6 misho 351: device md # Memory "disks"
352: device gif # IPv6 and IPv4 tunneling
353: device firmware # firmware assist module
1.2 misho 354:
355: # The `bpf' device enables the Berkeley Packet Filter.
356: # Be aware of the administrative consequences of enabling this!
357: # Note that 'bpf' is required for DHCP.
1.6 misho 358: device bpf # Berkeley packet filter
1.2 misho 359:
360: # USB support
1.7 misho 361: options USB_DEBUG # enable debug msgs
1.6 misho 362: device uhci # UHCI PCI->USB interface
363: device ohci # OHCI PCI->USB interface
364: device ehci # EHCI PCI->USB interface (USB 2.0)
365: device xhci # XHCI PCI->USB interface (USB 3.0)
366: device usb # USB Bus (required)
367: device ukbd # Keyboard
368: device umass # Disks/Mass storage - Requires scbus and da
1.7 misho 369:
1.2 misho 370: # USB Serial devices
371: device u3g # USB-based 3G modems (Option, Huawei, Sierra)
372: device uark # Technologies ARK3116 based serial adapters
373: device ubsa # Belkin F5U103 and compatible serial adapters
374: device uftdi # For FTDI usb serial adapters
375: device uipaq # Some WinCE based devices
376: device uplcom # Prolific PL-2303 serial adapters
377: device uslcom # SI Labs CP2101/CP2102 serial adapters
378: device uvisor # Visor and Palm devices
379: device uvscom # USB serial support for DDI pocket's PHS
380: # USB Ethernet, requires miibus
381: device aue # ADMtek USB Ethernet
382: device axe # ASIX Electronics USB Ethernet
383: device cdce # Generic USB over Ethernet
384: device cue # CATC USB Ethernet
385: device kue # Kawasaki LSI USB Ethernet
386: device rue # RealTek RTL8150 USB Ethernet
387: device udav # Davicom DM9601E USB
388: # USB Wireless
389: device rum # Ralink Technology RT2501USB wireless NICs
390: device run # Ralink Technology RT2700/RT2800/RT3000 NICs.
391: device uath # Atheros AR5523 wireless NICs
392: device upgt # Conexant/Intersil PrismGT wireless NICs.
393: device ural # Ralink Technology RT2500USB wireless NICs
394: device urtw # Realtek RTL8187B/L wireless NICs
395: device zyd # ZyDAS zd1211/zd1211b wireless NICs
396:
397: device ucom
398: device umcs
399:
400: # Sound support
1.6 misho 401: device sound # Generic sound driver (required)
402: device snd_cmi # CMedia CMI8338/CMI8738
403: device snd_csa # Crystal Semiconductor CS461x/428x
404: device snd_emu10kx # Creative SoundBlaster Live! and Audigy
405: device snd_es137x # Ensoniq AudioPCI ES137x
406: device snd_hda # Intel High Definition Audio
407: device snd_ich # Intel, NVidia and other ICH AC'97 Audio
408: device snd_via8233 # VIA VT8233x Audio
1.2 misho 409:
410: # MMC/SD
1.6 misho 411: device mmc # MMC/SD bus
412: device mmcsd # MMC/SD memory card
413: device sdhci # Generic PCI SD Host Controller
1.2 misho 414:
415: # VirtIO support
1.6 misho 416: device virtio # Generic VirtIO bus (required)
417: device virtio_pci # VirtIO PCI device
418: device vtnet # VirtIO Ethernet device
419: device virtio_blk # VirtIO Block device
420: device virtio_scsi # VirtIO SCSI device
421: device virtio_balloon # VirtIO Memory Balloon device
1.2 misho 422:
1.8.2.2 misho 423: # Linux KVM paravirtualization support
424: device kvm_clock # KVM paravirtual clock driver
425:
1.7 misho 426: # HyperV drivers and enhancement support
1.8.2.1 misho 427: # NOTE: HYPERV depends on hyperv. They must be added or removed together.
428: options HYPERV # Kernel support for HyperV drivers
429: device hyperv # HyperV drivers
1.5 misho 430:
431: # Xen HVM Guest Optimizations
1.8.2.1 misho 432: # NOTE: XENHVM and xenpci interdepend. They must be added or removed
433: # together. xentimer depends on XENHVM and isn't required.
1.6 misho 434: options XENHVM # Xen HVM kernel infrastructure
435: device xenpci # Xen HVM Hypervisor services driver
1.8.2.1 misho 436: device xentimer # Xen x86 PV timer device
1.5 misho 437:
1.8 misho 438: # evdev interface
439: options EVDEV_SUPPORT # evdev support in legacy drivers
440: device evdev # input event device support
441: device uinput # install /dev/uinput cdev
442:
443: # HID support
444: options HID_DEBUG # enable debug msgs
445: device hid # Generic HID support
446: options IICHID_SAMPLING # Workaround missing GPIO INTR support
1.4 misho 447:
1.2 misho 448: ### ELWIX Additional custom settings ...
449:
1.7 misho 450: # Add multiple route table support
451: #options ROUTETABLES=16
452:
1.2 misho 453: device if_bridge
454: device gre
455: device lagg
456: device carp
457:
458: device pf
459: device pflog
460: device pfsync
461:
462: device hifn
463: device enc
464: device cryptodev
1.7 misho 465: options TCP_SIGNATURE #include support for RFC 2385
1.2 misho 466:
467: options ALTQ
468: options ALTQ_CBQ
469: options ALTQ_HFSC
470: options ALTQ_PRIQ
471: options ALTQ_CDNR
472: options ALTQ_RED
473: options ALTQ_RIO
474:
475: options MROUTING
476: options PPS_SYNC
477: options DEVICE_POLLING
478: options HZ=1000
479:
480: options IPFIREWALL
481: options IPFIREWALL_VERBOSE
482: options IPFIREWALL_VERBOSE_LIMIT=100
483: options IPFIREWALL_DEFAULT_TO_ACCEPT
484: options IPFIREWALL_NAT
485: options LIBALIAS
486: options IPDIVERT
487: options IPSTEALTH
488: options DUMMYNET
489:
490: options NETGRAPH
491: options NETGRAPH_ETHER
492: options NETGRAPH_SOCKET
493: options NETGRAPH_PPPOE
494: options NETGRAPH_KSOCKET
495: options NETGRAPH_PPTPGRE
496: options NETGRAPH_L2TP
497: options NETGRAPH_ECHO
498: options NETGRAPH_FRAME_RELAY
499: options NETGRAPH_LMI
500: options NETGRAPH_TTY
501: options NETGRAPH_CISCO
502: ##options NETGRAPH_MPPC_COMPRESSION
503: options NETGRAPH_MPPC_ENCRYPTION
504: options NETGRAPH_PPP
505: options NETGRAPH_VJC
506: options NETGRAPH_UI
507: options NETGRAPH_TCPMSS
508: options NETGRAPH_DEFLATE
509: options NETGRAPH_PRED1
510: options NETGRAPH_RFC1490
511: options NETGRAPH_SPPP
512: options NETGRAPH_TAG
513: options NETGRAPH_IPFW
514: options NETGRAPH_IFACE
515: options NETGRAPH_EIFACE
516: options NETGRAPH_TEE
517: options NETGRAPH_ASYNC
518: options NETGRAPH_SPLIT
519: options NETGRAPH_HOLE
520: options NETGRAPH_ONE2MANY
521: options NETGRAPH_NETFLOW
522: options NETGRAPH_BPF
523: options NETGRAPH_GIF
524: options NETGRAPH_GIF_DEMUX
525: options NETGRAPH_BRIDGE
526: options NETGRAPH_VLAN
527: options NETGRAPH_PIPE
528: options NETGRAPH_CAR
529:
530: options NULLFS
531: options UNIONFS
532:
533: device ic
534: device iic
535: device iicsmb
536: #device iicoc # OpenCores I2C controller support
537: device smb
538: device smbus
539: device iicbus
540: device iicbb
1.8 misho 541: #device bktr
542: #options BKTR_NEW_MSP34XX_DRIVER
543: #options BKTR_KODICOM_MUX
1.2 misho 544: device speaker
545:
546: device ds133x
547: device ds1374
548: device ds1672
549:
550: device intpm
551: device alpm
552: device ichsmb
553: device viapm
554: device amdpm
555: device amdsmb
556: device nfpm
557: device nfsmb
1.8 misho 558: device ismt
1.2 misho 559:
560: device ipmi
561: device pcf
562:
563: device gpio
564: device gpioled
565: device gpioiic
566:
567: device glxsb
568: device glxiic
569: options CPU_GEODE
570: options CPU_SOEKRIS
571: options COMPAT_AOUT
572: options ENABLE_ALART # Control alarm on Intel intpm driver
573: options PANIC_REBOOT_WAIT_TIME=10
574: device coretemp
575: device cpuctl
576: device nvram
577: device ichwd
578: device amdsbwd
579: device viawd
580: device wbwd
1.8 misho 581: device itwd
582: device superio
1.2 misho 583:
1.6 misho 584: device vxlan
585:
1.2 misho 586: #device disc
587: #device edsc
1.8 misho 588: device epair
1.2 misho 589: device stf
590:
1.6 misho 591: device netmap
1.2 misho 592:
593: device rlswitch
594:
595: options ACCEPT_FILTER_DATA
596: options ACCEPT_FILTER_DNS
597: options ACCEPT_FILTER_HTTP
598:
599: options SW_WATCHDOG
600:
601: device etherswitch
1.7 misho 602: #device rtl8366rb
1.8 misho 603:
604: #device cfi
605: #device cfid
606: #options CFI_SUPPORT_STRATAFLASH
607: #options CFI_ARMEDANDDANGEROUS
608:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>