Home | History | Annotate | Line # | Download | only in conf
INSTALL_TINY revision 1.7.4.2
      1  1.7.4.2   thorpej #	$NetBSD: INSTALL_TINY,v 1.7.4.2 1999/08/02 19:50:31 thorpej Exp $
      2      1.1     perry #
      3      1.1     perry #	INSTALL_TINY - Tiny Installation kernel, suitable for 4M machines.
      4      1.1     perry #
      5      1.1     perry #	This kernel should be derived from INSTALL (which is derived
      6      1.1     perry #	from GENERIC) with some features commented out.
      7      1.1     perry #
      8      1.1     perry #	This kernel does NOT support X, mice, audio devices, non-NetBSD
      9      1.1     perry #	emulation; additionally, unlike INSTALL, it does not support
     10      1.1     perry #	PCMCIA or PCI so that it may fit on a 1.2M boot floppy; it is
     11      1.1     perry #	assumed that no machines with 1.2M floppy drives have PCMCIA
     12      1.1     perry #	or PCI.  Furthermore, this kernel does NOT support SCSI,
     13      1.1     perry #	and has a bare minimum of file system buffers.
     14      1.1     perry #
     15      1.1     perry 
     16      1.1     perry include "arch/i386/conf/std.i386"
     17      1.1     perry 
     18      1.1     perry # Enable the hooks used for initializing the root memory-disk.
     19      1.1     perry options 	MEMORY_DISK_HOOKS
     20      1.1     perry options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
     21      1.1     perry options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     22      1.1     perry options 	MINIROOTSIZE=2940	# size of memory disk, in blocks
     23      1.1     perry #options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
     24      1.5  sommerfe 
     25      1.5  sommerfe makeoptions	COPTS="-Os"		# generates smaller code than -O2, -O1
     26      1.1     perry 
     27      1.1     perry maxusers	2		# estimated number of users
     28      1.1     perry 
     29      1.1     perry # CPU support.  At least one is REQUIRED.
     30      1.1     perry options 	I386_CPU
     31      1.1     perry options 	I486_CPU
     32      1.1     perry #options 	I586_CPU
     33      1.1     perry #options 	I686_CPU
     34      1.1     perry 
     35      1.1     perry # CPU-related options.
     36      1.1     perry options 	MATH_EMULATE	# floating point emulation
     37      1.1     perry #options 	VM86		# virtual 8086 emulation
     38      1.1     perry #options 	USER_LDT	# user-settable LDT; used by WINE
     39      1.1     perry # eliminate delay no-ops in I/O; recommended on all but very old machines
     40      1.1     perry #options 	DUMMY_NOPS
     41      1.1     perry 
     42      1.1     perry # Misc. i386-specific options
     43      1.1     perry #options 	XSERVER		# X server support in console drivers
     44      1.1     perry 
     45      1.1     perry # This option allows you to force a serial console at the specified
     46      1.1     perry # I/O address.
     47      1.1     perry #options 	"CONSDEVNAME=\"com\"",CONADDR=0x3f8,CONSPEED=9600
     48      1.1     perry 
     49      1.1     perry # The following options override the memory sizes passed in from the boot
     50      1.1     perry # block.  Use them *only* if the boot block is unable to determine the correct
     51      1.1     perry # values.  Note that the BIOS may *correctly* report less than 640k of base
     52      1.1     perry # memory if the extended BIOS data area is located at the top of base memory
     53      1.1     perry # (as is the case on most recent systems).
     54      1.1     perry #options 	REALBASEMEM=...	# size of base memory
     55      1.1     perry #options 	REALEXTMEM=...	# size of extended memory
     56      1.1     perry 
     57      1.1     perry #options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
     58      1.1     perry options 	INSECURE	# disable kernel security levels
     59      1.1     perry 
     60      1.1     perry options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     61      1.1     perry #options 	NTP		# NTP phase/frequency locked loop
     62      1.1     perry 
     63      1.1     perry #options 	KTRACE		# system call tracing via ktrace(1)
     64      1.1     perry 
     65      1.1     perry #options 	SYSVSEM		# System V-like semaphores
     66      1.1     perry #options 	SYSVSHM		# System V-like memory sharing
     67      1.1     perry #options 	SHMMAXPGS=1024	# 1024 pages is the default
     68      1.1     perry 
     69      1.1     perry #options 	LKM		# loadable kernel modules
     70      1.1     perry 
     71      1.1     perry # Diagnostic/debugging support options
     72      1.1     perry #options 	DIAGNOSTIC	# cheap kernel consistency checks
     73      1.1     perry #options 	DEBUG		# expensive debugging checks/support
     74      1.1     perry #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     75      1.1     perry #options 	DDB		# in-kernel debugger
     76      1.1     perry #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     77      1.1     perry #options 	KGDB		# remote debugger
     78      1.1     perry #options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
     79      1.1     perry #makeoptions	DEBUG="-g"	# compile full symbol table
     80      1.1     perry 
     81      1.1     perry # Compatibility options
     82      1.1     perry #options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
     83      1.1     perry #options 	COMPAT_09	# NetBSD 0.9,
     84      1.1     perry options 	COMPAT_10	# NetBSD 1.0,
     85      1.1     perry options 	COMPAT_11	# NetBSD 1.1,
     86      1.1     perry options 	COMPAT_12	# NetBSD 1.2,
     87      1.1     perry options 	COMPAT_13	# NetBSD 1.3,
     88  1.7.4.2   thorpej options 	COMPAT_14	# NetBSD 1.4,
     89      1.1     perry #options 	COMPAT_43	# and 4.3BSD
     90      1.1     perry options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     91      1.1     perry 
     92      1.1     perry #options 	COMPAT_SVR4	# binary compatibility with SVR4
     93      1.1     perry #options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
     94      1.1     perry #options 	COMPAT_LINUX	# binary compatibility with Linux
     95      1.1     perry #options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
     96      1.1     perry 
     97      1.1     perry # File systems
     98      1.1     perry file-system 	FFS		# UFS
     99      1.1     perry #file-system 	EXT2FS		# second extended file system (linux)
    100      1.1     perry #file-system 	LFS		# log-structured file system
    101      1.1     perry file-system 	MFS		# memory file system
    102      1.1     perry file-system 	NFS		# Network File System client
    103      1.1     perry file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    104      1.1     perry file-system 	MSDOSFS		# MS-DOS file system
    105      1.1     perry #file-system 	FDESC		# /dev/fd
    106      1.1     perry file-system 	KERNFS		# /kern
    107      1.1     perry #file-system 	NULLFS		# loopback file system
    108      1.1     perry #file-system 	PORTAL		# portal filesystem (still experimental)
    109      1.1     perry #file-system 	PROCFS		# /proc
    110      1.1     perry #file-system 	UMAPFS		# NULLFS + uid and gid remapping
    111      1.1     perry #file-system 	UNION		# union file system
    112      1.1     perry 
    113      1.1     perry # File system options
    114      1.1     perry #options 	QUOTA		# UFS quotas
    115      1.1     perry #options 	NFSSERVER	# Network File System server
    116      1.1     perry #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    117      1.1     perry 				# immutable) behave as system flags.
    118      1.1     perry 
    119      1.1     perry # Networking options
    120      1.1     perry #options 	GATEWAY		# packet forwarding
    121      1.1     perry options 	INET		# IP + ICMP + TCP + UDP
    122      1.1     perry #options 	MROUTING	# IP multicast routing
    123      1.1     perry #options 	NS		# XNS
    124      1.1     perry #options 	NSIP		# XNS tunneling over IP
    125      1.1     perry #options 	ISO,TPIP	# OSI
    126      1.1     perry #options 	EON		# OSI tunneling over IP
    127      1.1     perry #options 	CCITT,LLC,HDLC	# X.25
    128      1.1     perry #options 	NETATALK	# AppleTalk networking protocols
    129      1.1     perry #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    130      1.1     perry #options 	PPP_DEFLATE	# Deflate compression support for PPP
    131      1.1     perry #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    132      1.1     perry #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    133      1.1     perry 
    134      1.1     perry # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    135      1.1     perry #options 	TCP_COMPAT_42
    136      1.1     perry 
    137      1.1     perry # These options enable verbose messages for several subsystems.
    138      1.1     perry # Warning, these may compile large string tables into the kernel!
    139      1.1     perry #options 	EISAVERBOSE	# verbose EISA device autoconfig messages
    140      1.1     perry #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    141      1.1     perry #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    142      1.1     perry #options 	SCSIVERBOSE	# human readable SCSI error messages
    143      1.1     perry 
    144      1.1     perry # Squeeze...
    145      1.1     perry options 	NVNODE=50
    146      1.1     perry options		NBUF=20
    147      1.1     perry options		BUFPAGES=20
    148      1.1     perry 
    149      1.1     perry # Kernel root file system and dump configuration.
    150      1.1     perry config		netbsd	root on ? type ?
    151      1.1     perry #config		netbsd	root on sd0a type ffs
    152      1.1     perry #config		netbsd	root on ? type nfs
    153      1.1     perry 
    154      1.1     perry #
    155      1.1     perry # Device configuration
    156      1.1     perry #
    157      1.1     perry 
    158      1.1     perry mainbus0 at root
    159      1.1     perry 
    160      1.1     perry #apm0	at mainbus0			# Advanced power management
    161      1.1     perry 
    162      1.1     perry 
    163      1.1     perry # Basic Bus Support
    164      1.1     perry 
    165      1.1     perry # PCI bus support
    166      1.1     perry #pci*	at mainbus? bus ?
    167      1.1     perry #pci*	at pchb? bus ?
    168      1.1     perry #pci*	at ppb? bus ?
    169      1.1     perry 
    170      1.1     perry # PCI bridges
    171      1.1     perry #pchb*	at pci? dev ? function ?	# PCI-Host bridges
    172      1.1     perry #pceb*	at pci? dev ? function ?	# PCI-EISA bridges
    173      1.1     perry #pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    174      1.1     perry #ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    175      1.1     perry # XXX 'puc's aren't really bridges, but there's no better place for them here
    176      1.1     perry #puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    177      1.1     perry 
    178      1.1     perry # EISA bus support
    179      1.1     perry #eisa*	at mainbus?
    180      1.1     perry #eisa*	at pceb?
    181      1.1     perry 
    182      1.1     perry # ISA bus support
    183      1.1     perry isa*	at mainbus?
    184      1.1     perry #eisa*	at pceb?
    185      1.1     perry #isa*	at pcib?
    186      1.1     perry 
    187      1.1     perry # PCMCIA bus support
    188      1.1     perry #pcmcia*	at pcic? controller ? socket ?
    189      1.1     perry 
    190      1.1     perry # ISA PCMCIA controllers
    191      1.1     perry #pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
    192      1.1     perry #pcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
    193      1.1     perry 
    194      1.1     perry # ISA Plug-and-Play bus support
    195      1.1     perry #isapnp0	at isa?
    196      1.1     perry 
    197      1.1     perry 
    198      1.1     perry # Coprocessor Support
    199      1.1     perry 
    200      1.1     perry # Math Coprocessor support
    201      1.1     perry npx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
    202      1.1     perry 
    203      1.1     perry 
    204      1.1     perry # Console Devices
    205      1.1     perry 
    206      1.1     perry # ISA console.  You can only configure one of these!
    207      1.1     perry pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
    208      1.1     perry #vt0	at isa? port 0x60 irq 1		# PCVT console driver
    209      1.1     perry 
    210      1.1     perry #pcppi0	at isa?
    211      1.1     perry #sysbeep0	at pcppi?
    212      1.1     perry 
    213      1.1     perry 
    214      1.1     perry # Serial Devices
    215      1.1     perry 
    216      1.1     perry # PCI serial interfaces
    217      1.1     perry #com*	at puc? port ?			# 16x450s on "universal" comm boards
    218      1.1     perry #cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    219      1.1     perry 
    220      1.1     perry # ISA Plug-and-Play serial interfaces
    221      1.1     perry #com*	at isapnp?			# Modems and serial boards
    222      1.1     perry 
    223      1.1     perry # PCMCIA serial interfaces
    224      1.1     perry #com*	at pcmcia? function ?		# Modems and serial cards
    225      1.1     perry 
    226      1.1     perry # ISA serial interfaces
    227      1.1     perry #options 	COM_HAYESP		# adds Hayes ESP serial board support
    228      1.1     perry com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
    229      1.1     perry com1	at isa? port 0x2f8 irq 3
    230      1.1     perry com2	at isa? port 0x3e8 irq 5
    231      1.1     perry #com3	at isa? port 0x2e8 irq 9
    232      1.1     perry #ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
    233      1.1     perry #com*	at ast? slave ?
    234      1.1     perry #boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
    235      1.1     perry #com*	at boca? slave ?
    236      1.1     perry #rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
    237      1.1     perry #com*	at rtfps? slave ?
    238      1.1     perry #cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
    239      1.1     perry 
    240      1.1     perry 
    241      1.1     perry # Parallel Printer Interfaces
    242      1.1     perry 
    243      1.1     perry # PCI parallel printer interfaces
    244      1.1     perry #lpt*	at puc? port ?			# || ports on "universal" comm boards
    245      1.1     perry 
    246      1.1     perry # ISA parallel printer interfaces
    247      1.1     perry #lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    248      1.1     perry #lpt1	at isa? port 0x278
    249      1.1     perry #lpt2	at isa? port 0x3bc
    250      1.1     perry 
    251      1.1     perry 
    252      1.1     perry # SCSI Controllers and Devices
    253      1.1     perry 
    254      1.1     perry # PCI SCSI controllers
    255      1.1     perry #ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    256      1.1     perry #bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    257      1.1     perry #isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
    258      1.1     perry #ncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
    259      1.1     perry 
    260      1.1     perry # EISA SCSI controllers
    261      1.1     perry #ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
    262      1.1     perry #ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
    263      1.1     perry #bha*	at eisa? slot ?			# BusLogic 7xx SCSI
    264      1.1     perry #uha*	at eisa? slot ?			# UltraStor 24f SCSI
    265      1.1     perry 
    266      1.1     perry # PCMCIA SCSI controllers
    267      1.1     perry #aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    268      1.1     perry 
    269      1.1     perry # ISA Plug-and-Play SCSI controllers
    270      1.1     perry #aic*	at isapnp?			# Adaptec AHA-1520B
    271      1.1     perry 
    272      1.1     perry # ISA SCSI controllers
    273      1.1     perry #aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
    274      1.1     perry #aha1	at isa? port 0x334 irq ? drq ?
    275      1.1     perry #ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
    276      1.1     perry #aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
    277      1.1     perry #bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
    278      1.1     perry #bha1	at isa? port 0x334 irq ? drq ?
    279      1.1     perry #sea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
    280      1.1     perry #uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
    281      1.1     perry #uha1	at isa? port 0x340 irq ? drq ?
    282      1.1     perry #wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
    283      1.1     perry #wds1	at isa? port 0x358 irq 11 drq 5
    284      1.1     perry 
    285      1.1     perry # SCSI bus support
    286      1.1     perry #scsibus* at aha?
    287      1.1     perry #scsibus* at ahb?
    288      1.1     perry #scsibus* at ahc?
    289      1.1     perry #scsibus* at aic?
    290      1.1     perry #scsibus* at bha?
    291      1.1     perry #scsibus* at isp?
    292      1.1     perry #scsibus* at ncr?
    293      1.1     perry #scsibus* at sea?
    294      1.1     perry #scsibus* at uha?
    295      1.1     perry #scsibus* at wds?
    296      1.1     perry 
    297      1.1     perry # SCSI devices
    298      1.1     perry #sd*	at scsibus? target ? lun ?	# SCSI disk drives
    299      1.1     perry #st*	at scsibus? target ? lun ?	# SCSI tape drives
    300      1.1     perry #cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    301      1.1     perry #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    302      1.1     perry #ss*	at scsibus? target ? lun ?	# SCSI scanners
    303      1.1     perry #uk*	at scsibus? target ? lun ?	# SCSI unknown
    304      1.1     perry 
    305      1.1     perry 
    306      1.3       abs # IDE and related devices
    307      1.1     perry 
    308  1.7.4.1   thorpej # ST506, ESDI, and ISA IDE controllers
    309  1.7.4.1   thorpej # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
    310  1.7.4.1   thorpej # fall back to 16bits I/O if 32bits I/O are not functionnal).
    311  1.7.4.1   thorpej # Some controllers pass the initial 32bit test, but will fail later.
    312  1.7.4.1   thorpej wdc0	at isa? port 0x1f0 irq 14 flags 0x00
    313  1.7.4.1   thorpej wdc1	at isa? port 0x170 irq 15 flags 0x00
    314      1.1     perry 
    315      1.1     perry # IDE drives
    316      1.1     perry wd*	at wdc? drive ?			# the drives themselves
    317      1.1     perry 
    318      1.1     perry # ATAPI bus support
    319      1.1     perry atapibus* at wdc?
    320      1.1     perry 
    321      1.1     perry # ATAPI devices
    322      1.1     perry cd*	at atapibus? drive ?		# ATAPI CD-ROM drives
    323      1.1     perry #sd*	at atapibus? drive ?		# ATAPI disk drives
    324      1.1     perry 
    325      1.1     perry 
    326      1.1     perry # Miscellaneous mass storage devices
    327      1.1     perry 
    328      1.1     perry # ISA floppy
    329      1.1     perry fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    330      1.1     perry #fdc1	at isa? port 0x370 irq ? drq ?
    331      1.1     perry fd*	at fdc? drive ?			# the drives themselves
    332      1.1     perry # some machines need you to do this instead of fd*
    333      1.1     perry #fd0	at fdc0 drive 0
    334      1.1     perry 
    335      1.1     perry # ISA CD-ROM devices
    336      1.1     perry #mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
    337      1.1     perry 
    338      1.1     perry # ISA tape devices
    339      1.1     perry # note: the wt driver conflicts unpleasantly with ed devices at the
    340      1.1     perry # same I/O address. The probe reprograms their EEPROMs. Don't
    341      1.1     perry # uncomment it unless you are actually using it.
    342      1.1     perry #wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
    343      1.1     perry 
    344      1.1     perry 
    345      1.1     perry # Network Interfaces
    346      1.1     perry 
    347      1.1     perry # PCI network interfaces
    348      1.1     perry #de*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
    349      1.1     perry #en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    350      1.1     perry #ep*	at pci? dev ? function ?	# 3Com 3c59x/3c90x Ethernet
    351      1.1     perry #fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    352      1.1     perry #fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    353      1.1     perry #le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    354      1.1     perry #ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    355      1.1     perry #tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    356      1.1     perry 
    357      1.1     perry # EISA network interfaces
    358      1.1     perry #ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
    359      1.1     perry #fea*	at eisa? slot ?			# DEC DEFEA FDDI
    360      1.1     perry 
    361      1.1     perry # ISA Plug-and-Play network interfaces
    362      1.1     perry #ep*	at isapnp?			# 3Com 3c509 Ethernet
    363      1.1     perry #ne*	at isapnp?			# NE2000-compatible Ethernet
    364      1.1     perry 
    365      1.1     perry # PCMCIA network interfaces
    366      1.1     perry #ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    367      1.1     perry #mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    368      1.1     perry #ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    369      1.1     perry #sm*	at pcmcia? function ?		# Megahertz Ethernet
    370      1.1     perry 
    371      1.1     perry # ISA network interfaces
    372      1.1     perry ate0	at isa? port 0x2a0 irq ?		# AT1700
    373      1.1     perry ec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
    374      1.1     perry eg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
    375      1.1     perry el0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
    376      1.1     perry ep0	at isa? port ? irq ?			# 3C509 ethernet cards
    377      1.1     perry ef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
    378      1.1     perry ai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
    379      1.1     perry fmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
    380      1.1     perry ix0	at isa? port 0x300 irq 10		# EtherExpress/16
    381      1.1     perry iy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
    382      1.1     perry lc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
    383      1.1     perry #depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
    384      1.1     perry #le*	at depca?
    385      1.1     perry #nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
    386      1.1     perry #le*	at nele?
    387      1.1     perry #bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
    388      1.1     perry #le*	at bicc?
    389      1.1     perry ne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
    390      1.1     perry ne1	at isa? port 0x300 irq 10
    391      1.1     perry sm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
    392      1.1     perry we0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
    393      1.1     perry we1	at isa? port 0x300 iomem 0xcc000 irq 10
    394      1.1     perry 
    395      1.1     perry # MII bus support
    396      1.1     perry #mii*	at tl?
    397      1.1     perry 
    398      1.1     perry # MII PHY network interfaces
    399      1.1     perry #tlphy*	at mii? dev ?			# ThunderLAN PHYs
    400      1.1     perry #nsphy*	at mii? dev ?			# NS and compatible PHYs
    401      1.1     perry 
    402      1.1     perry 
    403      1.1     perry # Audio Devices
    404      1.1     perry 
    405      1.1     perry # ISA Plug-and-Play audio devices
    406      1.1     perry #guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
    407      1.1     perry #sb*	at isapnp?			# SoundBlaster-compatible audio
    408      1.1     perry 
    409      1.1     perry # ISA audio devices
    410      1.1     perry #gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
    411      1.1     perry #pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
    412      1.1     perry #pss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
    413      1.1     perry #sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
    414      1.1     perry #sb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
    415      1.1     perry #wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
    416      1.1     perry 
    417      1.1     perry # Audio support
    418      1.1     perry #audio*	at gus?
    419      1.1     perry #audio*	at guspnp?
    420      1.1     perry #audio*	at pas?
    421      1.1     perry #audio*	at sb?
    422      1.1     perry #audio*	at sp?
    423      1.1     perry #audio*	at wss?
    424      1.1     perry 
    425      1.1     perry # The spkr driver provides a simple tone interface to the built in speaker.
    426      1.1     perry #spkr0	at pcppi?		# PC speaker
    427      1.1     perry 
    428      1.1     perry 
    429      1.1     perry # Mice
    430      1.1     perry 
    431      1.1     perry # ISA busmice
    432      1.2  drochner #olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
    433      1.2  drochner #olms1	at isa? port 0x238 irq 5
    434      1.2  drochner #omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
    435      1.2  drochner #omms1	at isa? port 0x238 irq 5
    436      1.2  drochner #opms0	at pc? irq 12		# PS/2 auxiliary port mouse
    437      1.1     perry 
    438      1.1     perry 
    439      1.1     perry # Joysticks
    440      1.1     perry 
    441      1.1     perry # ISA Plug-and-Play joysticks
    442      1.1     perry #joy*	at isapnp?			# Game ports (usually on audio cards)
    443      1.1     perry 
    444      1.1     perry # ISA joysticks. Probe is a little strange; add only if you have one.
    445      1.1     perry #joy0	at isa? port 0x201
    446      1.1     perry 
    447      1.1     perry 
    448      1.1     perry # Miscellaneous Devices
    449      1.1     perry 
    450      1.1     perry # Planetconnect Satellite receiver driver.
    451      1.1     perry #satlink0 at isa? port 0x300 drq 1
    452      1.1     perry 
    453      1.1     perry 
    454      1.1     perry # Pull in optional local configuration
    455      1.1     perry include	"arch/i386/conf/GENERIC.local"
    456      1.1     perry 
    457      1.1     perry 
    458      1.1     perry # Pseudo-Devices
    459      1.1     perry 
    460      1.1     perry # disk/mass storage pseudo-devices
    461      1.1     perry #pseudo-device	ccd		4	# concatenated/striped disk devices
    462      1.1     perry pseudo-device	md		1	# memory disk device (ramdisk)
    463      1.1     perry #pseudo-device	vnd		4	# disk-like interface to files
    464      1.1     perry 
    465      1.1     perry # network pseudo-devices
    466      1.1     perry #pseudo-device	bpfilter	8	# Berkeley packet filter
    467      1.1     perry #pseudo-device	ipfilter		# IP filter (firewall) and NAT
    468      1.1     perry pseudo-device	loop			# network loopback
    469      1.1     perry pseudo-device	ppp		2	# Point-to-Point Protocol
    470      1.1     perry pseudo-device	sl		2	# Serial Line IP
    471      1.1     perry #pseudo-device	strip		2	# Starmode Radio IP (Metricom)
    472      1.1     perry #pseudo-device	tun		2	# network tunneling over tty
    473      1.1     perry 
    474      1.1     perry # miscellaneous pseudo-devices
    475      1.1     perry pseudo-device	pty		64	# pseudo-terminals
    476      1.1     perry #pseudo-device	tb		1	# tablet line discipline
    477      1.1     perry #pseudo-device	rnd			# /dev/random and in-kernel generator
    478      1.1     perry #options 	RND_COM			# use "com" randomness as well (BROKEN)
    479