[BACK]Return to GENERIC CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / amd64 / conf

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/arch/amd64/conf/GENERIC between version 1.404 and 1.404.2.13

version 1.404, 2014/11/16 16:01:40 version 1.404.2.13, 2017/08/28 17:51:28
Line 18 
Line 18 
 # of each device driver in this file see the section 4 man page for the  # of each device driver in this file see the section 4 man page for the
 # device.  # device.
   
 include "arch/amd64/conf/std.amd64"  include         "arch/amd64/conf/std.amd64"
   
 options         INCLUDE_CONFIG_FILE     # embed config file in kernel binary  options         INCLUDE_CONFIG_FILE     # embed config file in kernel binary
   
Line 60  options  NTP  # NTP phase/frequency lock
Line 60  options  NTP  # NTP phase/frequency lock
   
 options         KTRACE          # system call tracing via ktrace(1)  options         KTRACE          # system call tracing via ktrace(1)
   
 options         CPU_UCODE       # cpu ucode loading support  options         CPU_UCODE       # cpu ucode loading support
   
 # Note: SysV IPC parameters could be changed dynamically, see sysctl(8).  # Note: SysV IPC parameters could be changed dynamically, see sysctl(8).
 options         SYSVMSG         # System V-like message queues  options         SYSVMSG         # System V-like message queues
Line 73  options  USERCONF # userconf(4) support
Line 73  options  USERCONF # userconf(4) support
 #options        PIPE_SOCKETPAIR # smaller, but slower pipe(2)  #options        PIPE_SOCKETPAIR # smaller, but slower pipe(2)
 options         SYSCTL_INCLUDE_DESCR    # Include sysctl descriptions in kernel  options         SYSCTL_INCLUDE_DESCR    # Include sysctl descriptions in kernel
   
   # CPU-related options
   #options        USER_LDT        # user-settable LDT; used by WINE
   
 # CPU features  # CPU features
 acpicpu*        at cpu?         # ACPI CPU (including frequency scaling)  acpicpu*        at cpu?         # ACPI CPU (including frequency scaling)
 coretemp*       at cpu?         # Intel on-die thermal sensor  coretemp*       at cpu?         # Intel on-die thermal sensor
Line 81  est0  at cpu0  # Intel Enhanced SpeedSte
Line 84  est0  at cpu0  # Intel Enhanced SpeedSte
 powernow0       at cpu0         # AMD PowerNow! and Cool'n'Quiet (non-ACPI)  powernow0       at cpu0         # AMD PowerNow! and Cool'n'Quiet (non-ACPI)
 vmt0            at cpu0         # VMware Tools  vmt0            at cpu0         # VMware Tools
   
   options         PMC             # performance-monitoring counters support
   
 # Alternate buffer queue strategies for better responsiveness under high  # Alternate buffer queue strategies for better responsiveness under high
 # disk I/O load.  # disk I/O load.
 #options        BUFQ_READPRIO  #options        BUFQ_READPRIO
Line 91  options  DIAGNOSTIC # inexpensive kernel
Line 96  options  DIAGNOSTIC # inexpensive kernel
                                 # XXX to be commented out on release branch                                  # XXX to be commented out on release branch
 #options        DEBUG           # expensive debugging checks/support  #options        DEBUG           # expensive debugging checks/support
 #options        LOCKDEBUG       # expensive locking checks/support  #options        LOCKDEBUG       # expensive locking checks/support
 #options        KMEMSTATS       # kernel memory statistics (vmstat -m)  
   
 #  #
 # Because gcc omits the frame pointer for any -O level, the line below  # Because gcc omits the frame pointer for any -O level, the line below
Line 99  options  DIAGNOSTIC # inexpensive kernel
Line 103  options  DIAGNOSTIC # inexpensive kernel
 #  #
 makeoptions     COPTS="-O2 -fno-omit-frame-pointer"  makeoptions     COPTS="-O2 -fno-omit-frame-pointer"
 options         DDB             # in-kernel debugger  options         DDB             # in-kernel debugger
 #options        DDB_COMMANDONENTER="bt" # execute command when ddb is entered  #options        DDB_COMMANDONENTER="bt" # execute command when ddb is entered
 #options        DDB_ONPANIC=1   # see also sysctl(7): `ddb.onpanic'  #options        DDB_ONPANIC=1   # see also sysctl(7): `ddb.onpanic'
 options         DDB_HISTORY_SIZE=512    # enable history editing in DDB  options         DDB_HISTORY_SIZE=512    # enable history editing in DDB
 #options        KGDB            # remote debugger  #options        KGDB            # remote debugger
 #options        KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600  #options        KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
 #makeoptions    DEBUG="-g"      # compile full symbol table  makeoptions     DEBUG="-g"      # compile full symbol table for CTF
 #options        SYSCALL_STATS   # per syscall counts  #options        SYSCALL_STATS   # per syscall counts
 #options        SYSCALL_TIMES   # per syscall times  #options        SYSCALL_TIMES   # per syscall times
 #options        SYSCALL_TIMES_HASCOUNTER        # use 'broken' rdtsc (soekris)  #options        SYSCALL_TIMES_HASCOUNTER        # use 'broken' rdtsc (soekris)
 #options        KDTRACE_HOOKS   # kernel DTrace hooks  options         KDTRACE_HOOKS   # kernel DTrace hooks
   
 # Compatibility options  # Compatibility options
   # (note that really old compat (< 1.6) is only useful for 32-bit binaries)
   #options        EXEC_AOUT       # required by binaries from before 1.5
   #options        COMPAT_NOMID    # NetBSD 0.8, 386BSD, and BSDI
   #options        COMPAT_09       # NetBSD 0.9,
   #options        COMPAT_10       # NetBSD 1.0,
   #options        COMPAT_11       # NetBSD 1.1,
   #options        COMPAT_12       # NetBSD 1.2 (and 386BSD and BSDI),
   #options        COMPAT_13       # NetBSD 1.3 (and 386BSD and BSDI),
   #options        COMPAT_14       # NetBSD 1.4,
 options         COMPAT_15       # NetBSD 1.5,  options         COMPAT_15       # NetBSD 1.5,
 options         COMPAT_16       # NetBSD 1.6,  options         COMPAT_16       # NetBSD 1.6,
 options         COMPAT_20       # NetBSD 2.0,  options         COMPAT_20       # NetBSD 2.0,
Line 134  options  DKWEDGE_AUTODISCOVER # Automati
Line 147  options  DKWEDGE_AUTODISCOVER # Automati
 options         DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges  options         DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges
 #options        DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges  #options        DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges
 #options        DKWEDGE_METHOD_MBR      # Support MBR partitions as wedges  #options        DKWEDGE_METHOD_MBR      # Support MBR partitions as wedges
 options         DKWEDGE_METHOD_APPLE    # Support Apple partitions as wedges  options         DKWEDGE_METHOD_APPLE    # Support Apple partitions as wedges
   #options        DKWEDGE_METHOD_RDB      # Support RDB partitions as wedges
   
 # File systems  # File systems
 file-system     FFS             # UFS  file-system     FFS             # UFS
 file-system     MFS             # memory file system  file-system     MFS             # memory file system
 file-system     NFS             # Network File System client  file-system     NFS             # Network File System client
 file-system     TMPFS           # Efficient memory file-system  file-system     TMPFS           # Efficient memory file-system
 file-system     EXT2FS          # second extended file system (linux)  file-system     EXT2FS          # second extended file system (linux)
 file-system     LFS             # log-structured file system  file-system     LFS             # log-structured file system
Line 181  options  INET  # IP + ICMP + TCP + UDP
Line 195  options  INET  # IP + ICMP + TCP + UDP
 options         INET6           # IPV6  options         INET6           # IPV6
 options         IPSEC           # IP security  options         IPSEC           # IP security
 #options        IPSEC_DEBUG     # debug for IP security  #options        IPSEC_DEBUG     # debug for IP security
 #options        MPLS            # MultiProtocol Label Switching (needs ifmpls)  #options        MPLS            # MultiProtocol Label Switching (needs mpls)
 #options        MROUTING        # IP multicast routing  #options        MROUTING        # IP multicast routing
 #options        PIM             # Protocol Independent Multicast  #options        PIM             # Protocol Independent Multicast
 options         NETATALK        # AppleTalk networking protocols  options         NETATALK        # AppleTalk networking protocols
   #options        CAN             # Controller Area Network protocol
 options         PPP_BSDCOMP     # BSD-Compress compression support for PPP  options         PPP_BSDCOMP     # BSD-Compress compression support for PPP
 options         PPP_DEFLATE     # Deflate compression support for PPP  options         PPP_DEFLATE     # Deflate compression support for PPP
 options         PPP_FILTER      # Active filter support for PPP (requires bpf)  options         PPP_FILTER      # Active filter support for PPP (requires bpf)
Line 193  options  IPFILTER_LOOKUP # ippool(8) sup
Line 208  options  IPFILTER_LOOKUP # ippool(8) sup
 options         IPFILTER_COMPAT # Compat for IP-Filter  options         IPFILTER_COMPAT # Compat for IP-Filter
 #options        IPFILTER_DEFAULT_BLOCK  # block all packets by default  #options        IPFILTER_DEFAULT_BLOCK  # block all packets by default
 #options        TCP_DEBUG       # Record last TCP_NDEBUG packets with SO_DEBUG  #options        TCP_DEBUG       # Record last TCP_NDEBUG packets with SO_DEBUG
   #options        TCP_SIGNATURE   # Enable RFC-2385 TCP md5 signatures
   
 #options        ALTQ            # Manipulate network interfaces' output queues  #options        ALTQ            # Manipulate network interfaces' output queues
 #options        ALTQ_BLUE       # Stochastic Fair Blue  #options        ALTQ_BLUE       # Stochastic Fair Blue
Line 301  attimer* at acpi?  # AT Timer
Line 317  attimer* at acpi?  # AT Timer
 #fdc*           at acpi?                # Floppy disk controller  #fdc*           at acpi?                # Floppy disk controller
 fujbp*          at acpi?                # Fujitsu Brightness & Pointer  fujbp*          at acpi?                # Fujitsu Brightness & Pointer
 fujhk*          at acpi?                # Fujitsu Hotkeys  fujhk*          at acpi?                # Fujitsu Hotkeys
 #hpacel*        at acpi?                # HP 3D DriveGuard accelerometer  #hpacel*        at acpi?                # HP 3D DriveGuard accelerometer
 #hpqlb*         at acpi?                # HP Quick Launch Buttons  #hpqlb*         at acpi?                # HP Quick Launch Buttons
 hpet*           at acpihpetbus?         # High Precision Event Timer (table)  hpet*           at acpihpetbus?         # High Precision Event Timer (table)
 hpet*           at acpinodebus?         # High Precision Event Timer (device)  hpet*           at acpinodebus?         # High Precision Event Timer (device)
Line 310  joy*  at acpi?  # Joystick/Game port
Line 326  joy*  at acpi?  # Joystick/Game port
 mpu*            at acpi?                # Roland MPU-401 MIDI UART  mpu*            at acpi?                # Roland MPU-401 MIDI UART
 pckbc*          at acpi?                # PC keyboard controller  pckbc*          at acpi?                # PC keyboard controller
 pcppi*          at acpi?                # AT-style speaker sound  pcppi*          at acpi?                # AT-style speaker sound
   sdhc*           at acpi?                # SD Host Controller
 sony*           at acpi?                # Sony Notebook Controller  sony*           at acpi?                # Sony Notebook Controller
 spic*           at acpi?                # Sony Programmable I/O Controller  spic*           at acpi?                # Sony Programmable I/O Controller
 wsmouse*        at spic?                # mouse  wsmouse*        at spic?                # mouse
 thinkpad*       at acpi?                # IBM/Lenovo Thinkpad hotkeys  thinkpad*       at acpi?                # IBM/Lenovo Thinkpad hotkeys
 #tpm*           at acpi?                # ACPI TPM (Experimental)  #tpm*           at acpi?                # ACPI TPM (Experimental)
 ug*             at acpi?                # Abit uGuru Hardware monitor  ug*             at acpi?                # Abit uGuru Hardware monitor
   valz*           at acpi?                # Toshiba Dynabook hotkeys
 wb*             at acpi?                # Winbond W83L518D SD/MMC reader  wb*             at acpi?                # Winbond W83L518D SD/MMC reader
 sdmmc*          at wb?                  # SD/MMC bus  sdmmc*          at wb?                  # SD/MMC bus
 wmidell*        at acpiwmibus?          # Dell WMI mappings  wmidell*        at acpiwmibus?          # Dell WMI mappings
Line 344  puc* at pci? dev ? function ? # PCI "uni
Line 362  puc* at pci? dev ? function ? # PCI "uni
 pwdog*  at pci? dev ? function ?        # QUANCOM PWDOG1  pwdog*  at pci? dev ? function ?        # QUANCOM PWDOG1
   
 ichlpcib* at pci? dev ? function ?      # Intel ICH PCI-LPC w/ timecounter,  ichlpcib* at pci? dev ? function ?      # Intel ICH PCI-LPC w/ timecounter,
                                         # watchdog and Speedstep and HPET                                          # watchdog, gpio, Speedstep and HPET
 fwhrng* at ichlpcib?            # Intel 82802 FWH Random Number Generator  fwhrng* at ichlpcib?            # Intel 82802 FWH Random Number Generator
 #hpet*  at ichlpcib?  #hpet*  at ichlpcib?
   tco*    at ichlpcib?            # TCO watch dog timer
   
 aapic*  at pci? dev ? function ?        # AMD 8131 IO apic  aapic*  at pci? dev ? function ?        # AMD 8131 IO apic
   
Line 375  pms*  at pckbc?  # PS/2 mouse for wsmous
Line 394  pms*  at pckbc?  # PS/2 mouse for wsmous
 #options        PMS_DISABLE_POWERHOOK   # Disable PS/2 reset on resume  #options        PMS_DISABLE_POWERHOOK   # Disable PS/2 reset on resume
 options         PMS_SYNAPTICS_TOUCHPAD  # Enable support for Synaptics Touchpads  options         PMS_SYNAPTICS_TOUCHPAD  # Enable support for Synaptics Touchpads
 options         PMS_ELANTECH_TOUCHPAD   # Enable support for Elantech Touchpads  options         PMS_ELANTECH_TOUCHPAD   # Enable support for Elantech Touchpads
   options         PMS_ALPS_TOUCHPAD       # Enable support for Alps Touchpads
 vga*            at pci? dev ? function ?  vga*            at pci? dev ? function ?
 genfb*          at pci? dev ? function ?  genfb*          at pci? dev ? function ?
 options         VCONS_DRAW_INTR  options         VCONS_DRAW_INTR
Line 396  sysbeep0 at pcppi?
Line 416  sysbeep0 at pcppi?
 #savagedrm*     at drm?         # S3 Savage DRM driver  #savagedrm*     at drm?         # S3 Savage DRM driver
 #sisdrm*        at drm?         # SiS DRM driver  #sisdrm*        at drm?         # SiS DRM driver
 #tdfxdrm*       at drm?         # 3dfx (voodoo) DRM driver  #tdfxdrm*       at drm?         # 3dfx (voodoo) DRM driver
 #viadrm*        at drm?         # VIA DRM driver  #viadrm*        at drm?         # VIA DRM driver
   
 # DRMKMS drivers  # DRMKMS drivers
 i915drmkms*     at pci? dev ? function ?  i915drmkms*     at pci? dev ? function ?
 intelfb*        at intelfbbus?  intelfb*        at intelfbbus?
   
 radeon*         at pci? dev ? function ?  radeon*         at pci? dev ? function ?
 radeondrmkmsfb* at radeonfbbus?  radeondrmkmsfb* at radeonfbbus?
   
 #nouveau*       at pci? dev ? function ?  nouveau*        at pci? dev ? function ?
 #nouveaufb*     at nouveaufbbus  nouveaufb*      at nouveaufbbus?
   
 # Cryptographic Devices  # Cryptographic Devices
   
Line 415  hifn* at pci? dev ? function ? # Hifn 77
Line 435  hifn* at pci? dev ? function ? # Hifn 77
 ubsec*  at pci? dev ? function ?        # Broadcom 5501/5601/580x/582x  ubsec*  at pci? dev ? function ?        # Broadcom 5501/5601/580x/582x
   
 # Trusted Platform Module  # Trusted Platform Module
 tpm*   at isa? iomem 0xfed40000 irq 7  tpm*    at isa? iomem 0xfed40000 irq 7
 #tpm*  at isa? port 0x02e  #tpm*   at isa? port 0x02e
 #tpm*  at isa? port 0x04e  #tpm*   at isa? port 0x04e
 #tpm*  at isa? port 0x07e  #tpm*   at isa? port 0x07e
 #tpm*  at isa? port 0x0ee  #tpm*   at isa? port 0x0ee
   
 # Serial Devices  # Serial Devices
   
Line 454  lpt1 at isa? port 0x278
Line 474  lpt1 at isa? port 0x278
 # Hardware monitors  # Hardware monitors
   
 amdnb_misc* at pci?                     # AMD NB Misc Configuration  amdnb_misc* at pci?                     # AMD NB Misc Configuration
 amdtemp* at amdnb_misc?                 # AMD CPU Temperature sensors  amdtemp* at amdnb_misc?                 # AMD CPU Temperature sensors
   
 # Winbond LPC Super I/O  # Winbond LPC Super I/O
 #wbsio* at isa? port 0x2e  #wbsio* at isa? port 0x2e
Line 492  iic* at piixpm?   # SMBus on PIIX4
Line 512  iic* at piixpm?   # SMBus on PIIX4
 ichsmb* at pci? dev ? function ?  ichsmb* at pci? dev ? function ?
 iic*    at ichsmb?  iic*    at ichsmb?
   
   # Intel S1200,C2000 (non-pch) SMBus controller
   ismt* at pci? dev ? function ?
   iic*    at ismt?
   
 # Thermal monitor and fan controller  # Thermal monitor and fan controller
 #dbcool* at iic? addr 0x2C              # Unknown other motherboard(s)  #dbcool* at iic? addr 0x2C              # Unknown other motherboard(s)
 #dbcool* at iic? addr 0x2D              # Tyan S2881  #dbcool* at iic? addr 0x2D              # Tyan S2881
Line 518  iic* at ichsmb?
Line 542  iic* at ichsmb?
 #spdmem* at iic? addr 0x55  #spdmem* at iic? addr 0x55
 #spdmem* at iic? addr 0x56  #spdmem* at iic? addr 0x56
 #spdmem* at iic? addr 0x57  #spdmem* at iic? addr 0x57
   #sdtemp* at iic? addr 0x18
   #sdtemp* at iic? addr 0x19
   #sdtemp* at iic? addr 0x1a
   #sdtemp* at iic? addr 0x1b
   #sdtemp* at iic? addr 0x1c
   #sdtemp* at iic? addr 0x1d
   #sdtemp* at iic? addr 0x1e
   #sdtemp* at iic? addr 0x1f
   
 # I2O devices  # I2O devices
 iop*    at pci? dev ? function ?        # I/O processor  iop*    at pci? dev ? function ?        # I/O processor
Line 527  ld* at iop? tid ?   # block devices
Line 559  ld* at iop? tid ?   # block devices
 #dpti*  at iop? tid 0                   # DPT/Adaptec control interface  #dpti*  at iop? tid 0                   # DPT/Adaptec control interface
   
 # GPIO devices  # GPIO devices
 #gpio*          at gpiobus?  gpio*           at gpiobus?
 #gpioow*        at gpio?  
 #onewire*       at gpioow?  
   
 # 1- Wire support  # 1- Wire support
 #gpioow*        at gpio? offset ? mask ?        # 1-wire bitbanging via gpio  #gpioow*        at gpio? offset ? mask ?        # 1-wire bitbanging via gpio
 #gpioow*        at gpio?  gpioow*         at gpio?
 #onewire*       at gpioow?  onewire*        at gpioow?
   
 # I2C support  # I2C support
 #gpioiic*       at gpio?  #gpioiic*       at gpio?
Line 648  wdc* at pcmcia? function ?
Line 678  wdc* at pcmcia? function ?
   
 # CardBus IDE controllers  # CardBus IDE controllers
 njata*  at cardbus? function ? flags 0x01       # Workbit NinjaATA-32  njata*  at cardbus? function ? flags 0x01       # Workbit NinjaATA-32
 siisata* at cardbus? function ?         # SiI SteelVine controllers  siisata* at cardbus? function ?         # SiI SteelVine controllers
   
 # ISA ST506, ESDI, and IDE controllers  # ISA ST506, ESDI, and IDE controllers
 # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will  # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
Line 690  st* at atapibus? drive ? flags 0x0000 # 
Line 720  st* at atapibus? drive ? flags 0x0000 # 
 uk*     at atapibus? drive ? flags 0x0000       # ATAPI unknown  uk*     at atapibus? drive ? flags 0x0000       # ATAPI unknown
   
   
   # NVM Express controllers and devices
   nvme*   at pci? dev ? function ?
   ld*     at nvme? nsid ?
   
   
 # Miscellaneous mass storage devices  # Miscellaneous mass storage devices
   
 # ISA floppy  # ISA floppy
Line 725  fxp* at pci? dev ? function ? # Intel Et
Line 760  fxp* at pci? dev ? function ? # Intel Et
 gsip*   at pci? dev ? function ?        # NS83820 Gigabit Ethernet  gsip*   at pci? dev ? function ?        # NS83820 Gigabit Ethernet
 ipw*    at pci? dev ? function ?        # Intel PRO/Wireless 2100  ipw*    at pci? dev ? function ?        # Intel PRO/Wireless 2100
 iwi*    at pci? dev ? function ?        # Intel PRO/Wireless 2200BG  iwi*    at pci? dev ? function ?        # Intel PRO/Wireless 2200BG
   iwm*    at pci? dev ? function ?        # Intel Centrino 7260
 iwn*    at pci? dev ? function ?        # Intel PRO/Wireless 4965AGN  iwn*    at pci? dev ? function ?        # Intel PRO/Wireless 4965AGN
 ixg*    at pci? dev ? function ?        # Intel 8259x 10 gigabit  ixg*    at pci? dev ? function ?        # Intel 8259x 10 gigabit
   ixv*    at pci? dev ? function ?        # Intel 8259x 10G virtual function
 jme*    at pci? dev ? function ?        # JMicron JMC2[56]0 ethernet  jme*    at pci? dev ? function ?        # JMicron JMC2[56]0 ethernet
 hme*    at pci? dev ? function ?        # Sun Microelectronics STP2002-STQ  hme*    at pci? dev ? function ?        # Sun Microelectronics STP2002-STQ
 le*     at pci? dev ? function ?        # PCnet-PCI Ethernet  le*     at pci? dev ? function ?        # PCnet-PCI Ethernet
Line 744  ral* at pci? dev ? function ? # Ralink T
Line 781  ral* at pci? dev ? function ? # Ralink T
 re*     at pci? dev ? function ?        # Realtek 8139C+/8169/8169S/8110S  re*     at pci? dev ? function ?        # Realtek 8139C+/8169/8169S/8110S
 rtk*    at pci? dev ? function ?        # Realtek 8129/8139  rtk*    at pci? dev ? function ?        # Realtek 8129/8139
 rtw*    at pci? dev ? function ?        # Realtek 8180L (802.11)  rtw*    at pci? dev ? function ?        # Realtek 8180L (802.11)
   rtwn*   at pci? dev ? function ?        # Realtek 8188CE/8192CE 802.11b/g/n
 sf*     at pci? dev ? function ?        # Adaptec AIC-6915 Ethernet  sf*     at pci? dev ? function ?        # Adaptec AIC-6915 Ethernet
 sip*    at pci? dev ? function ?        # SiS 900/DP83815 Ethernet  sip*    at pci? dev ? function ?        # SiS 900/DP83815 Ethernet
 skc*    at pci? dev ? function ?        # SysKonnect SK9821 Gigabit Ethernet  skc*    at pci? dev ? function ?        # SysKonnect SK9821 Gigabit Ethernet
Line 818  iophy* at mii? phy ?   # Intel 82553 PHY
Line 856  iophy* at mii? phy ?   # Intel 82553 PHY
 lxtphy* at mii? phy ?                   # Level One LXT-970 PHYs  lxtphy* at mii? phy ?                   # Level One LXT-970 PHYs
 makphy* at mii? phy ?                   # Marvell Semiconductor 88E1000 PHYs  makphy* at mii? phy ?                   # Marvell Semiconductor 88E1000 PHYs
 nsphy*  at mii? phy ?                   # NS83840 PHYs  nsphy*  at mii? phy ?                   # NS83840 PHYs
 nsphyter* at mii? phy ?                 # NS83843 PHYs  nsphyter* at mii? phy ?                 # NS83843 PHYs
 pnaphy* at mii? phy ?                   # generic HomePNA PHYs  pnaphy* at mii? phy ?                   # generic HomePNA PHYs
 qsphy*  at mii? phy ?                   # Quality Semiconductor QS6612 PHYs  qsphy*  at mii? phy ?                   # Quality Semiconductor QS6612 PHYs
 rgephy* at mii? phy ?                   # Realtek 8169S/8110 internal PHYs  rgephy* at mii? phy ?                   # Realtek 8169S/8110 internal PHYs
Line 833  urlphy* at mii? phy ?   # Realtek RTL815
Line 871  urlphy* at mii? phy ?   # Realtek RTL815
 # USB Controller and Devices  # USB Controller and Devices
   
 # PCI USB controllers  # PCI USB controllers
 # xhci* at pci? dev ? function ?        # eXtensible Host Controller  xhci*   at pci? dev ? function ?        # eXtensible Host Controller
                                         # xhci is at best experimental                                          # xhci is at best experimental
 ehci*   at pci? dev ? function ?        # Enhanced Host Controller  ehci*   at pci? dev ? function ?        # Enhanced Host Controller
 ohci*   at pci? dev ? function ?        # Open Host Controller  ohci*   at pci? dev ? function ?        # Open Host Controller
Line 851  uhci* at cardbus? function ?  # Universa
Line 889  uhci* at cardbus? function ?  # Universa
 slhci*  at pcmcia? function ?           # ScanLogic SL811HS  slhci*  at pcmcia? function ?           # ScanLogic SL811HS
   
 # USB bus support  # USB bus support
 # usb*  at xhci?  usb*    at xhci?
 usb*    at ehci?  usb*    at ehci?
 usb*    at ohci?  usb*    at ohci?
 usb*    at uhci?  usb*    at uhci?
Line 938  axen* at uhub? port ?  # ASIX AX88178a/A
Line 976  axen* at uhub? port ?  # ASIX AX88178a/A
 cdce*   at uhub? port ?         # CDC, Ethernet Networking Control Model  cdce*   at uhub? port ?         # CDC, Ethernet Networking Control Model
 cue*    at uhub? port ?         # CATC USB-EL1201A based adapters  cue*    at uhub? port ?         # CATC USB-EL1201A based adapters
 kue*    at uhub? port ?         # Kawasaki LSI KL5KUSB101B based adapters  kue*    at uhub? port ?         # Kawasaki LSI KL5KUSB101B based adapters
   #mos*   at uhub? port ?         # Moschip MCS7730/MCS7830/MCS7832 based adapters
 udav*   at uhub? port ?         # Davicom DM9601 based adapters  udav*   at uhub? port ?         # Davicom DM9601 based adapters
 url*    at uhub? port ?         # Realtek RTL8150L based adapters  url*    at uhub? port ?         # Realtek RTL8150L based adapters
 urndis* at uhub? port ?         # Microsoft RNDIS specification  urndis* at uhub? port ?         # Microsoft RNDIS specification
   
 # Prolific PL2301/PL2302 host-to-host adapter  # Prolific PL2301/PL2302 host-to-host adapter
 upl*    at uhub? port ?  upl*    at uhub? port ?
Line 961  ucom* at uipaq? portno ?
Line 1000  ucom* at uipaq? portno ?
 umct*   at uhub? port ?         # MCT USB-RS232 serial adapter  umct*   at uhub? port ?         # MCT USB-RS232 serial adapter
 ucom*   at umct? portno ?  ucom*   at umct? portno ?
   
 uplcom* at uhub? port ?         # I/O DATA USB-RSAQ2 serial adapter  uplcom* at uhub? port ?         # I/O DATA USB-RSAQ2 serial adapter
 ucom*   at uplcom? portno ?  ucom*   at uplcom? portno ?
   
 uslsa*  at uhub? port ?         # Silicon Labs USB-RS232 serial adapter  uslsa*  at uhub? port ?         # Silicon Labs USB-RS232 serial adapter
 ucom*   at uslsa? portno ?  ucom*   at uslsa? portno ?
   
 uvscom* at uhub? port ?         # SUNTAC Slipper U VS-10U serial adapter  uvscom* at uhub? port ?         # SUNTAC Slipper U VS-10U serial adapter
 ucom*   at uvscom? portno ?  ucom*   at uvscom? portno ?
   
 # RIM BlackBerry  # RIM BlackBerry
Line 988  ukyopon* at uhub? port ?
Line 1027  ukyopon* at uhub? port ?
 ucom*   at ukyopon? portno ?  ucom*   at ukyopon? portno ?
   
 # USB scanners  # USB scanners
 uscanner* at uhub? port ?  #uscanner* at uhub? port ?
   
 # USB 802.11 adapters  # USB 802.11 adapters
 athn*   at uhub? port ?         # Atheros AR9002U  athn*   at uhub? port ?         # Atheros AR9002U
Line 1018  radio* at udsbr?
Line 1057  radio* at udsbr?
 ugen*   at uhub? port ?  ugen*   at uhub? port ?
   
 # USB 3G datacards  # USB 3G datacards
 u3ginit* at uhub? port ?  umodeswitch* at uhub? port ?
 u3g*    at uhub? port ?  u3g*    at uhub? port ?
 ucom*   at u3g?  ucom*   at u3g?
   
Line 1026  ucom* at u3g?
Line 1065  ucom* at u3g?
 ugensa* at uhub? port ?  ugensa* at uhub? port ?
 ucom*   at ugensa?  ucom*   at ugensa?
   
   # Araneus Alea I/II TRNG
   #ualea* at uhub? port ? configuration ? interface ?
   
 # IrDA and Consumer Ir devices  # IrDA and Consumer Ir devices
   
 # Toshiba Oboe  # Toshiba Oboe
Line 1078  hdafg*  at hdaudiobus?
Line 1120  hdafg*  at hdaudiobus?
 # Audio support  # Audio support
 audio*  at audiobus?  audio*  at audiobus?
   
   # The spkr driver provides a simple tone interface to the built in speaker.
   spkr*   at pcppi?               # PC speaker
   spkr*   at audio?               # PC speaker (synthesized)
   
 # MPU 401 UARTs  # MPU 401 UARTs
 #mpu*   at isa? port 0x330 irq 9        # MPU401 or compatible card  #mpu*   at isa? port 0x330 irq 9        # MPU401 or compatible card
 mpu*    at cmpci?  mpu*    at cmpci?
Line 1088  mpu* at yds?
Line 1134  mpu* at yds?
 midi*   at midibus?  midi*   at midibus?
 midi*   at pcppi?               # MIDI interface to the PC speaker  midi*   at pcppi?               # MIDI interface to the PC speaker
   
 # The spkr driver provides a simple tone interface to the built in speaker.  
 #spkr0  at pcppi?               # PC speaker  
   
   
 # FM-Radio devices  # FM-Radio devices
 # PCI radio devices  # PCI radio devices
 #gtp*   at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card  #gtp*   at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
Line 1178  ld* at sdmmc?
Line 1220  ld* at sdmmc?
 weasel* at pci?  weasel* at pci?
   
 # Virtio devices  # Virtio devices
 virtio* at pci? dev ? function ?        # Virtio PCI device  virtio* at pci? dev ? function ?        # Virtio PCI device
 viomb*  at virtio?                      # Virtio memory balloon device  viomb*  at virtio?                      # Virtio memory balloon device
 ld*     at virtio?                      # Virtio disk device  ld*     at virtio?                      # Virtio disk device
 vioif*  at virtio?                      # Virtio network device  vioif*  at virtio?                      # Virtio network device
 viornd* at virtio?                      # Virtio entropy device  viornd* at virtio?                      # Virtio entropy device
   vioscsi* at virtio?                     # Virtio SCSI device
   
 # Pull in optional local configuration  # Pull in optional local configuration
 cinclude "arch/amd64/conf/GENERIC.local"  cinclude "arch/amd64/conf/GENERIC.local"
Line 1191  cinclude "arch/amd64/conf/GENERIC.local"
Line 1233  cinclude "arch/amd64/conf/GENERIC.local"
   
 # Pseudo-Devices  # Pseudo-Devices
   
 pseudo-device   crypto                  # /dev/crypto device  pseudo-device   crypto                  # /dev/crypto device
 pseudo-device   swcrypto                # software crypto implementation  pseudo-device   swcrypto                # software crypto implementation
   
 # disk/mass storage pseudo-devices  # disk/mass storage pseudo-devices
Line 1224  pseudo-device bpfilter  # Berkeley packe
Line 1266  pseudo-device bpfilter  # Berkeley packe
 #pseudo-device  carp                    # Common Address Redundancy Protocol  #pseudo-device  carp                    # Common Address Redundancy Protocol
 pseudo-device   ipfilter                # IP filter (firewall) and NAT  pseudo-device   ipfilter                # IP filter (firewall) and NAT
 pseudo-device   loop                    # network loopback  pseudo-device   loop                    # network loopback
 #pseudo-device  ifmpls                  # MPLS pseudo-interface  #pseudo-device  mpls                    # MPLS pseudo-interface
 pseudo-device   ppp                     # Point-to-Point Protocol  pseudo-device   ppp                     # Point-to-Point Protocol
 pseudo-device   pppoe                   # PPP over Ethernet (RFC 2516)  pseudo-device   pppoe                   # PPP over Ethernet (RFC 2516)
 pseudo-device   sl                      # Serial Line IP  pseudo-device   sl                      # Serial Line IP
Line 1240  pseudo-device vlan   # IEEE 802.1q encap
Line 1282  pseudo-device vlan   # IEEE 802.1q encap
 pseudo-device   bridge                  # simple inter-network bridging  pseudo-device   bridge                  # simple inter-network bridging
 #options        BRIDGE_IPF              # bridge uses IP/IPv6 pfil hooks too  #options        BRIDGE_IPF              # bridge uses IP/IPv6 pfil hooks too
 pseudo-device   agr                     # IEEE 802.3ad link aggregation  pseudo-device   agr                     # IEEE 802.3ad link aggregation
   pseudo-device   l2tp                    # L2TPv3 interface
 #pseudo-device  pf                      # PF packet filter  #pseudo-device  pf                      # PF packet filter
 #pseudo-device  pflog                   # PF log if  #pseudo-device  pflog                   # PF log if
 #pseudo-device  pfsync                  # PF sync if  #pseudo-device  pfsync                  # PF sync if
 #pseudo-device  npf                     # NPF packet filter  #pseudo-device  npf                     # NPF packet filter
   
   #pseudo-device  canloop                 # CAN loopback interface
   
 #  #
 # accept filters  # accept filters
 pseudo-device   accf_data               # "dataready" accept filter  pseudo-device   accf_data               # "dataready" accept filter
 pseudo-device   accf_http               # "httpready" accept filter  pseudo-device   accf_http               # "httpready" accept filter
   
 # miscellaneous pseudo-devices  # miscellaneous pseudo-devices
 pseudo-device   pty                     # pseudo-terminals  pseudo-device   pty                     # pseudo-terminals
Line 1277  pseudo-device pad
Line 1322  pseudo-device pad
 # userland interface to drivers, including autoconf and properties retrieval  # userland interface to drivers, including autoconf and properties retrieval
 pseudo-device   drvctl  pseudo-device   drvctl
   
 options         FILEASSOC               # fileassoc(9) - required for Veriexec  options         FILEASSOC               # fileassoc(9) - needed by Veriexec
                                           # and PAX_SEGVGUARD
   
 # Veriexec  # Veriexec
 #  #
Line 1295  options VERIFIED_EXEC_FP_SHA512
Line 1341  options VERIFIED_EXEC_FP_SHA512
 options VERIFIED_EXEC_FP_SHA1  options VERIFIED_EXEC_FP_SHA1
 options VERIFIED_EXEC_FP_MD5  options VERIFIED_EXEC_FP_MD5
   
 options         PAX_MPROTECT=0          # PaX mprotect(2) restrictions  options         PAX_SEGVGUARD=0         # PaX Segmentation fault guard
 options         PAX_ASLR=0              # PaX Address Space Layout Randomization  options         PAX_MPROTECT=1          # PaX mprotect(2) restrictions
   options         PAX_MPROTECT_DEBUG=1    # PaX mprotect debug
   options         PAX_ASLR=1              # PaX Address Space Layout Randomization
   options         PAX_ASLR_DEBUG=1        # PaX ASLR debug

Legend:
Removed from v.1.404  
changed lines
  Added in v.1.404.2.13

CVSweb <webmaster@jp.NetBSD.org>