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