Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.20
      1  1.20  szptvlfn # $NetBSD: GENERIC,v 1.20 2014/03/24 14:15:37 szptvlfn Exp $
      2   1.1       phx #
      3   1.1       phx # GENERIC machine description file
      4   1.1       phx # 
      5   1.1       phx # This machine description file is used to generate the default NetBSD
      6   1.1       phx # kernel.  The generic kernel does not include all options, subsystems
      7   1.1       phx # and device drivers, but should be useful for most applications.
      8   1.1       phx #
      9   1.1       phx # The machine description file can be customised for your specific
     10   1.1       phx # machine to reduce the kernel size and improve its performance.
     11   1.1       phx #
     12   1.1       phx # For further information on compiling NetBSD kernels, see the config(8)
     13   1.1       phx # man page.
     14   1.1       phx #
     15   1.1       phx # For further information on hardware support for this architecture, see
     16   1.1       phx # the intro(4) man page.  For further information about kernel options
     17   1.1       phx # for this architecture, see the options(4) man page.  For an explanation
     18   1.1       phx # of each device driver in this file see the section 4 man page for the
     19   1.1       phx # device.
     20   1.1       phx 
     21   1.1       phx include "arch/amigappc/conf/std.amigappc"
     22   1.1       phx 
     23   1.1       phx options 	INCLUDE_CONFIG_FILE     # embed config file in kernel binary
     24   1.1       phx 
     25  1.20  szptvlfn #ident          "GENERIC-$Revision: 1.20 $"
     26   1.1       phx 
     27   1.1       phx maxusers	8
     28   1.1       phx 
     29   1.1       phx #
     30   1.1       phx # Mainboards to support (in addition to Amiga)
     31   1.1       phx #
     32   1.1       phx options 	BB060STUPIDROM	# You need this, if you have a non-DraCo
     33   1.1       phx 				# MC68060 with an OS ROM up to (at least)
     34   1.1       phx 				# V40 (OS3.1) and want to boot with the
     35   1.1       phx 				# bootblock.
     36   1.1       phx 				# You do not need this if you have a DraCo,
     37   1.1       phx 				# have no 68060 or NEVER use the bootblock
     38   1.1       phx options 	P5PPC68KBOARD	# Phase5 PPC/68K board support
     39   1.1       phx 
     40   1.1       phx #
     41   1.1       phx # Standard system options
     42   1.1       phx #
     43   1.1       phx options 	INSECURE	# disable kernel security levels
     44   1.1       phx options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     45   1.1       phx options 	NTP		# NTP phase/frequency locked loop
     46   1.1       phx 
     47   1.1       phx options 	KTRACE		# system call tracing support
     48   1.1       phx options 	SCSIVERBOSE	# human readable SCSI error messages
     49   1.1       phx options 	USERCONF	# userconf(4) support
     50   1.1       phx #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     51   1.1       phx #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     52   1.1       phx 
     53   1.1       phx # Support for System V IPC facilities.
     54   1.1       phx options 	SYSVSHM		# System V-like shared memory
     55   1.1       phx options 	SYSVMSG		# System V-like messages
     56   1.1       phx options 	SYSVSEM		# System V-like semaphores
     57   1.1       phx 
     58   1.1       phx # Enable experimental buffer queue strategy for better responsiveness under 
     59   1.1       phx # high disk I/O load. Use it with caution - it's not proven to be stable yet.
     60   1.1       phx #options 	BUFQ_READPRIO
     61   1.1       phx #options 	BUFQ_PRIOCSCAN
     62   1.1       phx 
     63   1.1       phx #
     64   1.1       phx # Diagnostic/debugging support options
     65   1.1       phx #
     66   1.3       phx #options 	DIAGNOSTIC	# Extra kernel sanity checks
     67   1.3       phx #options 	DEBUG		# Enable misc. kernel debugging code
     68   1.3       phx #options 	DEBUG_KERNEL_START
     69   1.1       phx #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     70   1.1       phx options 	DDB		# in-kernel debugger
     71  1.20  szptvlfn #options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
     72   1.1       phx options 	DDB_HISTORY_SIZE=512	# Enable history editing in DDB
     73   1.3       phx #options 	SCSIDEBUG	# Add SCSI debugging statements
     74   1.1       phx #options 	SERCONSOLE	# console via Amiga serial port
     75   1.3       phx #makeoptions	DEBUG="-g"	# compile full symbol table
     76   1.1       phx 
     77   1.1       phx #
     78   1.1       phx # Compatibility option
     79   1.1       phx #
     80   1.1       phx options 	COMPAT_09	# NetBSD 0.9,
     81   1.1       phx options 	COMPAT_10	# NetBSD 1.0,
     82   1.1       phx options 	COMPAT_11	# NetBSD 1.1,
     83   1.1       phx options 	COMPAT_12	# NetBSD 1.2,
     84   1.1       phx options 	COMPAT_13	# NetBSD 1.3,
     85   1.1       phx options 	COMPAT_14	# NetBSD 1.4,
     86   1.1       phx options 	COMPAT_15	# NetBSD 1.5,
     87   1.1       phx options 	COMPAT_16	# NetBSD 1.6,
     88   1.1       phx options 	COMPAT_20	# NetBSD 2.0,
     89   1.1       phx options 	COMPAT_30	# NetBSD 3.0 compatibility.
     90   1.1       phx options 	COMPAT_40	# NetBSD 4.0 compatibility.
     91   1.1       phx options 	COMPAT_50	# NetBSD 5.0 compatibility.
     92  1.13       apb options 	COMPAT_60	# NetBSD 6.0 compatibility.
     93   1.1       phx options 	COMPAT_43	# and 4.3BSD
     94   1.3       phx #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     95   1.1       phx #options 	COMPAT_LINUX	# Linux binary compatibility
     96   1.1       phx #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     97   1.1       phx options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     98   1.1       phx 
     99   1.1       phx #
    100   1.1       phx # File systems
    101   1.1       phx #
    102   1.1       phx file-system 	FFS		# UFS
    103   1.3       phx file-system 	EXT2FS		# second extended file system (linux)
    104   1.3       phx file-system 	LFS		# log-structured file system
    105   1.3       phx file-system 	MFS		# memory file system
    106   1.3       phx file-system 	NFS		# Network file System client
    107   1.3       phx file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    108   1.3       phx file-system 	MSDOSFS		# MS-DOS file system
    109   1.1       phx file-system 	ADOSFS		# AmigaDOS file system
    110   1.1       phx file-system 	FDESC		# /dev/fd
    111   1.1       phx file-system 	KERNFS		# /kern
    112   1.3       phx file-system 	NULLFS		# loopback file system
    113   1.3       phx file-system 	OVERLAY		# overlay file system
    114   1.1       phx file-system 	PROCFS		# /proc
    115   1.3       phx file-system 	UMAPFS		# NULLFS + uid and gid remapping
    116   1.3       phx file-system 	UNION		# union file system
    117   1.1       phx file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
    118   1.1       phx file-system	PTYFS		# /dev/pts/N support
    119   1.1       phx file-system	TMPFS		# Efficient memory file-system
    120   1.1       phx #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
    121   1.1       phx 
    122   1.1       phx # File system options
    123   1.8       wiz #options 	FFS_EI		# FFS Endian Independent support
    124  1.10  dholland options 	WAPBL		# File system journaling support
    125   1.1       phx 
    126   1.7    bouyer options 	QUOTA		# legacy UFS quotas
    127   1.7    bouyer options 	QUOTA2		# new, in-filesystem UFS quotas
    128   1.1       phx #options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    129   1.3       phx options 	NFSSERVER	# Network File System server side code
    130   1.1       phx #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    131   1.1       phx #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    132   1.1       phx 				# immutable) behave as system flags.
    133   1.1       phx 
    134   1.1       phx #
    135   1.1       phx # Networking options
    136   1.1       phx #
    137   1.3       phx #options 	GATEWAY		# Packet forwarding
    138   1.1       phx options 	INET		# IP networking support (Required)
    139   1.1       phx options 	INET6		# IPV6
    140   1.1       phx #options 	IPSEC		# IP security
    141   1.1       phx #options 	IPSEC_DEBUG	# debug for IP security
    142   1.3       phx #options 	MROUTING	# Multicast routing
    143   1.1       phx #options 	DIRECTED_BROADCAST	# Broadcast across subnets
    144   1.1       phx #options 	PIM		# Protocol Independent Multicast
    145   1.1       phx #options 	NETATALK	# AppleTalk networking protocols
    146   1.1       phx options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    147   1.1       phx options 	PPP_DEFLATE	# Deflate compression support for PPP
    148   1.1       phx options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    149   1.1       phx options 	IPFILTER_LOG	# ipmon(8) log support
    150   1.1       phx options 	IPFILTER_LOOKUP	# ippool(8) support
    151   1.5       mrg options 	IPFILTER_COMPAT # Compat for IP-Filter
    152   1.1       phx #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
    153   1.3       phx #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    154   1.1       phx 
    155   1.1       phx #options 	ALTQ		# Manipulate network interfaces' output queues
    156   1.1       phx #options 	ALTQ_BLUE	# Stochastic Fair Blue
    157   1.1       phx #options 	ALTQ_CBQ	# Class-Based Queueing
    158   1.1       phx #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    159   1.1       phx #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    160   1.1       phx #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    161   1.1       phx #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    162   1.1       phx #options 	ALTQ_LOCALQ	# Local queueing discipline
    163   1.1       phx #options 	ALTQ_PRIQ	# Priority Queueing
    164   1.1       phx #options 	ALTQ_RED	# Random Early Detection
    165   1.1       phx #options 	ALTQ_RIO	# RED with IN/OUT
    166   1.1       phx #options 	ALTQ_WFQ	# Weighted Fair Queueing
    167   1.1       phx 
    168   1.1       phx #
    169   1.1       phx # Amiga specific options
    170   1.1       phx #
    171   1.3       phx options 	RETINACONSOLE	# enable code to allow retina to be console
    172   1.3       phx options 	ULOWELLCONSOLE	# enable code to allow a2410 to be console
    173   1.3       phx options 	CL5426CONSOLE	# Cirrus console
    174   1.3       phx options 	CV64CONSOLE	# CyberVision console
    175   1.3       phx options 	TSENGCONSOLE	# Tseng console
    176   1.3       phx options 	CV3DCONSOLE	# CyberVision 64/3D console
    177   1.1       phx 
    178   1.1       phx options 	GRF_ECS		# Enhanced Chip Set
    179   1.1       phx options 	GRF_NTSC	# NTSC
    180   1.1       phx options 	GRF_PAL		# PAL
    181   1.3       phx options 	GRF_A2024	# Support for the A2024
    182   1.3       phx options 	GRF_AGA		# AGA Chip Set
    183   1.3       phx options 	GRF_AGA_VGA	# AGA VGAONLY timing
    184   1.3       phx options 	GRF_SUPER72	# AGA Super-72
    185   1.1       phx #options 	KFONT_8X11	# 8x11 font
    186   1.1       phx 
    187   1.1       phx # select a font for the console according to the character set and keymap
    188   1.1       phx # you want to use
    189   1.1       phx options        KFONT_CONS_ISO8859_1
    190   1.1       phx #options         KFONT_CONS_ISO8859_2
    191   1.1       phx 
    192   1.1       phx # This is how you would tell the kernel the A2410 oscillator frequencies:
    193   1.1       phx # The used frequencies are the defaults, and do not need option setting
    194   1.1       phx #options 	ULOWELL_OSC1=36000000
    195   1.1       phx #options 	ULOWELL_OSC2=66667000
    196   1.1       phx 
    197   1.1       phx # This is how you specify the blitting speed, higher values may speed up blits
    198   1.1       phx # a littel bit.  If you raise this value too much some trash may appear.
    199   1.1       phx # the commented version is the default.
    200   1.1       phx #options 	RH_MEMCLK=61000000
    201   1.1       phx # this option enables the 64 bit sprite which does not work
    202   1.1       phx # for quite a few people.  E.g. The cursor sprite will turn to a block
    203   1.1       phx # when moved to the top of the screen in X.
    204   1.1       phx #options 	RH_64BIT_SPRITE
    205   1.1       phx # enables fast scroll code appears to now work on 040 systems.
    206   1.1       phx #options 	RETINA_SPEED_HACK
    207   1.1       phx # enables the Hardwarecursor which does not work on some systems.
    208   1.1       phx #options 	RH_HARDWARECURSOR
    209   1.1       phx 
    210   1.1       phx #
    211   1.1       phx # Device configuration
    212   1.1       phx #
    213   1.1       phx mainbus0	at root
    214   1.1       phx cpu0		at mainbus0
    215   1.1       phx kbd0		at mainbus0		# Amiga keyboard
    216   1.1       phx zbus0		at mainbus0		# ZorroII/III expansion bus
    217   1.1       phx ser0		at mainbus0		# Amiga onboard serial
    218   1.1       phx par0		at mainbus0		# Amiga onboard parallel
    219   1.1       phx ms*		at mainbus0		# Amiga mice
    220   1.1       phx fdc0		at mainbus0		# Amiga FDC
    221   1.1       phx fd*		at fdc0 unit ?		# floppy disks on the later
    222   1.1       phx a34kbbc0	at mainbus0		# A3000/A4000 battery backed clock
    223   1.3       phx aucc*		at mainbus0		# Amiga CC audio
    224   1.3       phx audio*		at aucc?
    225   1.1       phx 
    226   1.1       phx # wscons aware interface to amiga custom chips.
    227   1.1       phx # If you enable it enable also wskbd.
    228   1.1       phx #amidisplaycc0	at mainbus0		# wscons interface to custom chips
    229   1.1       phx #wsdisplay0	at amidisplaycc0 console ?
    230   1.1       phx #options 	WSEMUL_VT100
    231  1.12       abs #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    232   1.1       phx #options 	FONT_VT220L8x10
    233   1.1       phx #options	FONT_VT220ISO8x16
    234   1.1       phx #
    235   1.1       phx # Keyboard device. Optionally can attach a wskbd.
    236   1.1       phx # wskbd works together with a wsdisplay so enable them both if you will.
    237   1.1       phx # Don't enable wskbd if you use ite.
    238   1.1       phx #
    239   1.1       phx # XXX in std.amiga: kbd0 at mainbus0
    240   1.1       phx #wskbd0		at kbd0 console ?
    241   1.1       phx #wsmouse*	at ms?
    242   1.1       phx 
    243   1.1       phx #
    244   1.1       phx # Graphics devices
    245   1.1       phx #
    246   1.1       phx grfcc0		at mainbus0		# custom chips
    247   1.3       phx grfrt0		at zbus0		# retina II
    248   1.3       phx grfrh0		at zbus0		# retina III
    249   1.3       phx grfcl*		at zbus0		# Picasso II/Piccolo/Spectrum
    250   1.3       phx grful0		at zbus0		# A2410
    251   1.3       phx grfcv0		at zbus0		# CyberVision 64
    252   1.3       phx grfet*		at zbus0		# Tseng (oMniBus, Domino, Merlin)
    253   1.3       phx grfcv3d0	at zbus0		# CyberVision 64/3D
    254   1.1       phx 
    255   1.1       phx grf0		at grfcc0
    256   1.3       phx grf1		at grfrt0
    257   1.3       phx grf2		at grfrh0
    258   1.3       phx grf3		at grfcl?
    259   1.3       phx grf4		at grful0
    260   1.3       phx grf5		at grfcv0
    261   1.3       phx grf6		at grfet?
    262   1.3       phx grf7		at grfcv3d0
    263   1.1       phx ite0		at grf0			# terminal emulators for grfs
    264   1.3       phx ite1		at grf1			# terminal emulators for grfs
    265   1.3       phx ite2		at grf2			# terminal emulators for grfs
    266   1.3       phx ite3		at grf3			# terminal emulators for grfs
    267   1.3       phx ite4		at grf4			# terminal emulators for grfs
    268   1.3       phx ite5		at grf5			# terminal emulators for grfs
    269   1.3       phx ite6		at grf6			# terminal emulators for grfs
    270   1.3       phx ite7		at grf7			# terminal emulators for grfs
    271   1.1       phx 
    272   1.1       phx #
    273   1.1       phx # Zorro-II, Zorro-III devices (sans graphics)
    274   1.1       phx #
    275   1.3       phx repulse*	at zbus0		# ALiENDESiGN Repulse
    276   1.3       phx audio*		at repulse?
    277   1.1       phx 
    278   1.3       phx toccata*	at zbus0		# MacroSystem GmbH Toccata
    279   1.3       phx audio*		at toccata?
    280   1.1       phx 
    281   1.1       phx # Ethernet cards:
    282   1.3       phx le*		at zbus0		# A2065, Ameristar, Ariadne
    283   1.3       phx ne*		at zbus0		# AriadneII, X-surf
    284   1.3       phx ed*		at zbus0		# Hydra, ASDG LanRover
    285   1.3       phx es*		at zbus0		# CEI A4066 EthernetPLUS
    286   1.3       phx qn*		at zbus0		# Quicknet
    287   1.1       phx 
    288   1.1       phx # Arcnet
    289   1.3       phx bah*		at zbus0		# C=/Ameristar A2060 / 560
    290   1.1       phx 
    291   1.1       phx # Greater Valley Product Bus
    292   1.3       phx gvpbus* 	at zbus0
    293   1.1       phx 
    294   1.1       phx # scsi stuff, all possible
    295   1.3       phx gtsc0		at gvpbus?		# GVP series II scsi
    296   1.3       phx scsibus*	at gtsc0
    297   1.1       phx ahsc0		at mainbus0		# A3000 scsi
    298   1.1       phx scsibus*	at ahsc0
    299   1.3       phx atzsc0		at zbus0		# A2091 scsi
    300   1.3       phx scsibus*	at atzsc0
    301   1.3       phx wstsc0		at zbus0		# Wordsync II scsi
    302   1.3       phx scsibus*	at wstsc0
    303   1.3       phx ivsc0		at zbus0		# IVS scsi
    304   1.3       phx scsibus*	at ivsc0
    305   1.3       phx mlhsc0		at zbus0		# Hacker scsi
    306   1.3       phx scsibus*	at mlhsc0
    307   1.3       phx otgsc0		at zbus0		# 12 gauge scsi
    308   1.3       phx scsibus*	at otgsc0
    309   1.3       phx zssc0		at zbus0		# Zeus scsi
    310   1.3       phx scsibus*	at zssc0
    311   1.3       phx mgnsc0		at zbus0		# Magnum scsi
    312   1.3       phx scsibus*	at mgnsc0
    313   1.3       phx wesc0		at zbus0		# Warp Engine scsi
    314   1.3       phx scsibus*	at wesc0
    315   1.6       phx bppcsc0		at zbus0		# BlizzardPPC 603e+ scsi
    316   1.6       phx scsibus*	at bppcsc0
    317   1.3       phx afsc0		at zbus0		# A4091 scsi
    318   1.3       phx scsibus*	at afsc0
    319   1.3       phx aftsc0		at mainbus0		# A4000T scsi
    320   1.3       phx scsibus*	at aftsc0
    321   1.3       phx flsc0		at zbus0		# FastlaneZ3 scsi
    322   1.3       phx scsibus*	at flsc0
    323   1.3       phx bzsc0		at zbus0		# Blizzard 1230 I,II scsi
    324   1.3       phx scsibus*	at bzsc0
    325   1.3       phx bzivsc0 	at zbus0		# Blizzard 12x0 IV scsi
    326   1.3       phx scsibus*	at bzivsc0
    327   1.3       phx bztzsc0 	at zbus0		# Blizzard 2060 scsi
    328   1.3       phx scsibus*	at bztzsc0
    329   1.3       phx cbsc0		at zbus0		# CyberSCSI I
    330   1.3       phx scsibus*	at cbsc0
    331   1.3       phx cbiisc0 	at zbus0		# CyberSCSI II
    332   1.3       phx scsibus*	at cbiisc0
    333   1.3       phx cbiiisc0 	at zbus0		# Cyberstorm mk.III/Cyberstorm PPC SCSI
    334   1.3       phx scsibus*	at cbiiisc0
    335   1.3       phx empsc0		at zbus0		# Emplant scsi
    336   1.3       phx scsibus*	at empsc0
    337   1.3       phx 
    338   1.3       phx wdc0		at mainbus0		# A4000 & A1200 IDE bus
    339   1.3       phx wdc*		at zbus0		# Buddha / Catweasel
    340   1.3       phx 
    341   1.3       phx atabus* 	at wdc? channel ?	# ATA bus
    342   1.3       phx wd*		at atabus? drive ?	#  + drives
    343   1.3       phx atapibus*	at atabus?		# ATAPI bus
    344   1.3       phx cd*		at atapibus? drive ?	# ATAPI CD-ROM drives
    345   1.3       phx sd*		at atapibus? drive ?	# ATAPI disk drives
    346   1.3       phx 
    347   1.3       phx pccard0 	at mainbus0
    348   1.3       phx pcmcia* 	at pccard0
    349   1.3       phx com*		at pcmcia? function ?	# Modems and serial cards
    350   1.3       phx pcmcom* 	at pcmcia? function ?	# PCMCIA multi-port serial cards
    351   1.3       phx aic*		at pcmcia? function ?	# Adaptec APA-1460 SCSI
    352   1.3       phx wdc*		at pcmcia? function ?
    353   1.3       phx awi*		at pcmcia? function ?	# BayStack 650 (802.11FH)
    354   1.3       phx ep*		at pcmcia? function ?	# 3Com 3c589 and 3c562 Ethernet
    355   1.3       phx mbe*		at pcmcia? function ?	# MB8696x based Ethernet
    356   1.3       phx ne*		at pcmcia? function ?	# NE2000-compatible Ethernet
    357   1.3       phx sm*		at pcmcia? function ?	# Megahertz Ethernet
    358   1.3       phx mhzc*		at pcmcia? function ?	# Megahertz Ethernet/Modem combo cards
    359   1.3       phx com*		at mhzc?
    360   1.3       phx sm*		at mhzc?
    361   1.1       phx 
    362   1.1       phx # each hard drive from low target to high
    363   1.1       phx # will configure to the next available sd unit number
    364   1.1       phx sd*		at scsibus? target ? lun ?	# scsi disks
    365   1.3       phx st*		at scsibus? target ? lun ?	# scsi tapes
    366   1.1       phx cd*		at scsibus? target ? lun ?	# scsi cds
    367   1.3       phx ch*		at scsibus? target ? lun ?	# scsi autochangers
    368   1.3       phx ss*		at scsibus? target ? lun ?	# scsi scanner
    369   1.1       phx uk*		at scsibus? target ? lun ?	# scsi unknown
    370   1.1       phx 
    371   1.3       phx msc0		at zbus0		# A2232 MSC multiport serial.
    372   1.3       phx mfc0		at zbus0		# MultiFaceCard I/O board
    373   1.3       phx mfcs0		at mfc0 unit 0		# MFC serial
    374   1.3       phx mfcs1		at mfc0 unit 1		# MFC serial
    375   1.1       phx #mfcp0		at mfc0 unit 0		# MFC parallel [not available yet]
    376   1.1       phx #mfc1		at zbus0		# MultiFaceCard 2nd I/O board
    377   1.1       phx #mfcs2		at mfc1 unit 0
    378   1.1       phx #mfcs3		at mfc1 unit 1
    379   1.1       phx #mfcp1		at mfc1 unit 0
    380   1.1       phx 
    381   1.3       phx hyper*		at zbus?		# zbus HyperCom3/3+/4/4+
    382   1.1       phx #hyper*		at mainbus0		# not yet: HyperCom1 + HyperCom3
    383   1.3       phx com*		at hyper? port ?	# Hypercom3/4 serial ports
    384   1.3       phx lpt*		at hyper? port ?	# Hypercom3+/4+ parallel port
    385   1.1       phx 
    386   1.1       phx #options 	IOBZCLOCK=22118400 	# default, uncomment the next line
    387   1.1       phx #options 	IOBZCLOCK=24000000	# if needed.
    388   1.1       phx 
    389   1.3       phx iobl*		at zbus?		# zbus IOBlix
    390   1.3       phx com*		at iobl? port ?		# IOBlix serial ports
    391   1.3       phx lpt*		at iobl? port ?		# IOBlix parallel ports
    392   1.1       phx 
    393   1.1       phx 
    394   1.1       phx #
    395   1.1       phx # accept filters
    396   1.1       phx pseudo-device	accf_data		# "dataready" accept filter
    397   1.1       phx pseudo-device	accf_http		# "httpready" accept filter
    398   1.1       phx 
    399   1.1       phx pseudo-device	loop			# loopback network interface
    400   1.1       phx pseudo-device	sl			# SLIP network interfaces
    401   1.1       phx pseudo-device	ppp			# PPP network interfaces
    402   1.1       phx pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    403   1.1       phx pseudo-device	tun			# network tunnel line discipline
    404   1.1       phx pseudo-device	tap			# virtual Ethernet
    405   1.1       phx #pseudo-device	gre			# generic L3 over IP tunnel
    406   1.1       phx pseudo-device	bpfilter		# Berkeley packet filter
    407   1.1       phx #pseudo-device	carp			# Common Address Redundancy Protocol
    408   1.1       phx pseudo-device	ipfilter		# IP Filter package
    409   1.1       phx pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    410   1.1       phx #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    411   1.1       phx pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    412   1.1       phx pseudo-device	vlan			# IEEE 802.1q encapsulation
    413   1.1       phx pseudo-device	bridge			# simple inter-network bridging
    414   1.1       phx #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    415   1.1       phx pseudo-device	agr			# IEEE 802.3ad link aggregation
    416   1.1       phx #pseudo-device	pf			# PF packet filter
    417   1.1       phx #pseudo-device	pflog			# PF log if
    418   1.4     pooka pseudo-device	fss			# file system snapshot device
    419   1.1       phx 
    420   1.1       phx pseudo-device	view		4	# views (needed for grfcc)
    421   1.1       phx pseudo-device	pty			# pseudo-terminals
    422   1.1       phx pseudo-device	clockctl		# user control of clock subsystem
    423   1.1       phx 
    424   1.1       phx #pseudo-device	wsfont			# wsfont(4) dynamic font loading support
    425   1.1       phx #pseudo-device	wsmux			# mouse & keyboard multiplexor
    426   1.1       phx 
    427   1.1       phx pseudo-device	vnd			# vnode pseudo-disks
    428   1.1       phx #options 	VND_COMPRESSION		# compressed vnd(4)
    429  1.16  christos pseudo-device	ccd			# concatenated disk devices
    430  1.16  christos #pseudo-device	cgd			# cryptographic disk devices
    431  1.17  christos pseudo-device	raid			# RAIDframe disk driver
    432   1.1       phx options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    433   1.1       phx # Options to enable various other RAIDframe RAID types.
    434   1.1       phx # options 	RF_INCLUDE_EVENODD=1
    435   1.1       phx # options 	RF_INCLUDE_RAID5_RS=1
    436   1.1       phx # options 	RF_INCLUDE_PARITYLOGGING=1
    437   1.1       phx # options 	RF_INCLUDE_CHAINDECLUSTER=1
    438   1.1       phx # options 	RF_INCLUDE_INTERDECLUSTER=1
    439   1.1       phx # options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    440   1.1       phx # options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    441   1.1       phx 
    442   1.1       phx #options 	RND_COM			# use "com" randomness as well (BROKEN)
    443   1.1       phx 
    444   1.1       phx pseudo-device	ksyms			# /dev/ksyms (kernel symbols)
    445   1.1       phx pseudo-device	nsmb			# experimental - SMB requester
    446   1.1       phx 
    447   1.1       phx # Veriexec
    448   1.1       phx #
    449   1.1       phx # a pseudo device needed for veriexec
    450  1.17  christos #pseudo-device	veriexec
    451   1.1       phx #
    452   1.1       phx # Uncomment the fingerprint methods below that are desired. Note that
    453   1.1       phx # removing fingerprint methods will have almost no impact on the kernel
    454   1.1       phx # code size.
    455   1.1       phx #
    456   1.1       phx #options VERIFIED_EXEC_FP_RMD160
    457   1.1       phx #options VERIFIED_EXEC_FP_SHA256
    458   1.1       phx #options VERIFIED_EXEC_FP_SHA384
    459   1.1       phx #options VERIFIED_EXEC_FP_SHA512
    460   1.1       phx #options VERIFIED_EXEC_FP_SHA1
    461   1.1       phx #options VERIFIED_EXEC_FP_MD5
    462   1.1       phx 
    463   1.1       phx # Kernel root file system and dump configuration
    464   1.1       phx config		netbsd	root on ? type ?
    465