Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.130.2.2
      1  1.130.2.2  thorpej #	$NetBSD: INSTALL,v 1.130.2.2 1999/11/05 21:36:22 thorpej Exp $
      2  1.130.2.2  thorpej #
      3  1.130.2.2  thorpej #	INSTALL - Installation kernel.
      4  1.130.2.2  thorpej #
      5  1.130.2.2  thorpej #	This kernel should be derived from GENERIC with some features
      6  1.130.2.2  thorpej #	commented out.
      7  1.130.2.2  thorpej #
      8  1.130.2.2  thorpej #	This kernel does NOT support X, mice, audio devices, non-NetBSD
      9  1.130.2.2  thorpej #	emulation.
     10  1.130.2.2  thorpej #
     11  1.130.2.2  thorpej 
     12  1.130.2.2  thorpej include "arch/i386/conf/std.i386"
     13  1.130.2.2  thorpej 
     14  1.130.2.2  thorpej # Enable the hooks used for initializing the root memory-disk.
     15  1.130.2.2  thorpej options 	MEMORY_DISK_HOOKS
     16  1.130.2.2  thorpej options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
     17  1.130.2.2  thorpej options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     18  1.130.2.2  thorpej options 	MINIROOTSIZE=3174	# size of memory disk, in blocks
     19  1.130.2.2  thorpej #options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
     20  1.130.2.2  thorpej 
     21  1.130.2.2  thorpej makeoptions	COPTS="-Os"		# generates smaller code than -O2, -O1
     22  1.130.2.2  thorpej 
     23  1.130.2.2  thorpej maxusers	32		# estimated number of users
     24  1.130.2.2  thorpej 
     25  1.130.2.2  thorpej # CPU support.  At least one is REQUIRED.
     26  1.130.2.2  thorpej options 	I386_CPU
     27  1.130.2.2  thorpej options 	I486_CPU
     28  1.130.2.2  thorpej options 	I586_CPU
     29  1.130.2.2  thorpej options 	I686_CPU
     30  1.130.2.2  thorpej 
     31  1.130.2.2  thorpej # CPU-related options.
     32  1.130.2.2  thorpej options 	MATH_EMULATE	# floating point emulation
     33  1.130.2.2  thorpej #options 	VM86		# virtual 8086 emulation
     34  1.130.2.2  thorpej #options 	USER_LDT	# user-settable LDT; used by WINE
     35  1.130.2.2  thorpej # eliminate delay no-ops in I/O; recommended on all but very old machines
     36  1.130.2.2  thorpej #options 	DUMMY_NOPS
     37  1.130.2.2  thorpej 
     38  1.130.2.2  thorpej # Misc. i386-specific options
     39  1.130.2.2  thorpej #options 	XSERVER		# X server support in console drivers
     40  1.130.2.2  thorpej 
     41  1.130.2.2  thorpej # This option allows you to force a serial console at the specified
     42  1.130.2.2  thorpej # I/O address.
     43  1.130.2.2  thorpej #options 	"CONSDEVNAME=\"com\"",CONADDR=0x3f8,CONSPEED=9600
     44  1.130.2.2  thorpej 
     45  1.130.2.2  thorpej # The following options override the memory sizes passed in from the boot
     46  1.130.2.2  thorpej # block.  Use them *only* if the boot block is unable to determine the correct
     47  1.130.2.2  thorpej # values.  Note that the BIOS may *correctly* report less than 640k of base
     48  1.130.2.2  thorpej # memory if the extended BIOS data area is located at the top of base memory
     49  1.130.2.2  thorpej # (as is the case on most recent systems).
     50  1.130.2.2  thorpej #options 	REALBASEMEM=...	# size of base memory
     51  1.130.2.2  thorpej #options 	REALEXTMEM=...	# size of extended memory
     52  1.130.2.2  thorpej 
     53  1.130.2.2  thorpej # Avoid irq 5 and 7, the most likely cause of problems on modern laptops.
     54  1.130.2.2  thorpej options		PCIC_ISA_INTR_ALLOC_MASK=0xff5f
     55  1.130.2.2  thorpej 
     56  1.130.2.2  thorpej # Standard system options
     57  1.130.2.2  thorpej 
     58  1.130.2.2  thorpej #options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
     59  1.130.2.2  thorpej options 	INSECURE	# disable kernel security levels
     60  1.130.2.2  thorpej 
     61  1.130.2.2  thorpej options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     62  1.130.2.2  thorpej #options 	NTP		# NTP phase/frequency locked loop
     63  1.130.2.2  thorpej 
     64  1.130.2.2  thorpej #options 	KTRACE		# system call tracing via ktrace(1)
     65  1.130.2.2  thorpej 
     66  1.130.2.2  thorpej #options 	SYSVMSG		# System V-like message queues
     67  1.130.2.2  thorpej #options 	SYSVSEM		# System V-like semaphores
     68  1.130.2.2  thorpej #options 	SYSVSHM		# System V-like memory sharing
     69  1.130.2.2  thorpej #options 	SHMMAXPGS=1024	# 1024 pages is the default
     70  1.130.2.2  thorpej 
     71  1.130.2.2  thorpej #options 	LKM		# loadable kernel modules
     72  1.130.2.2  thorpej 
     73  1.130.2.2  thorpej # Diagnostic/debugging support options
     74  1.130.2.2  thorpej #options 	DIAGNOSTIC	# cheap kernel consistency checks
     75  1.130.2.2  thorpej #options 	DEBUG		# expensive debugging checks/support
     76  1.130.2.2  thorpej #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     77  1.130.2.2  thorpej options 	DDB		# in-kernel debugger
     78  1.130.2.2  thorpej options 	DDB_ONPANIC=0	# do not by default automatically drop to ddb
     79  1.130.2.2  thorpej #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     80  1.130.2.2  thorpej #options 	KGDB		# remote debugger
     81  1.130.2.2  thorpej #options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
     82  1.130.2.2  thorpej #makeoptions	DEBUG="-g"	# compile full symbol table
     83  1.130.2.2  thorpej 
     84  1.130.2.2  thorpej # Compatibility options
     85  1.130.2.2  thorpej #options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
     86  1.130.2.2  thorpej #options 	COMPAT_09	# NetBSD 0.9,
     87  1.130.2.2  thorpej options 	COMPAT_10	# NetBSD 1.0,
     88  1.130.2.2  thorpej options 	COMPAT_11	# NetBSD 1.1,
     89  1.130.2.2  thorpej options 	COMPAT_12	# NetBSD 1.2,
     90  1.130.2.2  thorpej options 	COMPAT_13	# NetBSD 1.3,
     91  1.130.2.2  thorpej options 	COMPAT_14	# NetBSD 1.4,
     92  1.130.2.2  thorpej #options 	COMPAT_43	# and 4.3BSD
     93  1.130.2.2  thorpej options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     94  1.130.2.2  thorpej 
     95  1.130.2.2  thorpej #options 	COMPAT_SVR4	# binary compatibility with SVR4
     96  1.130.2.2  thorpej #options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
     97  1.130.2.2  thorpej #options 	COMPAT_LINUX	# binary compatibility with Linux
     98  1.130.2.2  thorpej #options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
     99  1.130.2.2  thorpej 
    100  1.130.2.2  thorpej # File systems
    101  1.130.2.2  thorpej file-system 	FFS		# UFS
    102  1.130.2.2  thorpej file-system 	EXT2FS		# second extended file system (linux)
    103  1.130.2.2  thorpej #file-system 	LFS		# log-structured file system
    104  1.130.2.2  thorpej file-system 	MFS		# memory file system
    105  1.130.2.2  thorpej file-system 	NFS		# Network File System client
    106  1.130.2.2  thorpej file-system 	NTFS		# Windows/NT Filesystem
    107  1.130.2.2  thorpej file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    108  1.130.2.2  thorpej file-system 	MSDOSFS		# MS-DOS file system
    109  1.130.2.2  thorpej #file-system 	FDESC		# /dev/fd
    110  1.130.2.2  thorpej file-system 	KERNFS		# /kern
    111  1.130.2.2  thorpej #file-system 	NULLFS		# loopback file system
    112  1.130.2.2  thorpej #file-system 	PORTAL		# portal filesystem (still experimental)
    113  1.130.2.2  thorpej #file-system 	PROCFS		# /proc
    114  1.130.2.2  thorpej #file-system 	UMAPFS		# NULLFS + uid and gid remapping
    115  1.130.2.2  thorpej #file-system 	UNION		# union file system
    116  1.130.2.2  thorpej 
    117  1.130.2.2  thorpej # File system options
    118  1.130.2.2  thorpej #options 	QUOTA		# UFS quotas
    119  1.130.2.2  thorpej #options 	NFSSERVER	# Network File System server
    120  1.130.2.2  thorpej #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    121  1.130.2.2  thorpej 				# immutable) behave as system flags.
    122  1.130.2.2  thorpej 
    123  1.130.2.2  thorpej # Networking options
    124  1.130.2.2  thorpej #options 	GATEWAY		# packet forwarding
    125  1.130.2.2  thorpej options 	INET		# IP + ICMP + TCP + UDP
    126  1.130.2.2  thorpej #options 	MROUTING	# IP multicast routing
    127  1.130.2.2  thorpej #options 	NS		# XNS
    128  1.130.2.2  thorpej #options 	NSIP		# XNS tunneling over IP
    129  1.130.2.2  thorpej #options 	ISO,TPIP	# OSI
    130  1.130.2.2  thorpej #options 	EON		# OSI tunneling over IP
    131  1.130.2.2  thorpej #options 	CCITT,LLC,HDLC	# X.25
    132  1.130.2.2  thorpej #options 	NETATALK	# AppleTalk networking protocols
    133  1.130.2.2  thorpej #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    134  1.130.2.2  thorpej #options 	PPP_DEFLATE	# Deflate compression support for PPP
    135  1.130.2.2  thorpej #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    136  1.130.2.2  thorpej #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    137  1.130.2.2  thorpej 
    138  1.130.2.2  thorpej # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    139  1.130.2.2  thorpej #options 	TCP_COMPAT_42
    140  1.130.2.2  thorpej 
    141  1.130.2.2  thorpej # These options enable verbose messages for several subsystems.
    142  1.130.2.2  thorpej # Warning, these may compile large string tables into the kernel!
    143  1.130.2.2  thorpej #options 	EISAVERBOSE	# verbose EISA device autoconfig messages
    144  1.130.2.2  thorpej #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    145  1.130.2.2  thorpej #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    146  1.130.2.2  thorpej #options 	SCSIVERBOSE	# human readable SCSI error messages
    147  1.130.2.2  thorpej 
    148  1.130.2.2  thorpej # Kernel root file system and dump configuration.
    149  1.130.2.2  thorpej config		netbsd	root on ? type ?
    150  1.130.2.2  thorpej #config		netbsd	root on sd0a type ffs
    151  1.130.2.2  thorpej #config		netbsd	root on ? type nfs
    152  1.130.2.2  thorpej 
    153  1.130.2.2  thorpej #
    154  1.130.2.2  thorpej # Device configuration
    155  1.130.2.2  thorpej #
    156  1.130.2.2  thorpej 
    157  1.130.2.2  thorpej mainbus0 at root
    158  1.130.2.2  thorpej 
    159  1.130.2.2  thorpej #apm0	at mainbus0			# Advanced power management
    160  1.130.2.2  thorpej 
    161  1.130.2.2  thorpej 
    162  1.130.2.2  thorpej # Basic Bus Support
    163  1.130.2.2  thorpej 
    164  1.130.2.2  thorpej # PCI bus support
    165  1.130.2.2  thorpej pci*	at mainbus? bus ?
    166  1.130.2.2  thorpej pci*	at pchb? bus ?
    167  1.130.2.2  thorpej pci*	at ppb? bus ?
    168  1.130.2.2  thorpej 
    169  1.130.2.2  thorpej # PCI bridges
    170  1.130.2.2  thorpej pchb*	at pci? dev ? function ?	# PCI-Host bridges
    171  1.130.2.2  thorpej pceb*	at pci? dev ? function ?	# PCI-EISA bridges
    172  1.130.2.2  thorpej pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    173  1.130.2.2  thorpej ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    174  1.130.2.2  thorpej # XXX 'puc's aren't really bridges, but there's no better place for them here
    175  1.130.2.2  thorpej puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    176  1.130.2.2  thorpej 
    177  1.130.2.2  thorpej # EISA bus support
    178  1.130.2.2  thorpej eisa*	at mainbus?
    179  1.130.2.2  thorpej eisa*	at pceb?
    180  1.130.2.2  thorpej 
    181  1.130.2.2  thorpej # ISA bus support
    182  1.130.2.2  thorpej isa*	at mainbus?
    183  1.130.2.2  thorpej isa*	at pceb?
    184  1.130.2.2  thorpej isa*	at pcib?
    185  1.130.2.2  thorpej 
    186  1.130.2.2  thorpej # PCMCIA bus support
    187  1.130.2.2  thorpej pcmcia*	at pcic? controller ? socket ?
    188  1.130.2.2  thorpej pcmcia*	at tcic? controller ? socket ?
    189  1.130.2.2  thorpej 
    190  1.130.2.2  thorpej # ISA PCMCIA controllers
    191  1.130.2.2  thorpej pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
    192  1.130.2.2  thorpej pcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
    193  1.130.2.2  thorpej tcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x4000
    194  1.130.2.2  thorpej 
    195  1.130.2.2  thorpej # PCI PCMCIA controllers
    196  1.130.2.2  thorpej pcic0	at pci? dev? function ?
    197  1.130.2.2  thorpej 
    198  1.130.2.2  thorpej # ISA Plug-and-Play bus support
    199  1.130.2.2  thorpej isapnp0	at isa?
    200  1.130.2.2  thorpej 
    201  1.130.2.2  thorpej # ISA Plug-and-Play PCMCIA controllers
    202  1.130.2.2  thorpej pcic*	at isapnp?
    203  1.130.2.2  thorpej 
    204  1.130.2.2  thorpej # Coprocessor Support
    205  1.130.2.2  thorpej 
    206  1.130.2.2  thorpej # Math Coprocessor support
    207  1.130.2.2  thorpej npx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
    208  1.130.2.2  thorpej 
    209  1.130.2.2  thorpej 
    210  1.130.2.2  thorpej # Console Devices
    211  1.130.2.2  thorpej 
    212  1.130.2.2  thorpej # ISA console.  You can only configure one of these!
    213  1.130.2.2  thorpej pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
    214  1.130.2.2  thorpej #vt0	at isa? port 0x60 irq 1		# PCVT console driver
    215  1.130.2.2  thorpej 
    216  1.130.2.2  thorpej # Keyboard layout configuration for pccons
    217  1.130.2.2  thorpej #options 	FRENCH_KBD
    218  1.130.2.2  thorpej #options 	FINNISH_KBD
    219  1.130.2.2  thorpej #options 	GERMAN_KBD
    220  1.130.2.2  thorpej #options 	NORWEGIAN_KBD
    221  1.130.2.2  thorpej 
    222  1.130.2.2  thorpej # wscons
    223  1.130.2.2  thorpej #pckbc0	at isa?			# pc keyboard controller
    224  1.130.2.2  thorpej #pckbd*	at pckbc?		# PC keyboard
    225  1.130.2.2  thorpej # "opms" should not be enabled together with "pms" or "pmsi"
    226  1.130.2.2  thorpej #pms*		at pckbc?		# PS/2 mouse for wsmouse
    227  1.130.2.2  thorpej #pmsi*		at pckbc?	# PS/2 "Intelli"mouse for wsmouse
    228  1.130.2.2  thorpej #opms*		at pckbc?		# backwards compatible PS/2 mouse
    229  1.130.2.2  thorpej #vga0		at isa?
    230  1.130.2.2  thorpej #vga*		at pci?
    231  1.130.2.2  thorpej #pcdisplay0	at isa?			# CGA, MDA, EGA, HGA
    232  1.130.2.2  thorpej #wsdisplay*	at vga? console ?
    233  1.130.2.2  thorpej #wsdisplay*	at pcdisplay? console ?
    234  1.130.2.2  thorpej #wskbd*	at pckbd? console ?
    235  1.130.2.2  thorpej #wsmouse*	at pms?
    236  1.130.2.2  thorpej #wsmouse*	at pmsi?
    237  1.130.2.2  thorpej 
    238  1.130.2.2  thorpej #pcppi0	at isa?
    239  1.130.2.2  thorpej #sysbeep0	at pcppi?
    240  1.130.2.2  thorpej 
    241  1.130.2.2  thorpej # Serial Devices
    242  1.130.2.2  thorpej 
    243  1.130.2.2  thorpej # PCI serial interfaces
    244  1.130.2.2  thorpej com*	at puc? port ?			# 16x450s on "universal" comm boards
    245  1.130.2.2  thorpej #cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    246  1.130.2.2  thorpej 
    247  1.130.2.2  thorpej # ISA Plug-and-Play serial interfaces
    248  1.130.2.2  thorpej com*	at isapnp?			# Modems and serial boards
    249  1.130.2.2  thorpej 
    250  1.130.2.2  thorpej # PCMCIA serial interfaces
    251  1.130.2.2  thorpej com*	at pcmcia? function ?		# Modems and serial cards
    252  1.130.2.2  thorpej 
    253  1.130.2.2  thorpej pcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
    254  1.130.2.2  thorpej com*	at pcmcom? slave ?		# ...and the slave devices
    255  1.130.2.2  thorpej 
    256  1.130.2.2  thorpej # ISA serial interfaces
    257  1.130.2.2  thorpej #options 	COM_HAYESP		# adds Hayes ESP serial board support
    258  1.130.2.2  thorpej com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
    259  1.130.2.2  thorpej com1	at isa? port 0x2f8 irq 3
    260  1.130.2.2  thorpej com2	at isa? port 0x3e8 irq 5
    261  1.130.2.2  thorpej #com3	at isa? port 0x2e8 irq 9
    262  1.130.2.2  thorpej #ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
    263  1.130.2.2  thorpej #com*	at ast? slave ?
    264  1.130.2.2  thorpej #boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
    265  1.130.2.2  thorpej #com*	at boca? slave ?
    266  1.130.2.2  thorpej #tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
    267  1.130.2.2  thorpej #com*	at tcom? slave ?
    268  1.130.2.2  thorpej #rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
    269  1.130.2.2  thorpej #com*	at rtfps? slave ?
    270  1.130.2.2  thorpej #cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
    271  1.130.2.2  thorpej 
    272  1.130.2.2  thorpej 
    273  1.130.2.2  thorpej # Parallel Printer Interfaces
    274  1.130.2.2  thorpej 
    275  1.130.2.2  thorpej # PCI parallel printer interfaces
    276  1.130.2.2  thorpej #lpt*	at puc? port ?			# || ports on "universal" comm boards
    277  1.130.2.2  thorpej 
    278  1.130.2.2  thorpej # ISA parallel printer interfaces
    279  1.130.2.2  thorpej #lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    280  1.130.2.2  thorpej #lpt1	at isa? port 0x278
    281  1.130.2.2  thorpej #lpt2	at isa? port 0x3bc
    282  1.130.2.2  thorpej 
    283  1.130.2.2  thorpej 
    284  1.130.2.2  thorpej # SCSI Controllers and Devices
    285  1.130.2.2  thorpej 
    286  1.130.2.2  thorpej # PCI SCSI controllers
    287  1.130.2.2  thorpej adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    288  1.130.2.2  thorpej adw*	at pci? dev ? function ?	# AdvanSys 9xxUW SCSI
    289  1.130.2.2  thorpej ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    290  1.130.2.2  thorpej bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    291  1.130.2.2  thorpej dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
    292  1.130.2.2  thorpej isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
    293  1.130.2.2  thorpej ncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
    294  1.130.2.2  thorpej pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
    295  1.130.2.2  thorpej 
    296  1.130.2.2  thorpej # EISA SCSI controllers
    297  1.130.2.2  thorpej ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
    298  1.130.2.2  thorpej ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
    299  1.130.2.2  thorpej bha*	at eisa? slot ?			# BusLogic 7xx SCSI
    300  1.130.2.2  thorpej uha*	at eisa? slot ?			# UltraStor 24f SCSI
    301  1.130.2.2  thorpej 
    302  1.130.2.2  thorpej # PCMCIA SCSI controllers
    303  1.130.2.2  thorpej aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    304  1.130.2.2  thorpej 
    305  1.130.2.2  thorpej # ISA Plug-and-Play SCSI controllers
    306  1.130.2.2  thorpej aha*	at isapnp? 			# Adaptec AHA-154[02
    307  1.130.2.2  thorpej aic*	at isapnp?			# Adaptec AHA-1520B
    308  1.130.2.2  thorpej 
    309  1.130.2.2  thorpej # ISA SCSI controllers
    310  1.130.2.2  thorpej adv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02]
    311  1.130.2.2  thorpej aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
    312  1.130.2.2  thorpej aha1	at isa? port 0x334 irq ? drq ?
    313  1.130.2.2  thorpej ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
    314  1.130.2.2  thorpej aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
    315  1.130.2.2  thorpej bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
    316  1.130.2.2  thorpej bha1	at isa? port 0x334 irq ? drq ?
    317  1.130.2.2  thorpej # The "nca" probe might give false hits or hang your machine.
    318  1.130.2.2  thorpej #nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 contoller
    319  1.130.2.2  thorpej #nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
    320  1.130.2.2  thorpej sea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
    321  1.130.2.2  thorpej uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
    322  1.130.2.2  thorpej uha1	at isa? port 0x340 irq ? drq ?
    323  1.130.2.2  thorpej wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
    324  1.130.2.2  thorpej wds1	at isa? port 0x358 irq 11 drq 5
    325  1.130.2.2  thorpej 
    326  1.130.2.2  thorpej # SCSI bus support
    327  1.130.2.2  thorpej scsibus* at adv?
    328  1.130.2.2  thorpej scsibus* at adw?
    329  1.130.2.2  thorpej scsibus* at aha?
    330  1.130.2.2  thorpej scsibus* at ahb?
    331  1.130.2.2  thorpej scsibus* at ahc?
    332  1.130.2.2  thorpej scsibus* at aic?
    333  1.130.2.2  thorpej scsibus* at bha?
    334  1.130.2.2  thorpej scsibus* at dpt?
    335  1.130.2.2  thorpej scsibus* at isp?
    336  1.130.2.2  thorpej #scsibus* at nca?
    337  1.130.2.2  thorpej scsibus* at ncr?
    338  1.130.2.2  thorpej scsibus* at pcscp?
    339  1.130.2.2  thorpej scsibus* at sea?
    340  1.130.2.2  thorpej scsibus* at uha?
    341  1.130.2.2  thorpej scsibus* at wds?
    342  1.130.2.2  thorpej 
    343  1.130.2.2  thorpej # SCSI devices
    344  1.130.2.2  thorpej sd*	at scsibus? target ? lun ?	# SCSI disk drives
    345  1.130.2.2  thorpej st*	at scsibus? target ? lun ?	# SCSI tape drives
    346  1.130.2.2  thorpej cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    347  1.130.2.2  thorpej #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    348  1.130.2.2  thorpej #ss*	at scsibus? target ? lun ?	# SCSI scanners
    349  1.130.2.2  thorpej #uk*	at scsibus? target ? lun ?	# SCSI unknown
    350  1.130.2.2  thorpej 
    351  1.130.2.2  thorpej 
    352  1.130.2.2  thorpej # IDE and related devices
    353  1.130.2.2  thorpej # PCI IDE controllers - see pciide(4) for supported hardware.
    354  1.130.2.2  thorpej # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    355  1.130.2.2  thorpej # how to set up DMA modes for this chip. This may work, or may cause
    356  1.130.2.2  thorpej # a machine hang with some controllers.
    357  1.130.2.2  thorpej pciide* at pci ? dev ? function ? flags 0x0000
    358  1.130.2.2  thorpej 
    359  1.130.2.2  thorpej # ISA Plug-and-Play IDE controllers
    360  1.130.2.2  thorpej wdc*	at isapnp?
    361  1.130.2.2  thorpej 
    362  1.130.2.2  thorpej # PCMCIA IDE controllers
    363  1.130.2.2  thorpej wdc*    at pcmcia? function ?   
    364  1.130.2.2  thorpej 
    365  1.130.2.2  thorpej # ISA ST506, ESDI, and IDE controllers
    366  1.130.2.2  thorpej # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
    367  1.130.2.2  thorpej # fall back to 16bits I/O if 32bits I/O are not functionnal).
    368  1.130.2.2  thorpej # Some controllers pass the initial 32bit test, but will fail later.
    369  1.130.2.2  thorpej wdc0	at isa? port 0x1f0 irq 14 flags 0x00
    370  1.130.2.2  thorpej wdc1	at isa? port 0x170 irq 15 flags 0x00
    371  1.130.2.2  thorpej 
    372  1.130.2.2  thorpej # IDE drives
    373  1.130.2.2  thorpej # Flags are used only with controllers that support DMA operations
    374  1.130.2.2  thorpej # and mode settings (e.g. some pciide controllers)
    375  1.130.2.2  thorpej # The lowest order four bits (rightmost digit) of the flags define the PIO
    376  1.130.2.2  thorpej # mode to use, the next set of four bits the DMA mode and the third set the
    377  1.130.2.2  thorpej # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    378  1.130.2.2  thorpej # to use, and the last bit must be 1 for this setting to be used.
    379  1.130.2.2  thorpej # For DMA and UDMA, 0xf (1111) means 'disable'.
    380  1.130.2.2  thorpej # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    381  1.130.2.2  thorpej # (0xc=1100, 0xa=1010, 0xf=1111)
    382  1.130.2.2  thorpej # 0x0000 means "use whatever the drive claims to support".
    383  1.130.2.2  thorpej wd*	at wdc? channel ? drive ? flags 0x0000
    384  1.130.2.2  thorpej wd*	at pciide? channel ? drive ? flags 0x0000
    385  1.130.2.2  thorpej 
    386  1.130.2.2  thorpej # ATAPI bus support
    387  1.130.2.2  thorpej atapibus* at wdc? channel ?
    388  1.130.2.2  thorpej atapibus* at pciide? channel ?
    389  1.130.2.2  thorpej 
    390  1.130.2.2  thorpej # ATAPI devices
    391  1.130.2.2  thorpej # flags have the same meaning as for IDE drives.
    392  1.130.2.2  thorpej cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    393  1.130.2.2  thorpej sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    394  1.130.2.2  thorpej #uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    395  1.130.2.2  thorpej 
    396  1.130.2.2  thorpej 
    397  1.130.2.2  thorpej # Miscellaneous mass storage devices
    398  1.130.2.2  thorpej 
    399  1.130.2.2  thorpej # ISA floppy
    400  1.130.2.2  thorpej fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    401  1.130.2.2  thorpej #fdc1	at isa? port 0x370 irq ? drq ?
    402  1.130.2.2  thorpej fd*	at fdc? drive ?			# the drives themselves
    403  1.130.2.2  thorpej # some machines need you to do this instead of fd*
    404  1.130.2.2  thorpej #fd0	at fdc0 drive 0
    405  1.130.2.2  thorpej 
    406  1.130.2.2  thorpej # ISA CD-ROM devices
    407  1.130.2.2  thorpej #mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
    408  1.130.2.2  thorpej 
    409  1.130.2.2  thorpej # ISA tape devices
    410  1.130.2.2  thorpej # note: the wt driver conflicts unpleasantly with ed devices at the
    411  1.130.2.2  thorpej # same I/O address. The probe reprograms their EEPROMs. Don't
    412  1.130.2.2  thorpej # uncomment it unless you are actually using it.
    413  1.130.2.2  thorpej #wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
    414  1.130.2.2  thorpej 
    415  1.130.2.2  thorpej 
    416  1.130.2.2  thorpej # Network Interfaces
    417  1.130.2.2  thorpej 
    418  1.130.2.2  thorpej # PCI network interfaces
    419  1.130.2.2  thorpej de*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
    420  1.130.2.2  thorpej en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    421  1.130.2.2  thorpej ep*	at pci? dev ? function ?	# 3Com 3c59x
    422  1.130.2.2  thorpej ex*	at pci? dev ? function ?	# 3Com 90x[B]
    423  1.130.2.2  thorpej epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    424  1.130.2.2  thorpej esh*	at pci? dev ? function ?	# Essential HIPPI card
    425  1.130.2.2  thorpej fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    426  1.130.2.2  thorpej fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    427  1.130.2.2  thorpej le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    428  1.130.2.2  thorpej ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    429  1.130.2.2  thorpej sip*	at pci? dev ? function ?	# SiS 900 Ethernet
    430  1.130.2.2  thorpej tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    431  1.130.2.2  thorpej tlp*	at pci? dev ? function ?	# DECchip 21x4x (and clones) Ethernet
    432  1.130.2.2  thorpej #options 	TLP_MATCH_21040
    433  1.130.2.2  thorpej #options 	TLP_MATCH_21041
    434  1.130.2.2  thorpej #options 	TLP_MATCH_21140
    435  1.130.2.2  thorpej #options 	TLP_MATCH_21142
    436  1.130.2.2  thorpej vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    437  1.130.2.2  thorpej lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    438  1.130.2.2  thorpej rl*	at pci? dev ? function ?	# Realtek 8129/8139
    439  1.130.2.2  thorpej 
    440  1.130.2.2  thorpej # EISA network interfaces
    441  1.130.2.2  thorpej ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
    442  1.130.2.2  thorpej fea*	at eisa? slot ?			# DEC DEFEA FDDI
    443  1.130.2.2  thorpej tlp*	at eisa? slot ?			# DEC DE-425 Ethernet
    444  1.130.2.2  thorpej 
    445  1.130.2.2  thorpej # ISA Plug-and-Play network interfaces
    446  1.130.2.2  thorpej ep*	at isapnp?			# 3Com 3c509 Ethernet
    447  1.130.2.2  thorpej ne*	at isapnp?			# NE2000-compatible Ethernet
    448  1.130.2.2  thorpej tr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
    449  1.130.2.2  thorpej 
    450  1.130.2.2  thorpej # PCMCIA network interfaces
    451  1.130.2.2  thorpej ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    452  1.130.2.2  thorpej mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    453  1.130.2.2  thorpej ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    454  1.130.2.2  thorpej sm*	at pcmcia? function ?		# Megahertz Ethernet
    455  1.130.2.2  thorpej wi*	at pcmcia? function ?		# Lucent WaveLan IEEE (802.11)
    456  1.130.2.2  thorpej 
    457  1.130.2.2  thorpej mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
    458  1.130.2.2  thorpej com*	at mhzc?
    459  1.130.2.2  thorpej sm*	at mhzc?
    460  1.130.2.2  thorpej 
    461  1.130.2.2  thorpej # ISA network interfaces
    462  1.130.2.2  thorpej ate0	at isa? port 0x2a0 irq ?		# AT1700
    463  1.130.2.2  thorpej cs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
    464  1.130.2.2  thorpej ec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
    465  1.130.2.2  thorpej eg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
    466  1.130.2.2  thorpej el0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
    467  1.130.2.2  thorpej ep0	at isa? port ? irq ?			# 3C509 ethernet cards
    468  1.130.2.2  thorpej ef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
    469  1.130.2.2  thorpej ai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
    470  1.130.2.2  thorpej fmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
    471  1.130.2.2  thorpej ix0	at isa? port 0x300 irq 10		# EtherExpress/16
    472  1.130.2.2  thorpej iy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
    473  1.130.2.2  thorpej lc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
    474  1.130.2.2  thorpej depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
    475  1.130.2.2  thorpej le*	at depca?
    476  1.130.2.2  thorpej nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
    477  1.130.2.2  thorpej le*	at nele?
    478  1.130.2.2  thorpej bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
    479  1.130.2.2  thorpej le*	at bicc?
    480  1.130.2.2  thorpej ne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
    481  1.130.2.2  thorpej ne1	at isa? port 0x300 irq 10
    482  1.130.2.2  thorpej sm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
    483  1.130.2.2  thorpej tr0	at isa? port 0xa20 iomem 0xd8000 irq ?  # IBM TROPIC based Token-Ring
    484  1.130.2.2  thorpej tr1	at isa? port 0xa24 iomem 0xd0000 irq ?  # IBM TROPIC based Token-Ring
    485  1.130.2.2  thorpej tr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
    486  1.130.2.2  thorpej we0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
    487  1.130.2.2  thorpej we1	at isa? port 0x300 iomem 0xcc000 irq 10
    488  1.130.2.2  thorpej 
    489  1.130.2.2  thorpej # MII/PHY support
    490  1.130.2.2  thorpej exphy*	at mii? phy ?			# 3Com internal PHYs
    491  1.130.2.2  thorpej icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
    492  1.130.2.2  thorpej inphy*	at mii? phy ?			# Intel 82555 PHYs
    493  1.130.2.2  thorpej iophy*	at mii? phy ?			# Intel 82553 PHYs
    494  1.130.2.2  thorpej lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
    495  1.130.2.2  thorpej nsphy*	at mii? phy ?			# NS83840 PHYs
    496  1.130.2.2  thorpej qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    497  1.130.2.2  thorpej sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    498  1.130.2.2  thorpej tlphy*	at mii? phy ?			# ThunderLAN PHYs
    499  1.130.2.2  thorpej tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    500  1.130.2.2  thorpej ukphy*	at mii? phy ?			# generic unknown PHYs
    501  1.130.2.2  thorpej 
    502  1.130.2.2  thorpej # USB Controller and Devices
    503  1.130.2.2  thorpej 
    504  1.130.2.2  thorpej # PCI USB controllers
    505  1.130.2.2  thorpej #uhci*	at pci?				# Universal Host Controller (Intel)
    506  1.130.2.2  thorpej #ohci*	at pci?				# Open Host Controller
    507  1.130.2.2  thorpej 
    508  1.130.2.2  thorpej # USB bus support
    509  1.130.2.2  thorpej #usb*	at uhci?
    510  1.130.2.2  thorpej #usb*	at ohci?
    511  1.130.2.2  thorpej 
    512  1.130.2.2  thorpej # USB Hubs
    513  1.130.2.2  thorpej #uhub*	at usb?
    514  1.130.2.2  thorpej #uhub*	at uhub? port ? configuration ? interface ?
    515  1.130.2.2  thorpej 
    516  1.130.2.2  thorpej # USB Mice
    517  1.130.2.2  thorpej #ums*	at uhub? port ? configuration ? interface ?
    518  1.130.2.2  thorpej #wsmouse*	at ums?
    519  1.130.2.2  thorpej 
    520  1.130.2.2  thorpej # USB Keyboards
    521  1.130.2.2  thorpej #ukbd*	at uhub? port ? configuration ? interface ?
    522  1.130.2.2  thorpej #wskbd*	at ukbd? console ?
    523  1.130.2.2  thorpej 
    524  1.130.2.2  thorpej # USB Generic HID devices
    525  1.130.2.2  thorpej #uhid*	at uhub? port ? configuration ? interface ?
    526  1.130.2.2  thorpej 
    527  1.130.2.2  thorpej # USB Printer
    528  1.130.2.2  thorpej #ulpt*	at uhub? port ? configuration ? interface ?
    529  1.130.2.2  thorpej 
    530  1.130.2.2  thorpej # USB Mass Storage
    531  1.130.2.2  thorpej #umass*	at uhub? port ? configuration ? interface ?
    532  1.130.2.2  thorpej #scsibus* at umass? channel ?
    533  1.130.2.2  thorpej 
    534  1.130.2.2  thorpej # USB Generic driver
    535  1.130.2.2  thorpej #ugen*	at uhub? port ? configuration ? interface ?
    536  1.130.2.2  thorpej 
    537  1.130.2.2  thorpej # Audio Devices
    538  1.130.2.2  thorpej 
    539  1.130.2.2  thorpej # PCI audio devices
    540  1.130.2.2  thorpej #eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
    541  1.130.2.2  thorpej #eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
    542  1.130.2.2  thorpej #sv*	at pci? dev ? function ?	# S3 SonicVibes
    543  1.130.2.2  thorpej 
    544  1.130.2.2  thorpej # ISA Plug-and-Play audio devices
    545  1.130.2.2  thorpej #guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
    546  1.130.2.2  thorpej #sb*	at isapnp?			# SoundBlaster-compatible audio
    547  1.130.2.2  thorpej 
    548  1.130.2.2  thorpej # ISA audio devices
    549  1.130.2.2  thorpej # the "aria" probe might give false hits
    550  1.130.2.2  thorpej #aria0	at isa? port 0x290 irq 10 		# Aria
    551  1.130.2.2  thorpej #gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
    552  1.130.2.2  thorpej #pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
    553  1.130.2.2  thorpej #pss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
    554  1.130.2.2  thorpej #sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
    555  1.130.2.2  thorpej #sb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
    556  1.130.2.2  thorpej #wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
    557  1.130.2.2  thorpej 
    558  1.130.2.2  thorpej # OPL[23] FM syntheziers
    559  1.130.2.2  thorpej #opl0	at isa? port 0x388	# use only if not attached to sound card
    560  1.130.2.2  thorpej #opl*	at eso?
    561  1.130.2.2  thorpej #opl*	at ess?
    562  1.130.2.2  thorpej #opl*	at sb?
    563  1.130.2.2  thorpej #opl*	at sv?
    564  1.130.2.2  thorpej  
    565  1.130.2.2  thorpej # Audio support
    566  1.130.2.2  thorpej #audio*	at aria?
    567  1.130.2.2  thorpej #audio*	at eap?
    568  1.130.2.2  thorpej #audio*	at eso?
    569  1.130.2.2  thorpej #audio*	at gus?
    570  1.130.2.2  thorpej #audio*	at guspnp?
    571  1.130.2.2  thorpej #audio*	at pas?
    572  1.130.2.2  thorpej #audio*	at sb?
    573  1.130.2.2  thorpej #audio*	at sp?
    574  1.130.2.2  thorpej #audio*	at sv?
    575  1.130.2.2  thorpej #audio*	at wss?
    576  1.130.2.2  thorpej 
    577  1.130.2.2  thorpej # MIDI support
    578  1.130.2.2  thorpej #midi*	at pcppi?		# MIDI interface to the PC speaker
    579  1.130.2.2  thorpej #midi*	at sb?			# SB MPU401 port
    580  1.130.2.2  thorpej #midi*	at opl?			# OPL FM synth
    581  1.130.2.2  thorpej 
    582  1.130.2.2  thorpej # The spkr driver provides a simple tone interface to the built in speaker.
    583  1.130.2.2  thorpej #spkr0	at pcppi?		# PC speaker
    584  1.130.2.2  thorpej 
    585  1.130.2.2  thorpej 
    586  1.130.2.2  thorpej # Mice
    587  1.130.2.2  thorpej 
    588  1.130.2.2  thorpej # ISA busmice
    589  1.130.2.2  thorpej #lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
    590  1.130.2.2  thorpej #lms1	at isa? port 0x238 irq 5
    591  1.130.2.2  thorpej #mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
    592  1.130.2.2  thorpej #mms1	at isa? port 0x238 irq 5
    593  1.130.2.2  thorpej #wsmouse*	at lms?
    594  1.130.2.2  thorpej #wsmouse*	at mms?
    595  1.130.2.2  thorpej # backwards compatible versions
    596  1.130.2.2  thorpej #olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
    597  1.130.2.2  thorpej #olms1	at isa? port 0x238 irq 5
    598  1.130.2.2  thorpej #omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
    599  1.130.2.2  thorpej #omms1	at isa? port 0x238 irq 5
    600  1.130.2.2  thorpej #opms0	at pc? irq 12		# PS/2 auxiliary port mouse
    601  1.130.2.2  thorpej #opms0	at vt? irq 12		# PS/2 auxiliary port mouse
    602  1.130.2.2  thorpej 
    603  1.130.2.2  thorpej # Joysticks
    604  1.130.2.2  thorpej 
    605  1.130.2.2  thorpej # ISA Plug-and-Play joysticks
    606  1.130.2.2  thorpej #joy*	at isapnp?			# Game ports (usually on audio cards)
    607  1.130.2.2  thorpej 
    608  1.130.2.2  thorpej # ISA joysticks. Probe is a little strange; add only if you have one.
    609  1.130.2.2  thorpej #joy0	at isa? port 0x201
    610  1.130.2.2  thorpej 
    611  1.130.2.2  thorpej 
    612  1.130.2.2  thorpej # Miscellaneous Devices
    613  1.130.2.2  thorpej 
    614  1.130.2.2  thorpej # Planetconnect Satellite receiver driver.
    615  1.130.2.2  thorpej #satlink0 at isa? port 0x300 drq 1
    616  1.130.2.2  thorpej 
    617  1.130.2.2  thorpej 
    618  1.130.2.2  thorpej # Pull in optional local configuration
    619  1.130.2.2  thorpej include	"arch/i386/conf/GENERIC.local"
    620  1.130.2.2  thorpej 
    621  1.130.2.2  thorpej 
    622  1.130.2.2  thorpej # Pseudo-Devices
    623  1.130.2.2  thorpej 
    624  1.130.2.2  thorpej # disk/mass storage pseudo-devices
    625  1.130.2.2  thorpej #pseudo-device	ccd		4	# concatenated/striped disk devices
    626  1.130.2.2  thorpej #pseudo-device	raid		4	# RAIDframe disk driver
    627  1.130.2.2  thorpej pseudo-device	md		1	# memory disk device (ramdisk)
    628  1.130.2.2  thorpej #pseudo-device	vnd		4	# disk-like interface to files
    629  1.130.2.2  thorpej 
    630  1.130.2.2  thorpej # network pseudo-devices
    631  1.130.2.2  thorpej #pseudo-device	bpfilter	8	# Berkeley packet filter
    632  1.130.2.2  thorpej #pseudo-device	ipfilter		# IP filter (firewall) and NAT
    633  1.130.2.2  thorpej pseudo-device	loop			# network loopback
    634  1.130.2.2  thorpej pseudo-device	ppp		2	# Point-to-Point Protocol
    635  1.130.2.2  thorpej pseudo-device	sl		2	# Serial Line IP
    636  1.130.2.2  thorpej #pseudo-device	strip		2	# Starmode Radio IP (Metricom)
    637  1.130.2.2  thorpej #pseudo-device	tun		2	# network tunneling over tty
    638  1.130.2.2  thorpej #pseudo-device	gre		2	# generic L3 over IP tunnel
    639  1.130.2.2  thorpej #pseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
    640  1.130.2.2  thorpej 
    641  1.130.2.2  thorpej # miscellaneous pseudo-devices
    642  1.130.2.2  thorpej pseudo-device	pty		64	# pseudo-terminals
    643  1.130.2.2  thorpej #pseudo-device	tb		1	# tablet line discipline
    644  1.130.2.2  thorpej #pseudo-device	sequencer	1	# MIDI sequencer
    645  1.130.2.2  thorpej # rnd works; RND_COM does not on port i386 yet.
    646  1.130.2.2  thorpej #pseudo-device	rnd			# /dev/random and in-kernel generator
    647  1.130.2.2  thorpej #options 	RND_COM			# use "com" randomness as well (BROKEN)
    648  1.130.2.2  thorpej 
    649  1.130.2.2  thorpej # a pseudo device needed for Coda	# also needs CODA (above)
    650  1.130.2.2  thorpej #pseudo-device	vcoda		4	# coda minicache <-> venus comm.
    651