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