Home | History | Annotate | Line # | Download | only in conf
INSTALL_FLOPPY revision 1.1.4.4
      1  1.1.4.4  yamt #	$NetBSD: INSTALL_FLOPPY,v 1.1.4.4 2010/03/11 15:02:27 yamt Exp $
      2  1.1.4.2  yamt #
      3  1.1.4.2  yamt #	INSTALL - Installation kernel.
      4  1.1.4.2  yamt #
      5  1.1.4.2  yamt #	This kernel should be derived from GENERIC with some features
      6  1.1.4.2  yamt #	commented out.
      7  1.1.4.2  yamt #
      8  1.1.4.2  yamt #	This kernel does NOT support X, mice, audio devices, non-NetBSD
      9  1.1.4.2  yamt #	emulation.
     10  1.1.4.2  yamt #
     11  1.1.4.2  yamt 
     12  1.1.4.2  yamt include "arch/i386/conf/std.i386"
     13  1.1.4.2  yamt 
     14  1.1.4.2  yamt #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     15  1.1.4.2  yamt 
     16  1.1.4.2  yamt makeoptions 	CPUFLAGS="-march=i486 -mtune=i486"	# i486 is densest code
     17  1.1.4.2  yamt makeoptions 	COPTS="-Os"
     18  1.1.4.2  yamt makeoptions 	USE_SSP="no"
     19  1.1.4.2  yamt 
     20  1.1.4.2  yamt # Enable the hooks used for initializing the root memory-disk.
     21  1.1.4.2  yamt options 	MEMORY_DISK_HOOKS
     22  1.1.4.2  yamt options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
     23  1.1.4.2  yamt options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     24  1.1.4.2  yamt options 	MEMORY_DISK_ROOT_SIZE=10000	# size of memory disk, in blocks
     25  1.1.4.3  yamt options 	MEMORY_DISK_RBFLAGS=RB_SINGLE	# boot in single-user mode
     26  1.1.4.2  yamt 
     27  1.1.4.2  yamt maxusers	2		# estimated number of users
     28  1.1.4.2  yamt 
     29  1.1.4.2  yamt # CPU-related options.
     30  1.1.4.2  yamt #options 	VM86		# virtual 8086 emulation
     31  1.1.4.2  yamt #options 	USER_LDT	# user-settable LDT; used by WINE
     32  1.1.4.2  yamt 
     33  1.1.4.2  yamt # This option allows you to force a serial console at the specified
     34  1.1.4.2  yamt # I/O address.
     35  1.1.4.2  yamt #options 	CONSDEVNAME="\"com\"",CONADDR=0x3f8,CONSPEED=9600
     36  1.1.4.2  yamt 
     37  1.1.4.2  yamt # The following options override the memory sizes passed in from the boot
     38  1.1.4.2  yamt # block.  Use them *only* if the boot block is unable to determine the correct
     39  1.1.4.2  yamt # values.  Note that the BIOS may *correctly* report less than 640k of base
     40  1.1.4.2  yamt # memory if the extended BIOS data area is located at the top of base memory
     41  1.1.4.2  yamt # (as is the case on most recent systems).
     42  1.1.4.2  yamt #options 	REALBASEMEM=...	# size of base memory
     43  1.1.4.2  yamt #options 	REALEXTMEM=...	# size of extended memory
     44  1.1.4.2  yamt 
     45  1.1.4.2  yamt # Avoid irq 5 and 7, the most likely cause of problems on modern laptops.
     46  1.1.4.2  yamt options 		PCIC_ISA_INTR_ALLOC_MASK=0xff5f
     47  1.1.4.2  yamt 
     48  1.1.4.2  yamt # Standard system options
     49  1.1.4.2  yamt 
     50  1.1.4.2  yamt options 	INSECURE	# disable kernel security levels
     51  1.1.4.2  yamt 
     52  1.1.4.2  yamt options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     53  1.1.4.2  yamt #options 	NTP		# NTP phase/frequency locked loop
     54  1.1.4.2  yamt 
     55  1.1.4.2  yamt #options 	KTRACE		# system call tracing via ktrace(1)
     56  1.1.4.2  yamt 
     57  1.1.4.2  yamt #options 	SYSVMSG		# System V-like message queues
     58  1.1.4.2  yamt #options 	SYSVSEM		# System V-like semaphores
     59  1.1.4.2  yamt #options 	SYSVSHM		# System V-like memory sharing
     60  1.1.4.2  yamt 
     61  1.1.4.2  yamt options 	USERCONF	# userconf(4) support
     62  1.1.4.2  yamt options 	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
     63  1.1.4.2  yamt #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     64  1.1.4.2  yamt no options 	EXEC_AOUT
     65  1.1.4.2  yamt 
     66  1.1.4.2  yamt no options 	RFC2292		# Previous version of Adv. Sockets API for IPv6
     67  1.1.4.2  yamt no options 	PTRACE		# Include ptrace(2)
     68  1.1.4.2  yamt 
     69  1.1.4.2  yamt # Diagnostic/debugging support options
     70  1.1.4.2  yamt #options 	DIAGNOSTIC	# expensive kernel consistency checks
     71  1.1.4.2  yamt #options 	DEBUG		# expensive debugging checks/support
     72  1.1.4.2  yamt #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     73  1.1.4.2  yamt options 	DDB		# in-kernel debugger
     74  1.1.4.2  yamt #options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
     75  1.1.4.2  yamt #options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     76  1.1.4.2  yamt #options 	KGDB		# remote debugger
     77  1.1.4.2  yamt #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
     78  1.1.4.2  yamt #makeoptions 	DEBUG="-g"	# compile full symbol table
     79  1.1.4.2  yamt 
     80  1.1.4.2  yamt # Compatibility options
     81  1.1.4.2  yamt #options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
     82  1.1.4.2  yamt #options 	COMPAT_09	# NetBSD 0.9
     83  1.1.4.2  yamt #options 	COMPAT_10	# NetBSD 1.0
     84  1.1.4.2  yamt #options 	COMPAT_11	# NetBSD 1.1
     85  1.1.4.2  yamt #options 	COMPAT_12	# NetBSD 1.2, 386BSD, and BSDI
     86  1.1.4.2  yamt #options 	COMPAT_13	# NetBSD 1.3, 386BSD, and BSDI
     87  1.1.4.2  yamt #options 	COMPAT_14	# NetBSD 1.4
     88  1.1.4.2  yamt #options 	COMPAT_15	# NetBSD 1.5
     89  1.1.4.2  yamt #options 	COMPAT_16	# NetBSD 1.6
     90  1.1.4.2  yamt options 	COMPAT_20	# NetBSD 2.0
     91  1.1.4.2  yamt options 	COMPAT_30	# NetBSD 3.0 compatibility.
     92  1.1.4.2  yamt options 	COMPAT_40	# NetBSD 4.0
     93  1.1.4.2  yamt #options 	COMPAT_43	# 4.3BSD, 386BSD, and BSDI
     94  1.1.4.2  yamt #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     95  1.1.4.2  yamt #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     96  1.1.4.2  yamt 
     97  1.1.4.2  yamt #options 	COMPAT_SVR4	# binary compatibility with SVR4
     98  1.1.4.2  yamt #options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
     99  1.1.4.2  yamt #options 	COMPAT_LINUX	# binary compatibility with Linux
    100  1.1.4.2  yamt #options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
    101  1.1.4.2  yamt options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    102  1.1.4.2  yamt 
    103  1.1.4.2  yamt # File systems
    104  1.1.4.2  yamt file-system 	FFS		# UFS
    105  1.1.4.2  yamt file-system 	EXT2FS		# second extended file system (linux)
    106  1.1.4.2  yamt #file-system 	LFS		# log-structured file system
    107  1.1.4.2  yamt file-system 	MFS		# memory file system
    108  1.1.4.2  yamt file-system 	NFS		# Network File System client
    109  1.1.4.2  yamt file-system 	NTFS		# Windows/NT Filesystem
    110  1.1.4.2  yamt file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    111  1.1.4.2  yamt file-system 	MSDOSFS		# MS-DOS file system
    112  1.1.4.2  yamt #file-system 	FDESC		# /dev/fd
    113  1.1.4.2  yamt #file-system 	KERNFS		# /kern
    114  1.1.4.2  yamt #file-system 	NULLFS		# loopback file system
    115  1.1.4.2  yamt #file-system 	PROCFS		# /proc
    116  1.1.4.2  yamt #file-system 	UMAPFS		# NULLFS + uid and gid remapping
    117  1.1.4.2  yamt #file-system 	UNION		# union file system
    118  1.1.4.2  yamt #file-system 	PTYFS		# /dev/pts/N support
    119  1.1.4.3  yamt file-system 	TMPFS		# Efficient memory file-system
    120  1.1.4.2  yamt 
    121  1.1.4.2  yamt # Filesystem options
    122  1.1.4.2  yamt #options 	QUOTA		# UFS quotas
    123  1.1.4.2  yamt #options 	NFSSERVER	# Network File System server
    124  1.1.4.2  yamt options 	NFS_V2_ONLY	# Exclude NFS3 code to save space
    125  1.1.4.2  yamt options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    126  1.1.4.2  yamt #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    127  1.1.4.2  yamt 				# immutable) behave as system flags.
    128  1.1.4.2  yamt 
    129  1.1.4.2  yamt # Networking options
    130  1.1.4.2  yamt #options 	GATEWAY		# packet forwarding
    131  1.1.4.2  yamt options 	INET		# IP + ICMP + TCP + UDP
    132  1.1.4.2  yamt options 	INET6		# IPv6
    133  1.1.4.2  yamt #options 	MROUTING	# IP multicast routing
    134  1.1.4.2  yamt #options 	PIM		# Protocol Independent Multicast
    135  1.1.4.2  yamt #options 	ISO,TPIP	# OSI
    136  1.1.4.2  yamt #options 	EON		# OSI tunneling over IP
    137  1.1.4.2  yamt #options 	NETATALK	# AppleTalk networking protocols
    138  1.1.4.2  yamt #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    139  1.1.4.2  yamt #options 	PPP_DEFLATE	# Deflate compression support for PPP
    140  1.1.4.2  yamt #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    141  1.1.4.2  yamt #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    142  1.1.4.2  yamt #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    143  1.1.4.2  yamt 
    144  1.1.4.2  yamt # These options enable verbose messages for several subsystems.
    145  1.1.4.2  yamt # Warning, these may compile large string tables into the kernel!
    146  1.1.4.2  yamt #options 	EISAVERBOSE	# verbose EISA device autoconfig messages
    147  1.1.4.2  yamt #options 	MIIVERBOSE	# verbose PHY autoconfig messages
    148  1.1.4.2  yamt #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    149  1.1.4.2  yamt #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    150  1.1.4.2  yamt #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    151  1.1.4.2  yamt #options 	SCSIVERBOSE	# human readable SCSI error messages
    152  1.1.4.2  yamt 
    153  1.1.4.2  yamt #
    154  1.1.4.2  yamt # wscons options
    155  1.1.4.2  yamt #
    156  1.1.4.2  yamt # builtin terminal emulations 
    157  1.1.4.2  yamt #options 	WSEMUL_SUN		# sun terminal emulation
    158  1.1.4.2  yamt options 	WSEMUL_VT100		# VT100 / VT220 emulation
    159  1.1.4.2  yamt # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
    160  1.1.4.2  yamt #options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
    161  1.1.4.2  yamt #options 	WS_DEFAULT_FG=WSCOL_WHITE
    162  1.1.4.2  yamt #options 	WS_DEFAULT_BG=WSCOL_BLACK
    163  1.1.4.2  yamt #options 	WS_DEFAULT_COLATTR="(0)"
    164  1.1.4.2  yamt #options 	WS_DEFAULT_MONOATTR="(0)"
    165  1.1.4.2  yamt #options 	WS_KERNEL_FG=WSCOL_GREEN
    166  1.1.4.2  yamt #options 	WS_KERNEL_BG=WSCOL_BLACK
    167  1.1.4.2  yamt #options 	WS_KERNEL_COLATTR=""
    168  1.1.4.2  yamt #options 	WS_KERNEL_MONOATTR=""
    169  1.1.4.2  yamt # customization of console border color
    170  1.1.4.2  yamt #options 	WSDISPLAY_CUSTOM_BORDER	# border customization from wsconsctl(8)
    171  1.1.4.2  yamt #options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
    172  1.1.4.2  yamt # compatibility to other console drivers
    173  1.1.4.2  yamt #options 	WSDISPLAY_COMPAT_PCVT           # emulate some ioctls
    174  1.1.4.2  yamt #options 	WSDISPLAY_COMPAT_SYSCONS        # emulate some ioctls
    175  1.1.4.2  yamt #options 	WSDISPLAY_COMPAT_USL            # VT handling
    176  1.1.4.2  yamt #options 	WSDISPLAY_COMPAT_RAWKBD         # can get raw scancodes
    177  1.1.4.2  yamt # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
    178  1.1.4.2  yamt #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    179  1.1.4.2  yamt # allocate a number of virtual screens at autoconfiguration time
    180  1.1.4.2  yamt #options 	WSDISPLAY_DEFAULTSCREENS=4
    181  1.1.4.2  yamt # use a large software cursor that doesn't blink
    182  1.1.4.2  yamt options 	PCDISPLAY_SOFTCURSOR
    183  1.1.4.2  yamt # modify the screen type of the console; defaults to "80x25"
    184  1.1.4.2  yamt #options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
    185  1.1.4.2  yamt 
    186  1.1.4.2  yamt # Kernel root file system and dump configuration.
    187  1.1.4.2  yamt config		netbsd	root on ? type ?
    188  1.1.4.2  yamt #config		netbsd	root on sd0a type ffs
    189  1.1.4.2  yamt #config		netbsd	root on ? type nfs
    190  1.1.4.2  yamt 
    191  1.1.4.2  yamt #
    192  1.1.4.2  yamt # Device configuration
    193  1.1.4.2  yamt #
    194  1.1.4.2  yamt 
    195  1.1.4.2  yamt mainbus0 at root
    196  1.1.4.2  yamt 
    197  1.1.4.2  yamt cpu* at mainbus?
    198  1.1.4.2  yamt 
    199  1.1.4.2  yamt #apm0	at mainbus0			# Advanced power management
    200  1.1.4.2  yamt 
    201  1.1.4.2  yamt 
    202  1.1.4.2  yamt # Basic Bus Support
    203  1.1.4.2  yamt 
    204  1.1.4.2  yamt # PCI bus support
    205  1.1.4.2  yamt pci*	at mainbus? bus ?
    206  1.1.4.2  yamt pci*	at pchb? bus ?
    207  1.1.4.2  yamt pci*	at ppb? bus ?
    208  1.1.4.2  yamt 
    209  1.1.4.2  yamt # PCI bridges
    210  1.1.4.2  yamt pchb*	at pci? dev ? function ?	# PCI-Host bridges
    211  1.1.4.2  yamt pceb*	at pci? dev ? function ?	# PCI-EISA bridges
    212  1.1.4.2  yamt pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    213  1.1.4.2  yamt ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    214  1.1.4.2  yamt # XXX 'puc's aren't really bridges, but there's no better place for them here
    215  1.1.4.2  yamt #puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    216  1.1.4.2  yamt 
    217  1.1.4.2  yamt # EISA bus support
    218  1.1.4.2  yamt eisa0	at mainbus?
    219  1.1.4.2  yamt eisa0	at pceb?
    220  1.1.4.2  yamt 
    221  1.1.4.2  yamt # ISA bus support
    222  1.1.4.2  yamt isa0	at mainbus?
    223  1.1.4.2  yamt isa0	at pceb?
    224  1.1.4.2  yamt isa0	at pcib?
    225  1.1.4.2  yamt 
    226  1.1.4.2  yamt # PCMCIA bus support
    227  1.1.4.4  yamt pcmcia* at pcic? controller ? socket ?
    228  1.1.4.4  yamt pcmcia* at tcic? controller ? socket ?
    229  1.1.4.2  yamt 
    230  1.1.4.2  yamt # ISA PCMCIA controllers
    231  1.1.4.2  yamt pcic0 	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
    232  1.1.4.2  yamt pcic1 	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
    233  1.1.4.2  yamt pcic2	at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
    234  1.1.4.2  yamt tcic0 	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
    235  1.1.4.2  yamt 
    236  1.1.4.2  yamt # PCI PCMCIA controllers
    237  1.1.4.2  yamt pcic0	at pci? dev? function ?
    238  1.1.4.2  yamt 
    239  1.1.4.2  yamt # ISA Plug-and-Play bus support
    240  1.1.4.4  yamt isapnp0 at isa?
    241  1.1.4.2  yamt 
    242  1.1.4.2  yamt # ISA Plug-and-Play PCMCIA controllers
    243  1.1.4.2  yamt pcic*	at isapnp?
    244  1.1.4.2  yamt 
    245  1.1.4.2  yamt # Coprocessor Support
    246  1.1.4.2  yamt 
    247  1.1.4.2  yamt # Math Coprocessor support
    248  1.1.4.2  yamt npx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
    249  1.1.4.2  yamt 
    250  1.1.4.2  yamt 
    251  1.1.4.2  yamt # Console Devices
    252  1.1.4.2  yamt 
    253  1.1.4.2  yamt # wscons
    254  1.1.4.4  yamt pckbc0		at isa?			# PC keyboard controller
    255  1.1.4.2  yamt pckbd*		at pckbc?		# PC keyboard
    256  1.1.4.2  yamt #pms*		at pckbc?		# PS/2 mouse for wsmouse
    257  1.1.4.2  yamt vga0		at isa?
    258  1.1.4.2  yamt vga*		at pci? dev ? function ?
    259  1.1.4.2  yamt pcdisplay0	at isa?			# CGA, MDA, EGA, HGA
    260  1.1.4.2  yamt wsdisplay*	at vga? console ?
    261  1.1.4.2  yamt wsdisplay*	at pcdisplay? console ?
    262  1.1.4.2  yamt wskbd*		at pckbd? console ?
    263  1.1.4.2  yamt #wsmouse*	at pms? mux 0
    264  1.1.4.2  yamt 
    265  1.1.4.2  yamt #attimer0	at isa?
    266  1.1.4.2  yamt #pcppi0		at isa?
    267  1.1.4.2  yamt #sysbeep0	at pcppi?
    268  1.1.4.2  yamt 
    269  1.1.4.2  yamt # Serial Devices
    270  1.1.4.2  yamt 
    271  1.1.4.2  yamt # PCI serial interfaces
    272  1.1.4.2  yamt #com*	at puc? port ?			# 16x50s on "universal" comm boards
    273  1.1.4.2  yamt #cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    274  1.1.4.2  yamt 
    275  1.1.4.2  yamt # ISA Plug-and-Play serial interfaces
    276  1.1.4.2  yamt com*	at isapnp?			# Modems and serial boards
    277  1.1.4.2  yamt 
    278  1.1.4.2  yamt # PCMCIA serial interfaces
    279  1.1.4.2  yamt com*	at pcmcia? function ?		# Modems and serial cards
    280  1.1.4.2  yamt 
    281  1.1.4.4  yamt pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
    282  1.1.4.2  yamt com*	at pcmcom? slave ?		# ...and the slave devices
    283  1.1.4.2  yamt 
    284  1.1.4.2  yamt # ISA serial interfaces
    285  1.1.4.2  yamt #options 	COM_HAYESP		# adds Hayes ESP serial board support
    286  1.1.4.2  yamt com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
    287  1.1.4.2  yamt com1	at isa? port 0x2f8 irq 3
    288  1.1.4.2  yamt com2	at isa? port 0x3e8 irq 5
    289  1.1.4.2  yamt #com3	at isa? port 0x2e8 irq 9
    290  1.1.4.2  yamt #ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
    291  1.1.4.2  yamt #com*	at ast? slave ?
    292  1.1.4.2  yamt #boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
    293  1.1.4.2  yamt #com*	at boca? slave ?
    294  1.1.4.2  yamt #tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
    295  1.1.4.2  yamt #com*	at tcom? slave ?
    296  1.1.4.2  yamt #rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
    297  1.1.4.2  yamt #com*	at rtfps? slave ?
    298  1.1.4.2  yamt #cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
    299  1.1.4.2  yamt 
    300  1.1.4.2  yamt 
    301  1.1.4.2  yamt # Parallel Printer Interfaces
    302  1.1.4.2  yamt 
    303  1.1.4.2  yamt # PCI parallel printer interfaces
    304  1.1.4.2  yamt #lpt*	at puc? port ?			# || ports on "universal" comm boards
    305  1.1.4.2  yamt 
    306  1.1.4.2  yamt # ISA parallel printer interfaces
    307  1.1.4.2  yamt #lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    308  1.1.4.2  yamt #lpt1	at isa? port 0x278
    309  1.1.4.2  yamt #lpt2	at isa? port 0x3bc
    310  1.1.4.2  yamt 
    311  1.1.4.2  yamt # I2O devices
    312  1.1.4.2  yamt iop*	at pci? dev ? function ?	# I/O processor
    313  1.1.4.2  yamt iopsp*	at iop? tid ?			# SCSI/FC-AL ports
    314  1.1.4.2  yamt ld*	at iop? tid ?			# Block devices
    315  1.1.4.2  yamt #dpti*	at iop? tid 0			# DPT/Adaptec control interface
    316  1.1.4.2  yamt 
    317  1.1.4.2  yamt # SCSI Controllers and Devices
    318  1.1.4.2  yamt 
    319  1.1.4.2  yamt # PCI SCSI controllers
    320  1.1.4.2  yamt adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    321  1.1.4.2  yamt adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
    322  1.1.4.2  yamt ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    323  1.1.4.2  yamt ahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
    324  1.1.4.2  yamt bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    325  1.1.4.2  yamt dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
    326  1.1.4.2  yamt iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
    327  1.1.4.2  yamt mfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
    328  1.1.4.2  yamt mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
    329  1.1.4.2  yamt mpt*	at pci? dev ? function ?	# LSI Fusion SCSI/FC
    330  1.1.4.2  yamt pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
    331  1.1.4.2  yamt siop*	at pci? dev ? function ?	# NCR 53c8xx SCSI (new driver)
    332  1.1.4.2  yamt trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
    333  1.1.4.2  yamt 
    334  1.1.4.2  yamt # EISA SCSI controllers
    335  1.1.4.2  yamt ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
    336  1.1.4.2  yamt ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
    337  1.1.4.2  yamt bha*	at eisa? slot ?			# BusLogic 7xx SCSI
    338  1.1.4.2  yamt dpt*	at eisa? slot ?			# DPT SmartCache/SmartRAID
    339  1.1.4.2  yamt uha*	at eisa? slot ?			# UltraStor 24f SCSI
    340  1.1.4.2  yamt 
    341  1.1.4.2  yamt # PCMCIA SCSI controllers
    342  1.1.4.2  yamt aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    343  1.1.4.2  yamt 
    344  1.1.4.2  yamt # ISA Plug-and-Play SCSI controllers
    345  1.1.4.2  yamt aha*	at isapnp? 			# Adaptec AHA-154[02
    346  1.1.4.2  yamt aic*	at isapnp?			# Adaptec AHA-1520B
    347  1.1.4.2  yamt 
    348  1.1.4.2  yamt # ISA SCSI controllers
    349  1.1.4.2  yamt adv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02]
    350  1.1.4.2  yamt aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
    351  1.1.4.2  yamt aha1	at isa? port 0x334 irq ? drq ?
    352  1.1.4.2  yamt ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
    353  1.1.4.2  yamt aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
    354  1.1.4.2  yamt bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
    355  1.1.4.2  yamt bha1	at isa? port 0x334 irq ? drq ?
    356  1.1.4.2  yamt # The "nca" and "dpt" probes might give false hits or hang your machine.
    357  1.1.4.2  yamt #dpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
    358  1.1.4.2  yamt #nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 controller
    359  1.1.4.2  yamt #nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
    360  1.1.4.2  yamt sea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
    361  1.1.4.2  yamt uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
    362  1.1.4.2  yamt uha1	at isa? port 0x340 irq ? drq ?
    363  1.1.4.2  yamt wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
    364  1.1.4.2  yamt wds1	at isa? port 0x358 irq 11 drq 5
    365  1.1.4.2  yamt 
    366  1.1.4.2  yamt # SCSI bus support
    367  1.1.4.2  yamt scsibus* at scsi?
    368  1.1.4.2  yamt 
    369  1.1.4.2  yamt # SCSI devices
    370  1.1.4.2  yamt sd*	at scsibus? target ? lun ?	# SCSI disk drives
    371  1.1.4.2  yamt st*	at scsibus? target ? lun ?	# SCSI tape drives
    372  1.1.4.2  yamt cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    373  1.1.4.2  yamt #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    374  1.1.4.2  yamt #ss*	at scsibus? target ? lun ?	# SCSI scanners
    375  1.1.4.2  yamt #uk*	at scsibus? target ? lun ?	# SCSI unknown
    376  1.1.4.2  yamt 
    377  1.1.4.2  yamt 
    378  1.1.4.2  yamt # RAID controllers and devices
    379  1.1.4.2  yamt aac*	at pci? dev ? function ?	# Adaptec AAC family
    380  1.1.4.2  yamt amr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
    381  1.1.4.2  yamt cac*	at eisa? slot ?			# Compaq EISA array controllers
    382  1.1.4.2  yamt cac*	at pci? dev ? function ?	# Compaq PCI array controllers
    383  1.1.4.2  yamt ciss*	at pci? dev ? function ?	# HP Smart Array controllers
    384  1.1.4.2  yamt icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
    385  1.1.4.2  yamt mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
    386  1.1.4.2  yamt mlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
    387  1.1.4.2  yamt twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
    388  1.1.4.2  yamt twa*	at pci? dev ? function ?	# 3ware Escalade 95xx RAID controllers
    389  1.1.4.2  yamt 
    390  1.1.4.2  yamt ld*	at aac? unit ?			# logical disk devices
    391  1.1.4.2  yamt ld*	at amr? unit ?
    392  1.1.4.2  yamt ld*	at cac? unit ?
    393  1.1.4.2  yamt ld*	at icp? unit ?
    394  1.1.4.2  yamt ld*	at twe? unit ?
    395  1.1.4.2  yamt ld*	at twa? unit ?
    396  1.1.4.2  yamt ld*	at mlx? unit ?
    397  1.1.4.2  yamt 
    398  1.1.4.2  yamt icpsp*	at icp? unit ?			# SCSI pass-through
    399  1.1.4.2  yamt 
    400  1.1.4.2  yamt # IDE and related devices
    401  1.1.4.2  yamt # PCI IDE controllers - see pciide(4) for supported hardware.
    402  1.1.4.2  yamt # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    403  1.1.4.2  yamt # how to set up DMA modes for this chip. This may work, or may cause
    404  1.1.4.2  yamt # a machine hang with some controllers.
    405  1.1.4.2  yamt pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    406  1.1.4.2  yamt acardide*	at pci? dev ? function ?	# Acard IDE controllers
    407  1.1.4.2  yamt aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
    408  1.1.4.2  yamt #ahcisata* 	at pci? dev ? function ?	# AHCI SATA controllers
    409  1.1.4.2  yamt artsata*	at pci? dev ? function ?	# Intel i31244 SATA controller
    410  1.1.4.2  yamt cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
    411  1.1.4.2  yamt cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
    412  1.1.4.2  yamt geodeide* 	at pci? dev ? function ?	# AMD Geode IDE controllers
    413  1.1.4.2  yamt hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    414  1.1.4.2  yamt iteide* 	at pci? dev ? function ?	# IT Express IDE controllers
    415  1.1.4.4  yamt #ixpide* 	at pci? dev ? function ?	# ATI IXP IDE controllers
    416  1.1.4.2  yamt optiide* 	at pci? dev ? function ?	# Opti IDE controllers
    417  1.1.4.2  yamt piixide* 	at pci? dev ? function ?	# Intel IDE controllers
    418  1.1.4.2  yamt pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
    419  1.1.4.2  yamt pdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
    420  1.1.4.2  yamt rccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
    421  1.1.4.2  yamt satalink*	at pci? dev ? function ?	# SiI SATALink controllers
    422  1.1.4.2  yamt siside* 	at pci? dev ? function ?	# SiS IDE controllers
    423  1.1.4.4  yamt slide*		at pci? dev ? function ?	# Symphony Labs IDE controllers
    424  1.1.4.2  yamt #svwsata* 	at pci? dev ? function ?	# ServerWorks SATA controllers
    425  1.1.4.2  yamt viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    426  1.1.4.2  yamt stpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
    427  1.1.4.2  yamt 
    428  1.1.4.2  yamt # ISA Plug-and-Play IDE controllers
    429  1.1.4.2  yamt wdc*	at isapnp?
    430  1.1.4.2  yamt 
    431  1.1.4.2  yamt # PCMCIA IDE controllers
    432  1.1.4.2  yamt wdc*	at pcmcia? function ?
    433  1.1.4.2  yamt 
    434  1.1.4.2  yamt # ISA ST506, ESDI, and IDE controllers
    435  1.1.4.2  yamt # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
    436  1.1.4.2  yamt # fall back to 16bits I/O if 32bits I/O are not functional).
    437  1.1.4.2  yamt # Some controllers pass the initial 32bit test, but will fail later.
    438  1.1.4.2  yamt wdc0	at isa? port 0x1f0 irq 14 flags 0x00
    439  1.1.4.2  yamt wdc1	at isa? port 0x170 irq 15 flags 0x00
    440  1.1.4.2  yamt 
    441  1.1.4.2  yamt # ATA (IDE) bus support
    442  1.1.4.2  yamt atabus* at ata?
    443  1.1.4.2  yamt 
    444  1.1.4.2  yamt # IDE drives
    445  1.1.4.2  yamt # Flags are used only with controllers that support DMA operations
    446  1.1.4.2  yamt # and mode settings (e.g. some pciide controllers)
    447  1.1.4.2  yamt # The lowest order four bits (rightmost digit) of the flags define the PIO
    448  1.1.4.2  yamt # mode to use, the next set of four bits the DMA mode and the third set the
    449  1.1.4.2  yamt # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    450  1.1.4.2  yamt # to use, and the last bit must be 1 for this setting to be used.
    451  1.1.4.2  yamt # For DMA and UDMA, 0xf (1111) means 'disable'.
    452  1.1.4.2  yamt # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    453  1.1.4.2  yamt # (0xc=1100, 0xa=1010, 0xf=1111)
    454  1.1.4.2  yamt # 0x0000 means "use whatever the drive claims to support".
    455  1.1.4.2  yamt wd*	at atabus? drive ? flags 0x0000
    456  1.1.4.2  yamt 
    457  1.1.4.2  yamt # ATA RAID configuration support, as found on some Promise controllers.
    458  1.1.4.2  yamt pseudo-device	ataraid
    459  1.1.4.2  yamt ld*	at ataraid? vendtype ? unit ?
    460  1.1.4.2  yamt 
    461  1.1.4.2  yamt # ATAPI bus support
    462  1.1.4.2  yamt atapibus* at atapi?
    463  1.1.4.2  yamt 
    464  1.1.4.2  yamt # ATAPI devices
    465  1.1.4.2  yamt # flags have the same meaning as for IDE drives.
    466  1.1.4.2  yamt cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    467  1.1.4.2  yamt sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    468  1.1.4.2  yamt st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    469  1.1.4.2  yamt #uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    470  1.1.4.2  yamt 
    471  1.1.4.2  yamt 
    472  1.1.4.2  yamt # Miscellaneous mass storage devices
    473  1.1.4.2  yamt 
    474  1.1.4.2  yamt # ISA floppy
    475  1.1.4.2  yamt fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    476  1.1.4.2  yamt #fdc1	at isa? port 0x370 irq ? drq ?
    477  1.1.4.2  yamt fd*	at fdc? drive ?			# the drives themselves
    478  1.1.4.2  yamt # some machines need you to do this instead of fd*
    479  1.1.4.2  yamt #fd0	at fdc0 drive 0
    480  1.1.4.2  yamt 
    481  1.1.4.2  yamt # ISA CD-ROM devices
    482  1.1.4.2  yamt #mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
    483  1.1.4.2  yamt 
    484  1.1.4.2  yamt # ISA tape devices
    485  1.1.4.2  yamt # note: the wt driver conflicts unpleasantly with ed devices at the
    486  1.1.4.2  yamt # same I/O address. The probe reprograms their EEPROMs. Don't
    487  1.1.4.2  yamt # uncomment it unless you are actually using it.
    488  1.1.4.2  yamt #wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
    489  1.1.4.2  yamt 
    490  1.1.4.2  yamt 
    491  1.1.4.2  yamt # Network Interfaces
    492  1.1.4.2  yamt 
    493  1.1.4.2  yamt # PCI network interfaces
    494  1.1.4.2  yamt an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
    495  1.1.4.2  yamt ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
    496  1.1.4.2  yamt atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
    497  1.1.4.2  yamt bce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
    498  1.1.4.2  yamt bge* 	at pci? dev ? function ?	# Broadcom 570x Gigabit Ethernet
    499  1.1.4.2  yamt # bnx* 	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
    500  1.1.4.2  yamt #en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    501  1.1.4.2  yamt ep*	at pci? dev ? function ?	# 3Com 3c59x
    502  1.1.4.4  yamt ex*	at pci? dev ? function ?	# 3Com 3c90x[BC]
    503  1.1.4.2  yamt epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    504  1.1.4.2  yamt #esh*	at pci? dev ? function ?	# Essential HIPPI card
    505  1.1.4.2  yamt fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    506  1.1.4.2  yamt fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    507  1.1.4.2  yamt gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
    508  1.1.4.2  yamt #hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
    509  1.1.4.2  yamt #ipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
    510  1.1.4.2  yamt #iwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
    511  1.1.4.2  yamt #le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    512  1.1.4.2  yamt lii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
    513  1.1.4.2  yamt #lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    514  1.1.4.2  yamt mskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
    515  1.1.4.2  yamt msk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
    516  1.1.4.2  yamt mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
    517  1.1.4.2  yamt ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    518  1.1.4.2  yamt #nfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
    519  1.1.4.2  yamt #ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    520  1.1.4.2  yamt pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    521  1.1.4.2  yamt re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
    522  1.1.4.2  yamt rtk*	at pci? dev ? function ?	# Realtek 8129/8139
    523  1.1.4.2  yamt sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
    524  1.1.4.2  yamt sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
    525  1.1.4.2  yamt skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
    526  1.1.4.2  yamt sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
    527  1.1.4.2  yamt ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
    528  1.1.4.2  yamt stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
    529  1.1.4.2  yamt ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
    530  1.1.4.2  yamt tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    531  1.1.4.2  yamt tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    532  1.1.4.2  yamt #txp*	at pci? dev ? function ?	# 3com 3cr990
    533  1.1.4.2  yamt #vge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
    534  1.1.4.2  yamt vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    535  1.1.4.2  yamt wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
    536  1.1.4.2  yamt wm*	at pci? dev ? function ?	# Intel 8254x gigabit
    537  1.1.4.2  yamt 
    538  1.1.4.2  yamt # EISA network interfaces
    539  1.1.4.2  yamt ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
    540  1.1.4.2  yamt fea*	at eisa? slot ?			# DEC DEFEA FDDI
    541  1.1.4.2  yamt tlp*	at eisa? slot ?			# DEC DE-425 Ethernet
    542  1.1.4.2  yamt 
    543  1.1.4.2  yamt # ISA Plug-and-Play network interfaces
    544  1.1.4.2  yamt an*	at isapnp?			# # Aironet 802.11
    545  1.1.4.2  yamt ep*	at isapnp?			# 3Com 3c509 Ethernet
    546  1.1.4.2  yamt fmv*	at isapnp?			# Fujitsu FMV-183
    547  1.1.4.2  yamt le*	at isapnp?			# AMD PCnet-ISA Ethernet
    548  1.1.4.2  yamt ne*	at isapnp?			# NE2000-compatible Ethernet
    549  1.1.4.4  yamt tr*	at isapnp?			# IBM/3Com TROPIC Token-Ring
    550  1.1.4.2  yamt 
    551  1.1.4.2  yamt # PCMCIA network interfaces
    552  1.1.4.2  yamt an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
    553  1.1.4.2  yamt awi*	at pcmcia? function ?		# BayStack 650 (802.11FH)
    554  1.1.4.2  yamt cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
    555  1.1.4.2  yamt cs*	at pcmcia? function ?		# CS89xx Ethernet
    556  1.1.4.2  yamt ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    557  1.1.4.2  yamt mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    558  1.1.4.2  yamt ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    559  1.1.4.2  yamt ray* 	at pcmcia? function ?		# Raytheon Raylink (802.11)
    560  1.1.4.2  yamt sm*	at pcmcia? function ?		# Megahertz Ethernet
    561  1.1.4.4  yamt wi*	at pcmcia? function ?		# Lucent/Intersil WaveLAN/IEEE (802.11)
    562  1.1.4.2  yamt options 	WI_PCMCIA_SPECTRUM24T_FW=0
    563  1.1.4.2  yamt xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
    564  1.1.4.2  yamt com*	at xirc?
    565  1.1.4.2  yamt xi*	at xirc?
    566  1.1.4.2  yamt mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
    567  1.1.4.2  yamt com*	at mhzc?
    568  1.1.4.2  yamt sm*	at mhzc?
    569  1.1.4.2  yamt 
    570  1.1.4.2  yamt # ISA network interfaces
    571  1.1.4.2  yamt ate0	at isa? port 0x2a0 irq ?		# AT1700
    572  1.1.4.2  yamt cs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
    573  1.1.4.2  yamt ec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
    574  1.1.4.4  yamt eg0	at isa? port 0x280 irq 9		# 3c505 Ethernet cards
    575  1.1.4.4  yamt el0	at isa? port 0x300 irq 9		# 3c501 Ethernet cards
    576  1.1.4.4  yamt ep*	at isa? port ? irq ?			# 3c509 Ethernet cards
    577  1.1.4.4  yamt ef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3c507
    578  1.1.4.2  yamt ai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
    579  1.1.4.2  yamt fmv0	at isa? port 0x2a0 irq ?		# FMV-181/182
    580  1.1.4.2  yamt ix0	at isa? port 0x300 irq 10		# EtherExpress/16
    581  1.1.4.2  yamt iy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
    582  1.1.4.2  yamt lc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
    583  1.1.4.2  yamt depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
    584  1.1.4.2  yamt le*	at depca?
    585  1.1.4.2  yamt nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
    586  1.1.4.2  yamt le*	at nele?
    587  1.1.4.2  yamt bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
    588  1.1.4.2  yamt le*	at bicc?
    589  1.1.4.4  yamt ne0	at isa? port 0x280 irq 9		# NE[12]000 Ethernet cards
    590  1.1.4.2  yamt ne1	at isa? port 0x300 irq 10
    591  1.1.4.2  yamt sm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
    592  1.1.4.2  yamt tr0	at isa? port 0xa20 iomem 0xd8000 irq ?	# IBM TROPIC based Token-Ring
    593  1.1.4.2  yamt tr1	at isa? port 0xa24 iomem 0xd0000 irq ?	# IBM TROPIC based Token-Ring
    594  1.1.4.4  yamt tr*	at isa? port ? irq ?			# 3Com TROPIC based Token-Ring
    595  1.1.4.2  yamt we0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
    596  1.1.4.2  yamt we1	at isa? port 0x300 iomem 0xcc000 irq 10
    597  1.1.4.2  yamt 
    598  1.1.4.2  yamt # MII/PHY support
    599  1.1.4.2  yamt acphy*	at mii? phy ?			# DAltima AC101 and AMD Am79c874 PHYs
    600  1.1.4.2  yamt amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
    601  1.1.4.2  yamt bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    602  1.1.4.2  yamt brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
    603  1.1.4.2  yamt #ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
    604  1.1.4.2  yamt dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    605  1.1.4.2  yamt exphy*	at mii? phy ?			# 3Com internal PHYs
    606  1.1.4.2  yamt glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    607  1.1.4.2  yamt gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    608  1.1.4.4  yamt icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
    609  1.1.4.2  yamt igphy*	at mii? phy ?			# Intel IGP01E1000
    610  1.1.4.2  yamt ikphy*	at mii? phy ?			# Intel 82563 PHYs
    611  1.1.4.2  yamt inphy*	at mii? phy ?			# Intel 82555 PHYs
    612  1.1.4.2  yamt iophy*	at mii? phy ?			# Intel 82553 PHYs
    613  1.1.4.4  yamt lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
    614  1.1.4.4  yamt makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    615  1.1.4.2  yamt nsphy*	at mii? phy ?			# NS83840 PHYs
    616  1.1.4.4  yamt nsphyter* at mii? phy ? 		# NS83843 PHYs
    617  1.1.4.2  yamt pnaphy* at mii? phy ?			# generic HomePNA PHYs
    618  1.1.4.2  yamt qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    619  1.1.4.4  yamt rgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
    620  1.1.4.2  yamt rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
    621  1.1.4.2  yamt sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    622  1.1.4.2  yamt tlphy*	at mii? phy ?			# ThunderLAN PHYs
    623  1.1.4.2  yamt tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    624  1.1.4.4  yamt urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    625  1.1.4.2  yamt ukphy*	at mii? phy ?			# generic unknown PHYs
    626  1.1.4.2  yamt 
    627  1.1.4.2  yamt # USB Controller and Devices
    628  1.1.4.2  yamt 
    629  1.1.4.2  yamt # PCI USB controllers
    630  1.1.4.2  yamt ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
    631  1.1.4.2  yamt uhci*	at pci?				# Universal Host Controller (Intel)
    632  1.1.4.2  yamt ohci*	at pci?				# Open Host Controller
    633  1.1.4.2  yamt 
    634  1.1.4.2  yamt # USB bus support
    635  1.1.4.2  yamt usb*	at ehci?
    636  1.1.4.2  yamt usb*	at uhci?
    637  1.1.4.2  yamt usb*	at ohci?
    638  1.1.4.2  yamt 
    639  1.1.4.2  yamt # USB Hubs
    640  1.1.4.2  yamt uhub*	at usb?
    641  1.1.4.2  yamt uhub*	at uhub? port ?
    642  1.1.4.2  yamt 
    643  1.1.4.2  yamt # USB HID device
    644  1.1.4.4  yamt uhidev* at uhub? port ? configuration ? interface ?
    645  1.1.4.2  yamt 
    646  1.1.4.2  yamt # USB Mice
    647  1.1.4.2  yamt #ums*	at uhidev? reportid ?
    648  1.1.4.2  yamt #wsmouse*	at ums?
    649  1.1.4.2  yamt 
    650  1.1.4.2  yamt # USB Keyboards
    651  1.1.4.2  yamt ukbd*	at uhidev? reportid ?
    652  1.1.4.2  yamt wskbd*	at ukbd? console ?
    653  1.1.4.2  yamt 
    654  1.1.4.2  yamt # USB serial adapter
    655  1.1.4.4  yamt #ucycom* at uhidev? reportid ?
    656  1.1.4.2  yamt 
    657  1.1.4.2  yamt # USB Generic HID devices
    658  1.1.4.2  yamt #uhid*	at uhidev? reportid ?
    659  1.1.4.2  yamt 
    660  1.1.4.2  yamt # USB Printer
    661  1.1.4.2  yamt #ulpt*	at uhub? port ? configuration ? interface ?
    662  1.1.4.2  yamt 
    663  1.1.4.2  yamt # USB Mass Storage
    664  1.1.4.2  yamt umass*	at uhub? port ? configuration ? interface ?
    665  1.1.4.2  yamt 
    666  1.1.4.2  yamt # Y@P firmware loader
    667  1.1.4.2  yamt #uyap* at uhub? port ?
    668  1.1.4.2  yamt 
    669  1.1.4.2  yamt # USB Generic driver
    670  1.1.4.2  yamt #ugen*	at uhub? port ? configuration ? interface ?
    671  1.1.4.2  yamt 
    672  1.1.4.2  yamt # USB Ethernet adapters
    673  1.1.4.2  yamt #atu*	at uhub? port ?		# Atmel AT76C50XX based adapters
    674  1.1.4.2  yamt aue* 	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    675  1.1.4.2  yamt axe*	at uhub? port ?		# ASIX AX88172 based adapters
    676  1.1.4.2  yamt cue* 	at uhub? port ?		# CATC USB-EL1201A based adapters
    677  1.1.4.2  yamt kue* 	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    678  1.1.4.2  yamt url*	at uhub? port ?		# Realtek RTL8150L based adapters
    679  1.1.4.2  yamt 
    680  1.1.4.2  yamt # Audio Devices
    681  1.1.4.2  yamt 
    682  1.1.4.2  yamt # PCI audio devices
    683  1.1.4.2  yamt #eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
    684  1.1.4.2  yamt #eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
    685  1.1.4.2  yamt #sv*	at pci? dev ? function ?	# S3 SonicVibes
    686  1.1.4.2  yamt 
    687  1.1.4.2  yamt # ISA Plug-and-Play audio devices
    688  1.1.4.4  yamt #guspnp* at isapnp?			# Gravis Ultra Sound PnP audio
    689  1.1.4.2  yamt #sb*	at isapnp?			# SoundBlaster-compatible audio
    690  1.1.4.2  yamt 
    691  1.1.4.2  yamt # ISA audio devices
    692  1.1.4.2  yamt # the "aria" probe might give false hits
    693  1.1.4.2  yamt #aria0	at isa? port 0x290 irq 10 		# Aria
    694  1.1.4.2  yamt #gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
    695  1.1.4.2  yamt #pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
    696  1.1.4.2  yamt #sb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
    697  1.1.4.2  yamt #wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
    698  1.1.4.2  yamt 
    699  1.1.4.2  yamt # OPL[23] FM synthesizers
    700  1.1.4.2  yamt #opl0	at isa? port 0x388	# use only if not attached to sound card
    701  1.1.4.2  yamt #opl*	at eso?
    702  1.1.4.2  yamt #opl*	at ess?
    703  1.1.4.2  yamt #opl*	at sb?
    704  1.1.4.2  yamt #opl*	at sv?
    705  1.1.4.2  yamt 
    706  1.1.4.2  yamt # Audio support
    707  1.1.4.2  yamt #audio*	at audiobus?
    708  1.1.4.2  yamt 
    709  1.1.4.2  yamt # MIDI support
    710  1.1.4.2  yamt #midi*	at midibus?
    711  1.1.4.2  yamt #midi*	at pcppi?		# MIDI interface to the PC speaker
    712  1.1.4.2  yamt 
    713  1.1.4.2  yamt # The spkr driver provides a simple tone interface to the built in speaker.
    714  1.1.4.2  yamt #spkr0	at pcppi?		# PC speaker
    715  1.1.4.2  yamt 
    716  1.1.4.2  yamt 
    717  1.1.4.2  yamt # Mice
    718  1.1.4.2  yamt 
    719  1.1.4.2  yamt # ISA busmice
    720  1.1.4.2  yamt #lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
    721  1.1.4.2  yamt #lms1	at isa? port 0x238 irq 5
    722  1.1.4.2  yamt #mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
    723  1.1.4.2  yamt #mms1	at isa? port 0x238 irq 5
    724  1.1.4.2  yamt #wsmouse*	at lms?
    725  1.1.4.2  yamt #wsmouse*	at mms?
    726  1.1.4.2  yamt 
    727  1.1.4.2  yamt # Joysticks
    728  1.1.4.2  yamt 
    729  1.1.4.2  yamt # ISA Plug-and-Play joysticks
    730  1.1.4.2  yamt #joy*	at isapnp?			# Game ports (usually on audio cards)
    731  1.1.4.2  yamt 
    732  1.1.4.2  yamt # ISA joysticks. Probe is a little strange; add only if you have one.
    733  1.1.4.2  yamt #joy0	at isa? port 0x201
    734  1.1.4.2  yamt 
    735  1.1.4.2  yamt 
    736  1.1.4.2  yamt # Miscellaneous Devices
    737  1.1.4.2  yamt 
    738  1.1.4.2  yamt # Planetconnect Satellite receiver driver.
    739  1.1.4.2  yamt #satlink0 at isa? port 0x300 drq 1
    740  1.1.4.2  yamt 
    741  1.1.4.2  yamt 
    742  1.1.4.2  yamt # Pull in optional local configuration
    743  1.1.4.2  yamt cinclude "arch/i386/conf/INSTALL.local"
    744  1.1.4.2  yamt 
    745  1.1.4.2  yamt 
    746  1.1.4.2  yamt # Pseudo-Devices
    747  1.1.4.2  yamt 
    748  1.1.4.2  yamt # disk/mass storage pseudo-devices
    749  1.1.4.2  yamt #pseudo-device	ccd		4	# concatenated/striped disk devices
    750  1.1.4.2  yamt pseudo-device	raid		8	# RAIDframe disk driver
    751  1.1.4.2  yamt options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    752  1.1.4.2  yamt #pseudo-device	fss		4	# file system snapshot device
    753  1.1.4.2  yamt pseudo-device	md		1	# memory disk device (ramdisk)
    754  1.1.4.2  yamt #pseudo-device	vnd			# disk-like interface to files
    755  1.1.4.2  yamt 
    756  1.1.4.2  yamt # network pseudo-devices
    757  1.1.4.2  yamt pseudo-device	bpfilter		# Berkeley packet filter
    758  1.1.4.2  yamt #pseudo-device	ipfilter		# IP filter (firewall) and NAT
    759  1.1.4.2  yamt pseudo-device	loop			# network loopback
    760  1.1.4.2  yamt #pseudo-device	ppp			# Point-to-Point Protocol
    761  1.1.4.2  yamt pseudo-device	sl			# Serial Line IP
    762  1.1.4.2  yamt #pseudo-device	strip			# Starmode Radio IP (Metricom)
    763  1.1.4.2  yamt #pseudo-device	tun			# network tunneling over tty
    764  1.1.4.2  yamt #pseudo-device	gre			# generic L3 over IP tunnel
    765  1.1.4.2  yamt 
    766  1.1.4.2  yamt # miscellaneous pseudo-devices
    767  1.1.4.2  yamt pseudo-device	pty		2	# pseudo-terminals (Sysinst needs two)
    768  1.1.4.2  yamt options NO_DEV_PTM
    769  1.1.4.2  yamt #pseudo-device	sequencer	1	# MIDI sequencer
    770  1.1.4.2  yamt # rnd works; RND_COM does not on port i386 yet.
    771  1.1.4.2  yamt pseudo-device	rnd			# /dev/random and in-kernel generator
    772  1.1.4.2  yamt #options 	RND_COM			# use "com" randomness as well (BROKEN)
    773  1.1.4.2  yamt 
    774  1.1.4.2  yamt # a pseudo device needed for Coda	# also needs CODA (above)
    775  1.1.4.2  yamt #pseudo-device	vcoda		4	# coda minicache <-> venus comm.
    776  1.1.4.2  yamt 
    777  1.1.4.2  yamt # wscons pseudo-devices
    778  1.1.4.2  yamt pseudo-device	wsmux			# mouse & keyboard multiplexor
    779  1.1.4.2  yamt #pseudo-device	wsfont
    780  1.1.4.2  yamt 
    781