Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.3.2.5
      1 # $NetBSD: INSTALL,v 1.3.2.5 2004/11/14 08:15:04 skrll Exp $
      2 #
      3 # GENERIC machine description file
      4 # 
      5 # This machine description file is used to generate the default NetBSD
      6 # kernel.  The generic kernel does not include all options, subsystems
      7 # and device drivers, but should be useful for most applications.
      8 #
      9 # The machine description file can be customised for your specific
     10 # machine to reduce the kernel size and improve its performance.
     11 #
     12 # For further information on compiling NetBSD kernels, see the config(8)
     13 # man page.
     14 #
     15 # For further information on hardware support for this architecture, see
     16 # the intro(4) man page.  For further information about kernel options
     17 # for this architecture, see the options(4) man page.  For an explanation
     18 # of each device driver in this file see the section 4 man page for the
     19 # device.
     20 
     21 include	"arch/amd64/conf/std.amd64"
     22 
     23 #ident 		"INSTALL-$Revision: 1.3.2.5 $"
     24 
     25 maxusers	32		# estimated number of users
     26 
     27 # Standard system options
     28 
     29 makeoptions 	COPTS="-Os"
     30 
     31 options 	MEMORY_DISK_HOOKS
     32 options 	MEMORY_DISK_IS_ROOT     # force root on memory disk
     33 options 	MEMORY_DISK_SERVER=0    # no userspace memory disk support
     34 options 	MEMORY_DISK_ROOT_SIZE=4608      # size of memory disk, in blocks
     35 
     36 options 	INSECURE	# disable kernel security levels - X needs this
     37 
     38 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     39 
     40 #options 	SYSVMSG		# System V-like message queues
     41 #options 	SYSVSEM		# System V-like semaphores
     42 #options 	SEMMNI=10	# number of semaphore identifiers
     43 #options 	SEMMNS=60	# number of semaphores in system
     44 #options 	SEMUME=10	# max number of undo entries per process
     45 #options 	SEMMNU=30	# number of undo structures in system
     46 #options 	SYSVSHM		# System V-like memory sharing
     47 #options 	SHMMAXPGS=2048	# 2048 pages is the default
     48 
     49 #options 	LKM		# loadable kernel modules
     50 
     51 options 	USERCONF	# userconf(4) support
     52 #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     53 
     54 # Enable experimental buffer queue strategy for better responsiveness under 
     55 # high disk I/O load. Use it with caution - it's not proven to be stable yet.
     56 #options 	NEW_BUFQ_STRATEGY
     57 
     58 # Diagnostic/debugging support options
     59 #options 	DIAGNOSTIC	# expensive kernel consistency checks
     60 #options 	DEBUG		# expensive debugging checks/support
     61 #options 	DDB		# in-kernel debugger
     62 #options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     63 #options 	KGDB		# remote debugger
     64 #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
     65 #makeoptions	DEBUG="-g"	# compile full symbol table
     66 
     67 #options 	COMPAT_NETBSD32
     68 #options 	EXEC_ELF32
     69 options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     70 
     71 # File systems
     72 file-system 	FFS		# UFS
     73 file-system 	EXT2FS		# second extended file system (linux)
     74 file-system 	LFS		# log-structured file system
     75 file-system 	MFS		# memory file system
     76 file-system 	NFS		# Network File System client
     77 file-system 	NTFS		# Windows/NT file system (experimental)
     78 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     79 file-system 	MSDOSFS		# MS-DOS file system
     80 #file-system 	FDESC		# /dev/fd
     81 file-system 	KERNFS		# /kern
     82 #file-system 	NULLFS		# loopback file system
     83 #file-system 	OVERLAY		# overlay file system
     84 #file-system 	PORTAL		# portal filesystem (still experimental)
     85 #file-system 	PROCFS		# /proc
     86 #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     87 #file-system 	UNION		# union file system
     88 
     89 # File system options
     90 #options 	QUOTA		# UFS quotas
     91 #options 	FFS_EI		# FFS Endian Independent support
     92 #options 	SOFTDEP		# FFS soft updates support.
     93 #options 	NFSSERVER	# Network File System server
     94 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     95 				# immutable) behave as system flags.
     96 
     97 # Networking options
     98 #options 	GATEWAY		# packet forwarding
     99 options 	INET		# IP + ICMP + TCP + UDP
    100 options 	INET6		# IPV6
    101 #options 	IPSEC		# IP security
    102 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
    103 #options 	IPSEC_DEBUG	# debug for IP security
    104 #options 	MROUTING	# IP multicast routing
    105 #options 	PIM		# Protocol Independent Multicast
    106 #options 	NETATALK	# AppleTalk networking protocols
    107 options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    108 options 	PPP_DEFLATE	# Deflate compression support for PPP
    109 options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    110 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    111 
    112 # These options enable verbose messages for several subsystems.
    113 # Warning, these may compile large string tables into the kernel!
    114 #options 	MIIVERBOSE	# verbose PHY autoconfig messages
    115 #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    116 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    117 #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    118 #options 	SCSIVERBOSE	# human readable SCSI error messages
    119 #options 	USBVERBOSE	# verbose USB device autoconfig messages
    120 #options 	I2OVERBOSE	# verbose I2O driver messages
    121 
    122 options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
    123 
    124 #
    125 # wscons options
    126 #
    127 # builtin terminal emulations
    128 #options 	WSEMUL_SUN		# sun terminal emulation
    129 options 	WSEMUL_VT100		# VT100 / VT220 emulation
    130 # different kernel output - see dev/wscons/wsdisplayvar.h
    131 options 	WS_KERNEL_FG=WSCOL_GREEN
    132 #options 	WS_KERNEL_BG=WSCOL_BLACK
    133 # compatibility to other console drivers
    134 #options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
    135 #options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    136 options 	WSDISPLAY_COMPAT_USL		# VT handling
    137 options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    138 # see dev/pckbc/wskbdmap_mfii.c for implemented layouts
    139 #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    140 # allocate a number of virtual screens at autoconfiguration time
    141 #options 	WSDISPLAY_DEFAULTSCREENS=4
    142 # use a large software cursor that doesn't blink
    143 options 	PCDISPLAY_SOFTCURSOR
    144 # modify the screen type of the console; defaults to "80x25"
    145 #options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
    146 # work around a hardware bug that loaded fonts don't work; found on ATI cards
    147 #options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
    148 # the following enables some functions to get mouse console support.
    149 # if you want a really secure system, it may be better not to enable them,
    150 # see wsmoused(8), section SECURITY CONSIDERATIONS for more info.
    151 #options 	WSDISPLAY_CHARFUNCS		# mouse console support
    152 # enable VGA raster mode capable of displaying multilingual text on console
    153 #options 	VGA_RASTERCONSOLE
    154 
    155 # Kernel root file system and dump configuration.
    156 config		netbsd	root on ? type ?
    157 #config		netbsd	root on sd0a type ffs
    158 #config		netbsd	root on ? type nfs
    159 
    160 #
    161 # Device configuration
    162 #
    163 
    164 mainbus0 at root
    165 
    166 options MPBIOS
    167 options MPBIOS_SCANPCI
    168 cpu* 	at mainbus0
    169 ioapic* at mainbus0
    170 
    171 #apm0	at mainbus0			# Advanced power management
    172 
    173 # Tuning for power management, see apm(4) for more details.
    174 #options 	APM_NO_IDLE		# Don't call BIOS CPU idle function
    175 #options 	APM_V10_ONLY		# Use only the APM 1.0 calls
    176 #options 	APM_NO_POWEROFF		# Don't power off on halt(8)
    177 #options 	APM_POWER_PRINT		# Print stats on the console
    178 #options 	APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
    179 
    180 
    181 # Basic Bus Support
    182 
    183 # PCI bus support
    184 pci*	at mainbus? bus ?
    185 pci*	at pchb? bus ?
    186 pci*	at ppb? bus ?
    187 
    188 # PCI bridges
    189 pchb*	at pci? dev ? function ?	# PCI-Host bridges
    190 pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    191 ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    192 # XXX 'puc's aren't really bridges, but there's no better place for them here
    193 puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    194 
    195 aapic* 	at pci? dev ? function ?	# AMD 8131 IO apic
    196 
    197 #agp* 	at pchb?
    198 
    199 #
    200 
    201 # ISA bus support
    202 isa0	at mainbus?
    203 isa0	at pcib?
    204 
    205 # CardBus bridge support
    206 #cbb*		at pci? dev ? function ?
    207 #cardslot*	at cbb?
    208 
    209 # CardBus bus support
    210 #cardbus*	at cardslot?
    211 #pcmcia* 	at cardslot?
    212 
    213 # Coprocessor Support
    214 
    215 # Console Devices
    216 
    217 # wscons
    218 pckbc0		at isa?			# pc keyboard controller
    219 pckbd*		at pckbc?		# PC keyboard
    220 pms*		at pckbc?		# PS/2 mouse for wsmouse
    221 #options 	PMS_DISABLE_POWERHOOK	# Disable PS/2 reset on resume
    222 vga*		at pci? dev ? function ?
    223 wsdisplay*	at vga? console ?
    224 wskbd*		at pckbd? console ?
    225 wsmouse*	at pms? mux 0
    226 
    227 pcppi0		at isa?
    228 sysbeep0	at pcppi?
    229 
    230 # Serial Devices
    231 
    232 # PCI serial interfaces
    233 com*	at puc? port ?			# 16x50s on "universal" comm boards
    234 #cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    235 #cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
    236 
    237 # PCMCIA serial interfaces
    238 #com*	at pcmcia? function ?		# Modems and serial cards
    239 
    240 #pcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
    241 #com*	at pcmcom? slave ?		# ...and the slave devices
    242 
    243 # CardBus serial interfaces
    244 #com*	at cardbus? dev ? function ?	# Modems and serial cards
    245 
    246 # ISA serial interfaces
    247 #options 	COM_HAYESP		# adds Hayes ESP serial board support
    248 com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
    249 com1	at isa? port 0x2f8 irq 3
    250 
    251 # Parallel Printer Interfaces
    252 
    253 # PCI parallel printer interfaces
    254 #lpt*	at puc? port ?			# || ports on "universal" comm boards
    255 
    256 # ISA parallel printer interfaces
    257 #lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    258 #lpt1	at isa? port 0x278
    259 
    260 # Hardware monitors
    261 
    262 # LM7[89] and compatible hardware monitors
    263 #lm0	at isa?	port 0x290		# other common ports: 0x280, 0x310
    264 
    265 # I2O devices
    266 iop*	at pci? dev ? function ?	# I/O processor
    267 iopsp*	at iop? tid ?			# SCSI/FC-AL ports
    268 ld*	at iop? tid ?			# block devices
    269 # XXX dpti.c wants a processor type that is not assigned for x86-64
    270 #dpti*	at iop? tid 0			# DPT/Adaptec control interface
    271 
    272 
    273 # SCSI Controllers and Devices
    274 
    275 # PCI SCSI controllers
    276 adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    277 adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
    278 ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    279 ahd*	at pci? dev ? function ?	# Adaptec aic790x SCSI
    280 bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    281 dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
    282 iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
    283 isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
    284 mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
    285 mpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030
    286 pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
    287 siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
    288 #options 	SIOP_SYMLED		# drive the act. LED in software
    289 trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
    290 
    291 # PCMCIA SCSI controllers
    292 #aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    293 #esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
    294 
    295 # CardBus SCSI cards
    296 #adv*	at cardbus? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    297 #ahc*	at cardbus? dev ? function ?	# Adaptec ADP-1480
    298 
    299 # SCSI bus support
    300 scsibus* at scsi?
    301 
    302 # SCSI devices
    303 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    304 st*	at scsibus? target ? lun ?	# SCSI tape drives
    305 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    306 #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    307 #ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
    308 #ss*	at scsibus? target ? lun ?	# SCSI scanners
    309 #uk*	at scsibus? target ? lun ?	# SCSI unknown
    310 
    311 
    312 # RAID controllers and devices
    313 cac*	at pci? dev ? function ?	# Compaq PCI array controllers
    314 icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
    315 mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
    316 twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
    317 
    318 ld*	at cac? unit ?
    319 ld*	at icp? unit ?
    320 ld*	at twe? unit ?
    321 ld*	at mlx? unit ?
    322 
    323 icpsp*	at icp? unit ?			# SCSI pass-through
    324 
    325 # IDE and related devices
    326 # PCI IDE controllers - see pciide(4) for supported hardware.
    327 # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    328 # how to set up DMA modes for this chip. This may work, or may cause
    329 # a machine hang with some controllers.
    330 pciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    331 acardide* at pci? dev ? function ?	# Acard IDE controllers
    332 aceride* at pci? dev ? function ?	# Acer Lab IDE controllers
    333 artsata* at pci? dev ? function ?	# Intel i31244 SATA controller
    334 cmdide* at pci? dev ? function ?	# CMD tech IDE controllers
    335 cypide* at pci? dev ? function ?	# Cypress IDE controllers
    336 hptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    337 optiide* at pci? dev ? function ?	# Opti IDE controllers
    338 piixide* at pci? dev ? function ?	# Intel IDE controllers
    339 pdcide* at pci? dev ? function ?	# Promise IDE controllers
    340 satalink* at pci? dev ? function ?	# SiI SATALink controllers
    341 siside* at pci? dev ? function ?	# SiS IDE controllers
    342 slide*  at pci? dev ? function ?	# Symphony Labs IDE controllers
    343 viaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    344 
    345 # PCMCIA IDE controllers
    346 #wdc*	at pcmcia? function ?
    347 
    348 # ISA ST506, ESDI, and IDE controllers
    349 # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
    350 # fall back to 16bits I/O if 32bits I/O are not functional).
    351 # Some controllers pass the initial 32bit test, but will fail later.
    352 #wdc0	at isa? port 0x1f0 irq 14 flags 0x00
    353 #wdc1	at isa? port 0x170 irq 15 flags 0x00
    354 
    355 # ATA (IDE) bus support
    356 atabus* at ata?
    357 
    358 # Flags are used only with controllers that support DMA operations
    359 # and mode settings (e.g. some pciide controllers)
    360 # The lowest order four bits (rightmost digit) of the flags define the PIO
    361 # mode to use, the next set of four bits the DMA mode and the third set the
    362 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    363 # to use, and the last bit must be 1 for this setting to be used.
    364 # For DMA and UDMA, 0xf (1111) means 'disable'.
    365 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    366 # (0xc=1100, 0xa=1010, 0xf=1111)
    367 # 0x0000 means "use whatever the drive claims to support".
    368 wd*	at atabus? drive ? flags 0x0000
    369 
    370 # ATAPI bus support
    371 atapibus* at atapi?
    372 
    373 # ATA RAID configuration support, as found on some Promise controllers.
    374 pseudo-device ataraid
    375 ld* 	at ataraid? vendtype ? unit ?
    376 
    377 
    378 # ATAPI devices
    379 # flags have the same meaning as for IDE drives.
    380 cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    381 sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    382 st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    383 #uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    384 
    385 
    386 # Miscellaneous mass storage devices
    387 
    388 # ISA floppy
    389 fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    390 #fdc1	at isa? port 0x370 irq ? drq ?
    391 fd*	at fdc? drive ?			# the drives themselves
    392 # some machines need you to do this instead of fd*
    393 #fd0	at fdc0 drive 0
    394 
    395 # Network Interfaces
    396 
    397 # PCI network interfaces
    398 an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
    399 bce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
    400 bge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    401 en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    402 ep*	at pci? dev ? function ?	# 3Com 3c59x
    403 epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    404 esh*	at pci? dev ? function ?	# Essential HIPPI card
    405 ex*	at pci? dev ? function ?	# 3Com 90x[BC]
    406 fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    407 fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    408 gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
    409 #hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
    410 le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    411 lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    412 mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
    413 ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    414 ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    415 pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    416 re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
    417 rtk*	at pci? dev ? function ?	# Realtek 8129/8139
    418 sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
    419 sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
    420 ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
    421 stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
    422 ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
    423 tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    424 tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    425 vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    426 wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
    427 wm*	at pci? dev ? function ?	# Intel 82543/82544 gigabit
    428 
    429 # PCMCIA network interfaces
    430 #an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
    431 #awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
    432 #cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
    433 #ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    434 #mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    435 #ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    436 #ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
    437 #sm*	at pcmcia? function ?		# Megahertz Ethernet
    438 # tr at pcmcia has problems with Cardbus bridges
    439 #tr*	at pcmcia? function ?		# TROPIC based Token-Ring
    440 #wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
    441 #xi*	at pcmcia? function ?		# Xircom CreditCard Ethernet
    442 
    443 #mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
    444 #com*	at mhzc?
    445 #sm*	at mhzc?
    446 
    447 # CardBus network cards
    448 #ex*	at cardbus? dev ? function ?	# 3Com 3C575TX
    449 #fxp*	at cardbus? dev ? function ?	# Intel i8255x
    450 #rtk*	at cardbus? dev ? function ?	# Realtek 8129/8139
    451 #tlp*	at cardbus? dev ? function ?	# DECchip 21143
    452 
    453 # MII/PHY support
    454 acphy*	at mii? phy ?			# DAltima AC101 and AMD Am79c874 PHYs
    455 amhphy*	at mii? phy ?			# AMD 79c901 Ethernet PHYs
    456 bmtphy*	at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    457 brgphy*	at mii? phy ?			# Broadcom BCM5400-family PHYs
    458 dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    459 exphy*	at mii? phy ?			# 3Com internal PHYs
    460 glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    461 gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    462 icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS189x
    463 igphy* 	at mii? phy ?			# Intel IGP01E1000
    464 inphy*	at mii? phy ?			# Intel 82555 PHYs
    465 iophy*	at mii? phy ?			# Intel 82553 PHYs
    466 lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
    467 makphy*	at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    468 nsphy*	at mii? phy ?			# NS83840 PHYs
    469 nsphyter* at mii? phy ?			# NS83843 PHYs
    470 pnaphy*	at mii? phy ?			# generic HomePNA PHYs
    471 qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    472 sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    473 tlphy*	at mii? phy ?			# ThunderLAN PHYs
    474 tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    475 ukphy*	at mii? phy ?			# generic unknown PHYs
    476 urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    477 
    478 
    479 # USB Controller and Devices
    480 
    481 # PCI USB controllers
    482 # The EHCI is not ready for prime time.
    483 #ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
    484 ohci*	at pci?	dev ? function ?	# Open Host Controller
    485 uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
    486 
    487 # CardBus USB controllers
    488 #ehci*	at cardbus? dev ? function ?	# Enhanced Host Controller
    489 #ohci*	at cardbus? dev ? function ?	# Open Host Controller
    490 
    491 # ISA USB controllers
    492 #slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
    493 
    494 # USB bus support
    495 #usb*	at ehci?
    496 usb*	at ohci?
    497 usb*	at uhci?
    498 #usb*	at slhci?
    499 
    500 # USB Hubs
    501 uhub*	at usb?
    502 uhub*	at uhub? port ? configuration ? interface ?
    503 
    504 # USB HID device
    505 uhidev*	at uhub? port ? configuration ? interface ?
    506 
    507 # USB Mice
    508 ums*	at uhidev? reportid ?
    509 wsmouse* at ums? mux 0
    510 
    511 # USB Keyboards
    512 ukbd*	at uhidev? reportid ?
    513 wskbd*	at ukbd? console ? mux 1
    514 
    515 # USB Generic HID devices
    516 #uhid*	at uhidev? reportid ?
    517 
    518 # USB Printer
    519 #ulpt*	at uhub? port ? configuration ? interface ?
    520 
    521 # USB Modem
    522 #umodem*	at uhub? port ? configuration ?
    523 #ucom*	at umodem?
    524 
    525 # USB Mass Storage
    526 umass*	at uhub? port ? configuration ? interface ?
    527 #wd* at umass?
    528 
    529 # USB MIDI
    530 #umidi* at uhub? port ? configuration ?
    531 
    532 # USB Ethernet adapters
    533 aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    534 axe*	at uhub? port ?		# ASIX AX88172 based adapters
    535 cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    536 kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    537 url*	at uhub? port ?		# Realtek RTL8150L based adapters
    538 
    539 # Prolific PL2301/PL2302 host-to-host adapter
    540 #upl*	at uhub? port ?
    541 
    542 # Serial adapters
    543 #ubsa*	at uhub? port ?		# Belkin serial adapter
    544 #ucom*	at ubsa? portno ?
    545 
    546 #uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    547 #ucom*	at uftdi? portno ?
    548 
    549 #umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    550 #ucom*	at umct? portno ?
    551 
    552 #uplcom*	at uhub? port ?		# I/O DATA USB-RSAQ2 serial adapter
    553 #ucom*	at uplcom? portno ?
    554 
    555 #uvscom*	at uhub? port ?		# SUNTAC Slipper U VS-10U serial adapter
    556 #ucom*	at uvscom? portno ?
    557 
    558 # Diamond Multimedia Rio 500
    559 #urio*	at uhub? port ?
    560 
    561 # USB Handspring Visor
    562 #uvisor*	at uhub? port ?
    563 #ucom*	at uvisor?
    564 
    565 # USB scanners
    566 #uscanner* at uhub? port ?
    567 
    568 # USB scanners that use SCSI emulation, e.g., HP5300
    569 #usscanner* at uhub? port ?
    570 
    571 # Y@P firmware loader
    572 #uyap* at uhub? port ?
    573 
    574 # D-Link DSB-R100 USB radio
    575 #udsbr*	at uhub? port ?
    576 #radio*	at udsbr?
    577 
    578 # USB Generic driver
    579 # ugen*	at uhub? port ?
    580 
    581 
    582 # IrDA and Consumer Ir devices
    583 
    584 # Mice
    585 
    586 # Middle Digital, Inc. PCI-Weasel serial console board control
    587 # devices (watchdog timer, etc.)
    588 #weasel* at pci?
    589 
    590 # Pull in optional local configuration
    591 include	"arch/amd64/conf/GENERIC.local"
    592 
    593 # Pseudo-Devices
    594 
    595 # disk/mass storage pseudo-devices
    596 #pseudo-device	ccd		4	# concatenated/striped disk devices
    597 #pseudo-device	cgd		4	# cryptographic disk devices
    598 #pseudo-device	raid		8	# RAIDframe disk driver
    599 #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    600 #Options to enable various other RAIDframe RAID types.
    601 #options 	RF_INCLUDE_EVENODD=1
    602 #options 	RF_INCLUDE_RAID5_RS=1
    603 #options 	RF_INCLUDE_PARITYLOGGING=1
    604 #options 	RF_INCLUDE_CHAINDECLUSTER=1
    605 #options 	RF_INCLUDE_INTERDECLUSTER=1
    606 #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    607 #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    608 
    609 pseudo-device	md		1	# memory disk device (ramdisk)
    610 #pseudo-device	vnd		4	# disk-like interface to files
    611 
    612 # network pseudo-devices
    613 pseudo-device	bpfilter	8	# Berkeley packet filter
    614 pseudo-device	loop			# network loopback
    615 pseudo-device	ppp		2	# Point-to-Point Protocol
    616 #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    617 #pseudo-device	sl		2	# Serial Line IP
    618 #pseudo-device	strip		2	# Starmode Radio IP (Metricom)
    619 #pseudo-device	irframetty		# IrDA frame line discipline
    620 #pseudo-device	tun		2	# network tunneling over tty
    621 #pseudo-device	gre		2	# generic L3 over IP tunnel
    622 #pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    623 #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    624 #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    625 #pseudo-device	vlan			# IEEE 802.1q encapsulation
    626 #pseudo-device	bridge			# simple inter-network bridging
    627 
    628 # miscellaneous pseudo-devices
    629 pseudo-device	pty			# pseudo-terminals
    630 #pseudo-device	tb		1	# tablet line discipline
    631 #pseudo-device	sequencer	1	# MIDI sequencer
    632 # rnd works; RND_COM does not on port i386 yet.
    633 pseudo-device	rnd			# /dev/random and in-kernel generator
    634 #options 	RND_COM			# use "com" randomness as well (BROKEN)
    635 pseudo-device	clockctl		# user control of clock subsystem
    636 
    637 # wscons pseudo-devices
    638 pseudo-device	wsmux			# mouse & keyboard multiplexor
    639 #pseudo-device	wsfont
    640