Diff for /elwix/config/ELWIX_amd64 between versions 1.2 and 1.3

version 1.2, 2017/02/13 16:52:46 version 1.3, 2021/03/11 13:59:50
Line 1 Line 1
 # $Id$  # $Id$
# $FreeBSD: head/sys/amd64/conf/GENERIC 271137 2014-09-04 21:06:33Z markj $# $FreeBSD: stable/12/sys/amd64/conf/GENERIC 354439 2019-11-07 13:01:09Z hselasky $
   
 cpu             HAMMER  cpu             HAMMER
 ident           ELWIX_amd64  ident           ELWIX_amd64
   machine         amd64
   
#include                DEFAULTS# Bus support.
 device          isa
   
   # Pseudo devices.
   device          mem             # Memory and kernel memory devices
   device          io              # I/O device
   
   # UART chips on this platform
   device          uart_ns8250
   device          superio
   
   options         NEW_PCIB
   
 hints           "ELWIX_amd64.hints"     # Default places to look for devices.  hints           "ELWIX_amd64.hints"     # Default places to look for devices.
   
 options         INIT_PATH=/sbin/initx:/sbin/init  options         INIT_PATH=/sbin/initx:/sbin/init
   
 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols  makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
#makeoptions     WITH_CTF=1              # Run ctfconvert(1) for DTrace supportmakeoptions     WITH_CTF=1              # Run ctfconvert(1) for DTrace support
   
 options         SCHED_ULE               # ULE scheduler  options         SCHED_ULE               # ULE scheduler
   options         NUMA                    # Non-Uniform Memory Architecture support
 options         PREEMPTION              # Enable kernel thread preemption  options         PREEMPTION              # Enable kernel thread preemption
   options         VIMAGE                  # Subsystem virtualization, e.g. VNET
 options         INET                    # InterNETworking  options         INET                    # InterNETworking
 options         INET6                   # IPv6 communications protocols  options         INET6                   # IPv6 communications protocols
 options         IPSEC                   # IP (v4/v6) security  options         IPSEC                   # IP (v4/v6) security
   options         IPSEC_SUPPORT           # Allow kldload of ipsec and tcpmd5
 options         TCP_OFFLOAD             # TCP offload  options         TCP_OFFLOAD             # TCP offload
   options         TCP_BLACKBOX            # Enhanced TCP event logging
 options         TCP_HHOOK               # hhook(9) framework for TCP  options         TCP_HHOOK               # hhook(9) framework for TCP
   options         TCP_RFC7413             # TCP Fast Open
 options         SCTP                    # Stream Control Transmission Protocol  options         SCTP                    # Stream Control Transmission Protocol
 options         FFS                     # Berkeley Fast Filesystem  options         FFS                     # Berkeley Fast Filesystem
 options         SOFTUPDATES             # Enable FFS soft updates support  options         SOFTUPDATES             # Enable FFS soft updates support
Line 36  options  MSDOSFS   # MSDOS Filesystem Line 53  options  MSDOSFS   # MSDOS Filesystem
 options         CD9660                  # ISO 9660 Filesystem  options         CD9660                  # ISO 9660 Filesystem
 options         PROCFS                  # Process filesystem (requires PSEUDOFS)  options         PROCFS                  # Process filesystem (requires PSEUDOFS)
 options         PSEUDOFS                # Pseudo-filesystem framework  options         PSEUDOFS                # Pseudo-filesystem framework
 options         GEOM_PART_GPT           # GUID Partition Tables.  
 options         GEOM_RAID               # Soft RAID functionality.  options         GEOM_RAID               # Soft RAID functionality.
 options         GEOM_LABEL              # Provides labelization  options         GEOM_LABEL              # Provides labelization
#options         GEOM_GATEoptions         EFIRT                   # EFI Runtime Services support
 options         GEOM_MAP  options         GEOM_MAP
 options         GEOM_UZIP  options         GEOM_UZIP
 #device         geom_redboot  #device         geom_redboot
 device          geom_map        # to get access to the SPI flash partitions  device          geom_map        # to get access to the SPI flash partitions
 device          geom_uzip       # compressed in-memory filesystem support  device          geom_uzip       # compressed in-memory filesystem support
   device          xz
   options         GEOM_PART_BSD
   options         GEOM_PART_EBR
   options         GEOM_PART_EBR_COMPAT
   options         GEOM_PART_MBR
   options         GEOM_PART_GPT
 options         GEOM_ELI  options         GEOM_ELI
 options         GEOM_MIRROR  options         GEOM_MIRROR
 options         GEOM_CONCAT  options         GEOM_CONCAT
Line 52  options  GEOM_STRIPE Line 74  options  GEOM_STRIPE
 options         GEOM_VIRSTOR  options         GEOM_VIRSTOR
 options         GEOM_CACHE  options         GEOM_CACHE
 options         GEOM_MULTIPATH  options         GEOM_MULTIPATH
 #options        GEOM_LINUX_LVM          # Linux LVM2 volumes  
 options         COMPAT_43TTY            # BSD 4.3 TTY compat (sgtty)  
 options         COMPAT_FREEBSD32        # Compatible with i386 binaries  options         COMPAT_FREEBSD32        # Compatible with i386 binaries
 options         COMPAT_FREEBSD4         # Compatible with FreeBSD4  options         COMPAT_FREEBSD4         # Compatible with FreeBSD4
 options         COMPAT_FREEBSD5         # Compatible with FreeBSD5  options         COMPAT_FREEBSD5         # Compatible with FreeBSD5
Line 85  options  INCLUDE_CONFIG_FILE # Include this file in ke Line 105  options  INCLUDE_CONFIG_FILE # Include this file in ke
 options         RACCT                   # Resource accounting framework  options         RACCT                   # Resource accounting framework
 options         RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default  options         RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
 options         RCTL                    # Resource limits  options         RCTL                    # Resource limits
 options         FLOWTABLE               # per-cpu routing cache  
   
 # Debugging support.  Always need this:  # Debugging support.  Always need this:
#options         KDB                     # Enable kernel debugger support.options         KDB                     # Enable kernel debugger support.
#options         KDB_TRACE               # Print a stack trace for a panic.options         KDB_TRACE               # Print a stack trace for a panic.
 # For full debugger support use (turn off in stable branch):  # For full debugger support use (turn off in stable branch):
 #options        BUF_TRACKING            # Track buffer history  #options        BUF_TRACKING            # Track buffer history
#options         DDB                     # Support DDB.options         DDB                     # Support DDB.
 #options        FULL_BUF_TRACKING       # Track more buffer history  #options        FULL_BUF_TRACKING       # Track more buffer history
#options         GDB                     # Support remote GDB.options         GDB                     # Support remote GDB.
 #options        DEADLKRES               # Enable the deadlock resolver  #options        DEADLKRES               # Enable the deadlock resolver
 #options        INVARIANTS              # Enable calls of extra sanity checking  #options        INVARIANTS              # Enable calls of extra sanity checking
 #options        INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS  #options        INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
Line 102  options  FLOWTABLE  # per-cpu routing cache Line 121  options  FLOWTABLE  # per-cpu routing cache
 #options        WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed  #options        WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
 #options        MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones  #options        MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
   
   # Kernel dump features.
   options         EKCD                    # Support for encrypted kernel dumps
   options         GZIO                    # gzip-compressed kernel and user dumps
   options         ZSTDIO                  # zstd-compressed kernel and user dumps
   options         NETDUMP                 # netdump(4) client support
   
 # Make an SMP-capable kernel by default  # Make an SMP-capable kernel by default
 options         SMP                     # Symmetric MultiProcessor Kernel  options         SMP                     # Symmetric MultiProcessor Kernel
 options         DEVICE_NUMA             # I/O Device Affinity  
 options         EARLY_AP_STARTUP  options         EARLY_AP_STARTUP
   
 # CPU frequency control  # CPU frequency control
Line 128  device  siis   # SiliconImage SiI3124/SiI3132/SiI3531  Line 152  device  siis   # SiliconImage SiI3124/SiI3132/SiI3531 
   
 # SCSI Controllers  # SCSI Controllers
 device          ahc                     # AHA2940 and onboard AIC7xxx devices  device          ahc                     # AHA2940 and onboard AIC7xxx devices
 options         AHC_REG_PRETTY_PRINT    # Print register bitfields in debug  
                                         # output.  Adds ~128k to driver.  
 device          ahd                     # AHA39320/29320 and onboard AIC79xx devices  device          ahd                     # AHA39320/29320 and onboard AIC79xx devices
 options         AHD_REG_PRETTY_PRINT    # Print register bitfields in debug  
                                         # output.  Adds ~215k to driver.  
 device          esp                     # AMD Am53C974 (Tekram DC-390(T))  device          esp                     # AMD Am53C974 (Tekram DC-390(T))
 device          hptiop                  # Highpoint RocketRaid 3xxx series  device          hptiop                  # Highpoint RocketRaid 3xxx series
 device          isp                     # Qlogic family  device          isp                     # Qlogic family
Line 143  device  mpr   # LSI-Logic MPT-Fusion 3 Line 163  device  mpr   # LSI-Logic MPT-Fusion 3
 #device         ncr                     # NCR/Symbios Logic  #device         ncr                     # NCR/Symbios Logic
 device          sym                     # NCR/Symbios Logic (newer chipsets + those of `ncr')  device          sym                     # NCR/Symbios Logic (newer chipsets + those of `ncr')
 device          trm                     # Tekram DC395U/UW/F DC315U adapters  device          trm                     # Tekram DC395U/UW/F DC315U adapters
   
 device          adv                     # Advansys SCSI adapters  
 device          adw                     # Advansys wide SCSI adapters  
 device          aic                     # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.  
 device          bt                      # Buslogic/Mylex MultiMaster SCSI adapters  
 device          isci                    # Intel C600 SAS controller  device          isci                    # Intel C600 SAS controller
   device          ocs_fc                  # Emulex FC adapters
   
 # ATA/SCSI peripherals  # ATA/SCSI peripherals
 device          scbus                   # SCSI bus (required for ATA/SCSI)  device          scbus                   # SCSI bus (required for ATA/SCSI)
Line 173  device  iir   # Intel Integrated RAID Line 189  device  iir   # Intel Integrated RAID
 device          ips                     # IBM (Adaptec) ServeRAID  device          ips                     # IBM (Adaptec) ServeRAID
 device          mly                     # Mylex AcceleRAID/eXtremeRAID  device          mly                     # Mylex AcceleRAID/eXtremeRAID
 device          twa                     # 3ware 9000 series PATA/SATA RAID  device          twa                     # 3ware 9000 series PATA/SATA RAID
   device          smartpqi                # Microsemi smartpqi driver
 device          tws                     # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller  device          tws                     # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
   
 # RAID controllers  # RAID controllers
Line 233  device  ppi   # Parallel port interface device Line 250  device  ppi   # Parallel port interface device
   
 device          puc                     # Multi I/O cards and multi-channel UARTs  device          puc                     # Multi I/O cards and multi-channel UARTs
   
# PCI Ethernet NICs.# PCI/PCI-X/PCIe Ethernet NICs that use iflib infrastructure
device          bxe                     # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbEdevice          iflib
device          de                      # DEC/Intel DC21x4x (``Tulip'') 
 device          em                      # Intel PRO/1000 Gigabit Ethernet Family  device          em                      # Intel PRO/1000 Gigabit Ethernet Family
 device          igb                     # Intel PRO/1000 PCIE Server Gigabit Family  
 device          ix                      # Intel PRO/10GbE PCIE PF Ethernet  device          ix                      # Intel PRO/10GbE PCIE PF Ethernet
 device          ixv                     # Intel PRO/10GbE PCIE VF Ethernet  device          ixv                     # Intel PRO/10GbE PCIE VF Ethernet
device          ixl                     # Intel XL710 40Gbe PCIE Ethernetdevice          ixl                     # Intel 700 Series Physical Function
device          ixlv                    # Intel XL710 40Gbe VF PCIE Ethernetdevice          iavf                    # Intel Adaptive Virtual Function
 device          vmx                     # VMware VMXNET3 Ethernet
 
 # PCI Ethernet NICs.
 device          bxe                     # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
 device          de                      # DEC/Intel DC21x4x (``Tulip'')
 #option         IXL_IW                  # Enable iWARP Client Interface in ixl(4)
 #device          ixlv                    # Intel XL710 40Gbe VF PCIE Ethernet
 device          le                      # AMD Am7900 LANCE and Am79C9xx PCnet  device          le                      # AMD Am7900 LANCE and Am79C9xx PCnet
 device          ti                      # Alteon Networks Tigon I/II gigabit Ethernet  device          ti                      # Alteon Networks Tigon I/II gigabit Ethernet
 device          txp                     # 3Com 3cR990 (``Typhoon'')  device          txp                     # 3Com 3cR990 (``Typhoon'')
Line 284  device  vr   # VIA Rhine, Rhine II Line 306  device  vr   # VIA Rhine, Rhine II
 device          wb                      # Winbond W89C840F  device          wb                      # Winbond W89C840F
 device          xl                      # 3Com 3c90x (``Boomerang'', ``Cyclone'')  device          xl                      # 3Com 3c90x (``Boomerang'', ``Cyclone'')
   
# ISA Ethernet NICs.  pccard NICs included.#options         XBONEHACK
device          cs              # Crystal Semiconductor CS89x0 NIC 
# 'device ed' requires 'device miibus' 
device          ed              # NE[12]000, SMC Ultra, 3c503, DS8390 cards 
device          ex              # Intel EtherExpress Pro/10 and Pro/10+ 
device          ep              # Etherlink III based cards 
device          fe              # Fujitsu MB8696x based cards 
device          sn              # SMC's 9000 series of Ethernet chips 
device          xe              # Xircom pccard Ethernet 
 
options         XBONEHACK 
 device          wlan_acl  device          wlan_acl
 device          wlan_xauth  device          wlan_xauth
 device          wlan_rssadapt  device          wlan_rssadapt
Line 339  device  mwlfw Line 351  device  mwlfw
 device          wpifw  device          wpifw
   
 # Pseudo devices.  # Pseudo devices.
   device          crypto                  # core crypto support
 device          loop                    # Network loopback  device          loop                    # Network loopback
 device          random                  # Entropy device  device          random                  # Entropy device
 device          padlock_rng             # VIA Padlock RNG  device          padlock_rng             # VIA Padlock RNG
 device          rdrand_rng              # Intel Bull Mountain RNG  device          rdrand_rng              # Intel Bull Mountain RNG
 device          ether                   # Ethernet support  device          ether                   # Ethernet support
 device          vlan                    # 802.1Q VLAN support  device          vlan                    # 802.1Q VLAN support
device          tun                     # Packet tunnel.device          tuntap                        # Packet tunnel.
 device          md                      # Memory "disks"  device          md                      # Memory "disks"
 device          gif                     # IPv6 and IPv4 tunneling  device          gif                     # IPv6 and IPv4 tunneling
 device          firmware                # firmware assist module  device          firmware                # firmware assist module
Line 356  device  firmware  # firmware assist module Line 369  device  firmware  # firmware assist module
 device          bpf                     # Berkeley packet filter  device          bpf                     # Berkeley packet filter
   
 # USB support  # USB support
#options         USB_DEBUG               # enable debug msgsoptions         USB_DEBUG               # enable debug msgs
 device          uhci                    # UHCI PCI->USB interface  device          uhci                    # UHCI PCI->USB interface
 device          ohci                    # OHCI PCI->USB interface  device          ohci                    # OHCI PCI->USB interface
 device          ehci                    # EHCI PCI->USB interface (USB 2.0)  device          ehci                    # EHCI PCI->USB interface (USB 2.0)
Line 396  device  ucom Line 409  device  ucom
 device          umcs  device          umcs
   
 # FireWire support  # FireWire support
device          firewire        # FireWire bus code#device          firewire        # FireWire bus code
# sbp(4) works for some systems but causes boot failure on others## sbp(4) works for some systems but causes boot failure on others
#device          sbp             # SCSI over FireWire (Requires scbus and da)##device          sbp             # SCSI over FireWire (Requires scbus and da)
device          fwe             # Ethernet over FireWire (non-standard!)#device          fwe             # Ethernet over FireWire (non-standard!)
device          fwip            # IP over FireWire (RFC 2734,3146)#device          fwip            # IP over FireWire (RFC 2734,3146)
device          dcons           # Dumb console driver#device          dcons           # Dumb console driver
device          dcons_crom      # Configuration ROM for dcons#device          dcons_crom      # Configuration ROM for dcons
   
 # Sound support  # Sound support
 device          sound                   # Generic sound driver (required)  device          sound                   # Generic sound driver (required)
Line 427  device  virtio_blk  # VirtIO Block device Line 440  device  virtio_blk  # VirtIO Block device
 device          virtio_scsi             # VirtIO SCSI device  device          virtio_scsi             # VirtIO SCSI device
 device          virtio_balloon          # VirtIO Memory Balloon device  device          virtio_balloon          # VirtIO Memory Balloon device
   
# HyperV drivers and enchancement support# HyperV drivers and enhancement support
 device          hyperv                  # HyperV drivers   device          hyperv                  # HyperV drivers 
   
 # Xen HVM Guest Optimizations  # Xen HVM Guest Optimizations
Line 435  device  hyperv   # HyperV drivers  Line 448  device  hyperv   # HyperV drivers 
 options         XENHVM                  # Xen HVM kernel infrastructure  options         XENHVM                  # Xen HVM kernel infrastructure
 device          xenpci                  # Xen HVM Hypervisor services driver  device          xenpci                  # Xen HVM Hypervisor services driver
   
# VMware support# Netmap provides direct access to TX/RX rings on supported NICs
device          vmx                        # VMware VMXNET3 Ethernetdevice          netmap                        # netmap(4) support
   
   # evdev interface
   options         EVDEV_SUPPORT           # evdev support in legacy drivers
   device          evdev                   # input event device support
   device          uinput                  # install /dev/uinput cdev
   
 ### ELWIX Additional custom settings ...  ### ELWIX Additional custom settings ...
   
   # Add multiple route table support
   #options     ROUTETABLES=16
   
   device      cxgb    # Chelsio T3 10 Gigabit Ethernet adapter driver
   device      cxgb_t3fw   # Chelsio T3 10 Gigabit Ethernet firmware
   device      cxgbe   # Chelsio T4 10Gb and 1Gb Ethernet adapter driver
   device      my      # Myson Technology Ethernet PCI driver
   device      mxge    # Myricom Myri10GE 10 Gigabit Ethernet adapter driver
   device      qlxge   # QLogic 8100 Series 10 Gigabit Ethernet
   device      oce     # Device driver for Emulex OneConnect 10Gb network adapters
   
 #device         iscsi_initiator  #device         iscsi_initiator
   
 device          if_bridge  device          if_bridge
 device          tap  
 device          gre  device          gre
 device          lagg  device          lagg
 device          carp  device          carp
   
device          siba_bwn#device          siba_bwn
   
#options                NDISAPI#options        NDISAPI
 #device         ndis  #device         ndis
   
 device          pf  device          pf
Line 459  device  pfsync Line 487  device  pfsync
   
 device          hifn  device          hifn
 device          enc  device          enc
 device          crypto  
 device          cryptodev  device          cryptodev
options         IPSEC_NAT_Toptions         TCP_SIGNATURE       #include support for RFC 2385
   
 options         ALTQ  options         ALTQ
 options         ALTQ_CBQ  options         ALTQ_CBQ
Line 539  device  smb Line 566  device  smb
 device          smbus  device          smbus
 device          iicbus  device          iicbus
 device          iicbb  device          iicbb
device          bktr#device          bktr
options         BKTR_NEW_MSP34XX_DRIVER#options         BKTR_NEW_MSP34XX_DRIVER
options         BKTR_KODICOM_MUX#options         BKTR_KODICOM_MUX
 device          speaker  device          speaker
   
 device          ds133x  device          ds133x
Line 576  device  wbwd Line 603  device  wbwd
   
 #device         disc  #device         disc
 #device         edsc  #device         edsc
 options         VIMAGE  
 #device         epair  #device         epair
 device          stf  device          stf
   
 # NETMAP subsystem  
 device          netmap  
   
 device          rlswitch  device          rlswitch
   
 options         ACCEPT_FILTER_DATA  options         ACCEPT_FILTER_DATA
Line 592  options  ACCEPT_FILTER_HTTP Line 615  options  ACCEPT_FILTER_HTTP
 options         SW_WATCHDOG  options         SW_WATCHDOG
   
 device          etherswitch  device          etherswitch
device          rtl8366rb#device          rtl8366rb

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>