Home | History | Annotate | Line # | Download | only in conf
IYONIX revision 1.1
      1  1.1  macallan #	$NetBSD: IYONIX,v 1.1 2019/02/14 21:47:52 macallan Exp $
      2  1.1  macallan #
      3  1.1  macallan # GENERIC machine description file
      4  1.1  macallan #
      5  1.1  macallan # This machine description file is used to generate the default NetBSD
      6  1.1  macallan # kernel.  The generic kernel does not include all options, subsystems
      7  1.1  macallan # and device drivers, but should be useful for most applications.
      8  1.1  macallan #
      9  1.1  macallan # The machine description file can be customised for your specific
     10  1.1  macallan # machine to reduce the kernel size and improve its performance.
     11  1.1  macallan #
     12  1.1  macallan # For further information on compiling NetBSD kernels, see the config(8)
     13  1.1  macallan # man page.
     14  1.1  macallan #
     15  1.1  macallan # For further information on hardware support for this architecture, see
     16  1.1  macallan # the intro(4) man page.  For further information about kernel options
     17  1.1  macallan # for this architecture, see the options(4) man page.  For an explanation
     18  1.1  macallan # of each device driver in this file see the section 4 man page for the
     19  1.1  macallan # device.
     20  1.1  macallan 
     21  1.1  macallan include	"arch/evbarm/conf/std.iyonix"
     22  1.1  macallan 
     23  1.1  macallan options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24  1.1  macallan 
     25  1.1  macallan #ident 		"GENERIC-$Revision: 1.1 $"
     26  1.1  macallan 
     27  1.1  macallan maxusers	32		# estimated number of users
     28  1.1  macallan 
     29  1.1  macallan options 	MSGBUFSIZE=65536
     30  1.1  macallan 
     31  1.1  macallan # CPU options
     32  1.1  macallan 
     33  1.1  macallan # For XScale systems
     34  1.1  macallan options 	CPU_XSCALE_80321	# Support the XScale core
     35  1.1  macallan makeoptions	CPUFLAGS="-mcpu=xscale"
     36  1.1  macallan 
     37  1.1  macallan # Architecture options
     38  1.1  macallan options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
     39  1.1  macallan #options 	HZ=512
     40  1.1  macallan makeoptions	CPUFLAGS="-mcpu=xscale"
     41  1.1  macallan 
     42  1.1  macallan # Standard system options
     43  1.1  macallan 
     44  1.1  macallan options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     45  1.1  macallan #options 	NTP		# NTP phase/frequency locked loop
     46  1.1  macallan 
     47  1.1  macallan #options 	KTRACE		# system call tracing via ktrace(1)
     48  1.1  macallan 
     49  1.1  macallan 
     50  1.1  macallan #options 	SYSVMSG		# System V-like message queues
     51  1.1  macallan #options 	SYSVSEM		# System V-like semaphores
     52  1.1  macallan #options 	SYSVSHM		# System V-like memory sharing
     53  1.1  macallan 
     54  1.1  macallan # Device options
     55  1.1  macallan 
     56  1.1  macallan # Console options.  The default console is speed is 115200 baud.
     57  1.1  macallan #options 	CONSPEED=9600		# Console speed
     58  1.1  macallan 
     59  1.1  macallan # Miscellaneous kernel options
     60  1.1  macallan options 	KTRACE		# system call tracing, a la ktrace(1)
     61  1.1  macallan options 	IRQSTATS	# manage IRQ statistics
     62  1.1  macallan #options 	SCSIVERBOSE	# Verbose SCSI errors
     63  1.1  macallan options 	PCIVERBOSE	# Verbose PCI descriptions
     64  1.1  macallan options 	MIIVERBOSE	# Verbose MII autoconfuration messages
     65  1.1  macallan #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
     66  1.1  macallan 
     67  1.1  macallan options 	USERCONF	# userconf(4) support
     68  1.1  macallan #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     69  1.1  macallan #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     70  1.1  macallan 
     71  1.1  macallan # Development and Debugging options
     72  1.1  macallan 
     73  1.1  macallan # Alternate buffer queue strategies for better responsiveness under high
     74  1.1  macallan # disk I/O load.
     75  1.1  macallan #options 	BUFQ_READPRIO
     76  1.1  macallan #options 	BUFQ_PRIOCSCAN
     77  1.1  macallan 
     78  1.1  macallan # Diagnostic/debugging support options
     79  1.1  macallan #options 	DIAGNOSTIC	# expensive kernel consistency checks
     80  1.1  macallan #options 	DEBUG		# expensive debugging checks/support
     81  1.1  macallan options 	DDB		# in-kernel debugger
     82  1.1  macallan #options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
     83  1.1  macallan options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     84  1.1  macallan #options 	DDB_KEYCODE=0x40
     85  1.1  macallan #options 	KGDB		# remote debugger
     86  1.1  macallan #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
     87  1.1  macallan #makeoptions	DEBUG="-g"	# compile full symbol table
     88  1.1  macallan makeoptions	COPY_SYMTAB=1
     89  1.1  macallan #options 	PMAP_DEBUG	# Enable pmap_debug_level code
     90  1.1  macallan #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
     91  1.1  macallan 
     92  1.1  macallan #options 	PMAP_INCLUDE_PTE_SYNC
     93  1.1  macallan #options 	LOCKDEBUG
     94  1.1  macallan 
     95  1.1  macallan 
     96  1.1  macallan # Compatibility options
     97  1.1  macallan 
     98  1.1  macallan include 	"conf/compat_netbsd70.config"
     99  1.1  macallan options 	COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
    100  1.1  macallan 
    101  1.1  macallan # File systems
    102  1.1  macallan file-system 	FFS		# UFS
    103  1.1  macallan #file-system 	EXT2FS		# second extended file system (linux)
    104  1.1  macallan #file-system 	LFS		# log-structured file system
    105  1.1  macallan #file-system 	MFS		# memory file system
    106  1.1  macallan file-system 	NFS		# Network File System client
    107  1.1  macallan #file-system 	NTFS		# Windows/NT file system (experimental)
    108  1.1  macallan file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    109  1.1  macallan file-system 	MSDOSFS		# MS-DOS file system
    110  1.1  macallan #file-system 	FDESC		# /dev/fd
    111  1.1  macallan file-system 	KERNFS		# /kern
    112  1.1  macallan #file-system 	NULLFS		# loopback file system
    113  1.1  macallan #file-system 	OVERLAY		# overlay file system
    114  1.1  macallan file-system 	PROCFS		# /proc
    115  1.1  macallan #file-system 	UMAPFS		# NULLFS + uid and gid remapping
    116  1.1  macallan #file-system 	UNION		# union file system
    117  1.1  macallan #file-system	CODA		# Coda File System; also needs vcoda (below)
    118  1.1  macallan #file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
    119  1.1  macallan file-system	PTYFS		# /dev/ptm support
    120  1.1  macallan file-system	TMPFS		# Efficient memory file-system
    121  1.1  macallan #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
    122  1.1  macallan #file-system	HFS		# experimental - Apple HFS+ (read-only)
    123  1.1  macallan file-system     FILECORE        # Acorn filecore file system
    124  1.1  macallan 
    125  1.1  macallan # File system options
    126  1.1  macallan #options 	QUOTA		# legacy UFS quotas
    127  1.1  macallan #options 	QUOTA2		# new, in-filesystem UFS quotas
    128  1.1  macallan #options 	FFS_EI		# FFS Endian Independent support
    129  1.1  macallan options 	WAPBL		# File system journaling support
    130  1.1  macallan # Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
    131  1.1  macallan # It is not recommended for general use.
    132  1.1  macallan #options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    133  1.1  macallan #options 	NFSSERVER	# Network File System server
    134  1.1  macallan options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    135  1.1  macallan #options 	UFS_EXTATTR	# Extended attribute support for UFS1
    136  1.1  macallan #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    137  1.1  macallan 				# immutable) behave as system flags.
    138  1.1  macallan 
    139  1.1  macallan # Networking options
    140  1.1  macallan #options 	GATEWAY		# packet forwarding
    141  1.1  macallan options 	INET		# IP + ICMP + TCP + UDP
    142  1.1  macallan options 	INET6		# IPV6
    143  1.1  macallan #options 	IPSEC		# IP security
    144  1.1  macallan #options 	IPSEC_DEBUG	# debug for IP security
    145  1.1  macallan #options 	MROUTING	# IP multicast routing
    146  1.1  macallan #options 	PIM		# Protocol Independent Multicast
    147  1.1  macallan #options 	NETATALK	# AppleTalk networking protocols
    148  1.1  macallan #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    149  1.1  macallan #options 	PPP_DEFLATE	# Deflate compression support for PPP
    150  1.1  macallan #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    151  1.1  macallan #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    152  1.1  macallan 
    153  1.1  macallan #options 	ALTQ		# Manipulate network interfaces' output queues
    154  1.1  macallan #options 	ALTQ_BLUE	# Stochastic Fair Blue
    155  1.1  macallan #options 	ALTQ_CBQ	# Class-Based Queueing
    156  1.1  macallan #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    157  1.1  macallan #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    158  1.1  macallan #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    159  1.1  macallan #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    160  1.1  macallan #options 	ALTQ_LOCALQ	# Local queueing discipline
    161  1.1  macallan #options 	ALTQ_PRIQ	# Priority Queueing
    162  1.1  macallan #options 	ALTQ_RED	# Random Early Detection
    163  1.1  macallan #options 	ALTQ_RIO	# RED with IN/OUT
    164  1.1  macallan #options 	ALTQ_WFQ	# Weighted Fair Queueing
    165  1.1  macallan 
    166  1.1  macallan 
    167  1.1  macallan options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
    168  1.1  macallan 
    169  1.1  macallan options 	DKWEDGE_AUTODISCOVER
    170  1.1  macallan options 	DKWEDGE_METHOD_BSDLABEL
    171  1.1  macallan #options 	DKWEDGE_METHOD_MBR
    172  1.1  macallan 
    173  1.1  macallan options 	INSECURE
    174  1.1  macallan 
    175  1.1  macallan # Kernel root file system and dump configuration.
    176  1.1  macallan #config		netbsd	root on ? type ?
    177  1.1  macallan #config		netbsd	root on wd1a type ffs
    178  1.1  macallan #config		netbsd	root on wm0 type nfs
    179  1.1  macallan config		netbsd	root on "wedge:system/a" type ffs
    180  1.1  macallan 
    181  1.1  macallan #
    182  1.1  macallan # Device configuration
    183  1.1  macallan #
    184  1.1  macallan 
    185  1.1  macallan mainbus0 at root
    186  1.1  macallan 
    187  1.1  macallan cpu0 at mainbus?
    188  1.1  macallan 
    189  1.1  macallan # i80321 I/O Processor peripheral support
    190  1.1  macallan iopxs*          at mainbus?
    191  1.1  macallan 
    192  1.1  macallan iopaau*         at iopxs?               # Application Accelerator Unit
    193  1.1  macallan iopiic*         at iopxs?               # I2C Controller Unit(s) 
    194  1.1  macallan iic0            at iopiic?
    195  1.1  macallan iic1            at iopiic?
    196  1.1  macallan iopwdog*        at iopxs?               # Watchdog timer
    197  1.1  macallan pci0            at iopxs? bus ?         # PCI/PCI-X support
    198  1.1  macallan 
    199  1.1  macallan # The curious can see their RAM timings.
    200  1.1  macallan spdmem* at iic1 addr 0x56
    201  1.1  macallan 
    202  1.1  macallan # onboard RTC. RISC OS starts counting years at 2000
    203  1.1  macallan dsrtc0 	at iic0 addr 0x68
    204  1.1  macallan 
    205  1.1  macallan # PCI bridges
    206  1.1  macallan ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    207  1.1  macallan pci*	at ppb? bus ?
    208  1.1  macallan # XXX 'puc's aren't really bridges, but there's no better place for them here
    209  1.1  macallan #puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    210  1.1  macallan 
    211  1.1  macallan #options COMCONSOLE
    212  1.1  macallan 
    213  1.1  macallan # VGA
    214  1.1  macallan #vga*            at pci? dev ? function ?
    215  1.1  macallan genfb*		at pci? dev ? function ?
    216  1.1  macallan #options 	GENFB_PCI_DEBUG
    217  1.1  macallan #gffb*		at pci? dev ? function ?
    218  1.1  macallan 
    219  1.1  macallan # these exist but aren't configured by RISC OS
    220  1.1  macallan #alipm*		at pci?
    221  1.1  macallan #iic*		at alipm?
    222  1.1  macallan 
    223  1.1  macallan # Display
    224  1.1  macallan wsdisplay0      at wsemuldisplaydev? console 1
    225  1.1  macallan wsdisplay*      at wsemuldisplaydev?
    226  1.1  macallan 
    227  1.1  macallan #options 	WSEMUL_SUN		# sun terminal emulation
    228  1.1  macallan options 	WSEMUL_VT100		# vt100 terminal emulation
    229  1.1  macallan options 	WS_DEFAULT_FG=WSCOL_BLACK
    230  1.1  macallan options 	WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
    231  1.1  macallan options 	WS_KERNEL_FG=WSCOL_GREEN
    232  1.1  macallan options 	WS_KERNEL_BG=WSCOL_LIGHT_WHITE
    233  1.1  macallan options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
    234  1.1  macallan options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    235  1.1  macallan options 	WSDISPLAY_COMPAT_USL		# VT handling
    236  1.1  macallan options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    237  1.1  macallan #options 	WSDISPLAY_DEFAULTSCREENS=4
    238  1.1  macallan options 	FONT_GO_MONO12x23
    239  1.1  macallan options		WSDISPLAY_SCROLLSUPPORT
    240  1.1  macallan options 	VCONS_DRAW_INTR
    241  1.1  macallan options 	RASOPS_DEFAULT_WIDTH=100
    242  1.1  macallan options 	RASOPS_DEFAULT_HEIGHT=30
    243  1.1  macallan 
    244  1.1  macallan # IDE and related devices
    245  1.1  macallan # PCI IDE controllers - see pciide(4) for supported hardware.
    246  1.1  macallan # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    247  1.1  macallan # how to set up DMA modes for this chip. This may work, or may cause
    248  1.1  macallan # a machine hang with some controllers.
    249  1.1  macallan #pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    250  1.1  macallan aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
    251  1.1  macallan mvsata* 	at pci? dev ? function ?
    252  1.1  macallan 
    253  1.1  macallan # ATA (IDE) bus support
    254  1.1  macallan atabus* at ata?
    255  1.1  macallan #options	ATADEBUG
    256  1.1  macallan 
    257  1.1  macallan # IDE drives
    258  1.1  macallan # Flags are used only with controllers that support DMA operations
    259  1.1  macallan # and mode settings (e.g. some pciide controllers)
    260  1.1  macallan # The lowest order four bits (rightmost digit) of the flags define the PIO
    261  1.1  macallan # mode to use, the next set of four bits the DMA mode and the third set the
    262  1.1  macallan # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    263  1.1  macallan # to use, and the last bit must be 1 for this setting to be used.
    264  1.1  macallan # For DMA and UDMA, 0xf (1111) means 'disable'.
    265  1.1  macallan # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    266  1.1  macallan # (0xc=1100, 0xa=1010, 0xf=1111)
    267  1.1  macallan # 0x0000 means "use whatever the drive claims to support".
    268  1.1  macallan wd*	at atabus? drive ? flags 0x0000
    269  1.1  macallan 
    270  1.1  macallan # ATAPI bus support
    271  1.1  macallan atapibus* at atapi?
    272  1.1  macallan 
    273  1.1  macallan # ATAPI devices
    274  1.1  macallan # flags have the same meaning as for IDE drives.
    275  1.1  macallan # XXX No DMA on IDE devices for now
    276  1.1  macallan cd*	at atapibus? drive ? flags 0x0ff0	# ATAPI CD-ROM drives
    277  1.1  macallan sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    278  1.1  macallan st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    279  1.1  macallan uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    280  1.1  macallan 
    281  1.1  macallan 
    282  1.1  macallan # Network Interfaces
    283  1.1  macallan 
    284  1.1  macallan # onboard ethernet
    285  1.1  macallan wm*	at pci? dev ? function ?	# Intel 8254x gigabit
    286  1.1  macallan 
    287  1.1  macallan # MII/PHY support
    288  1.1  macallan makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    289  1.1  macallan ukphy*	at mii? phy ?			# generic unknown PHYs
    290  1.1  macallan 
    291  1.1  macallan 
    292  1.1  macallan # USB Controller and Devices
    293  1.1  macallan 
    294  1.1  macallan # Iyonix ships with an ehci/ohci card
    295  1.1  macallan ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
    296  1.1  macallan ohci*	at pci?	dev ? function ?	# Open Host Controller
    297  1.1  macallan #uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
    298  1.1  macallan 
    299  1.1  macallan # USB bus support
    300  1.1  macallan usb*	at ehci?
    301  1.1  macallan usb*	at ohci?
    302  1.1  macallan #usb*	at uhci?
    303  1.1  macallan #usb*	at slhci?
    304  1.1  macallan 
    305  1.1  macallan # USB Hubs
    306  1.1  macallan uhub*	at usb?
    307  1.1  macallan uhub*	at uhub? port ?
    308  1.1  macallan 
    309  1.1  macallan # USB HID device
    310  1.1  macallan uhidev*	at uhub? port ? configuration ? interface ?
    311  1.1  macallan 
    312  1.1  macallan # USB Mice
    313  1.1  macallan ums*	at uhidev? reportid ?
    314  1.1  macallan wsmouse* at ums? mux 0
    315  1.1  macallan 
    316  1.1  macallan # USB eGalax touch-panel
    317  1.1  macallan #uep*	at uhub? port ?
    318  1.1  macallan #wsmouse* at uep? mux 0
    319  1.1  macallan 
    320  1.1  macallan # USB Keyboards
    321  1.1  macallan ukbd*	at uhidev? reportid ?
    322  1.1  macallan wskbd*	at ukbd? console ? mux 1
    323  1.1  macallan 
    324  1.1  macallan # USB Generic HID devices
    325  1.1  macallan uhid*	at uhidev? reportid ?
    326  1.1  macallan 
    327  1.1  macallan # USB Mass Storage
    328  1.1  macallan umass*	at uhub? port ? configuration ? interface ?
    329  1.1  macallan 
    330  1.1  macallan # USB audio
    331  1.1  macallan uaudio*	at uhub? port ? configuration ?
    332  1.1  macallan 
    333  1.1  macallan # USB MIDI
    334  1.1  macallan #umidi* at uhub? port ? configuration ?
    335  1.1  macallan 
    336  1.1  macallan # USB Ethernet adapters
    337  1.1  macallan #axe*	at uhub? port ?		# ASIX AX88172 based adapters
    338  1.1  macallan 
    339  1.1  macallan uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
    340  1.1  macallan ucom*	at uplcom? portno ?
    341  1.1  macallan 
    342  1.1  macallan # USB Generic driver
    343  1.1  macallan #ugen*	at uhub? port ?
    344  1.1  macallan 
    345  1.1  macallan 
    346  1.1  macallan # Iyonix onboard audio
    347  1.1  macallan autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
    348  1.1  macallan 
    349  1.1  macallan # Audio support
    350  1.1  macallan audio*	at audiobus?
    351  1.1  macallan 
    352  1.1  macallan spkr*	at audio?		# PC speaker (synthesized)
    353  1.1  macallan 
    354  1.1  macallan # On-board device support
    355  1.1  macallan 
    356  1.1  macallan obio*	at mainbus?
    357  1.1  macallan com1	at obio? addr 0x900003e8 xint 1 # on-board UART
    358  1.1  macallan com0	at obio? addr 0x900002f8 xint 1 # on-board UART
    359  1.1  macallan #com*	at obio? addr 0x900003e8 xint 1 # on-board UART
    360  1.1  macallan #com*	at obio? addr 0x900003f8 xint 1 # on-board UART
    361  1.1  macallan 
    362  1.1  macallan # Pseudo-Devices
    363  1.1  macallan 
    364  1.1  macallan #pseudo-device 	crypto		# /dev/crypto device
    365  1.1  macallan #pseudo-device	swcrypto	# software crypto implementation
    366  1.1  macallan 
    367  1.1  macallan # disk/mass storage pseudo-devices
    368  1.1  macallan 
    369  1.1  macallan pseudo-device	fss			# file system snapshot device
    370  1.1  macallan 
    371  1.1  macallan # network pseudo-devices
    372  1.1  macallan pseudo-device	bpfilter		# Berkeley packet filter
    373  1.1  macallan #pseudo-device	carp			# Common Address Redundancy Protocol
    374  1.1  macallan #pseudo-device	npf			# NPF packet filter
    375  1.1  macallan pseudo-device	loop			# network loopback
    376  1.1  macallan #pseudo-device	ppp			# Point-to-Point Protocol
    377  1.1  macallan #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    378  1.1  macallan #pseudo-device	sl			# Serial Line IP
    379  1.1  macallan #pseudo-device	strip			# Starmode Radio IP (Metricom)
    380  1.1  macallan #pseudo-device	irframetty		# IrDA frame line discipline
    381  1.1  macallan #pseudo-device	tap			# virtual Ethernet
    382  1.1  macallan #pseudo-device	tun			# network tunneling over tty
    383  1.1  macallan #pseudo-device	gre			# generic L3 over IP tunnel
    384  1.1  macallan #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    385  1.1  macallan #pseudo-device	faith			# IPv[46] tcp relay translation i/f#
    386  1.1  macallan #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    387  1.1  macallan #pseudo-device	vlan			# IEEE 802.1q encapsulation
    388  1.1  macallan #pseudo-device	bridge			# simple inter-network bridging
    389  1.1  macallan #options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    390  1.1  macallan #pseudo-device	agr			# IEEE 802.3ad link aggregation
    391  1.1  macallan # srt is EXPERIMENTAL
    392  1.1  macallan #pseudo-device	srt			# source-address-based routing
    393  1.1  macallan 
    394  1.1  macallan #
    395  1.1  macallan # accept filters
    396  1.1  macallan pseudo-device   accf_data		# "dataready" accept filter
    397  1.1  macallan pseudo-device   accf_http		# "httpready" accept filter
    398  1.1  macallan 
    399  1.1  macallan # miscellaneous pseudo-devices
    400  1.1  macallan pseudo-device	pty			# pseudo-terminals
    401  1.1  macallan #options 	RND_COM			# use "com" randomness as well (BROKEN)
    402  1.1  macallan pseudo-device	clockctl		# user control of clock subsystem
    403  1.1  macallan pseudo-device	ksyms			# /dev/ksyms
    404  1.1  macallan 
    405  1.1  macallan # wscons pseudo-devices
    406  1.1  macallan pseudo-device	wsmux			# mouse & keyboard multiplexor
    407  1.1  macallan pseudo-device	wsfont
    408  1.1  macallan 
    409  1.1  macallan #options       FILEASSOC               # fileassoc(9) - required for Veriexec
    410  1.1  macallan                                        # and PAX_SEGVGUARD
    411  1.1  macallan 
    412  1.1  macallan # Veriexec
    413  1.1  macallan #pseudo-device veriexec
    414  1.1  macallan #
    415  1.1  macallan # Uncomment the fingerprint methods below that are desired. Note that
    416  1.1  macallan # removing fingerprint methods will have almost no impact on the kernel
    417  1.1  macallan # code size.
    418  1.1  macallan #
    419  1.1  macallan #options VERIFIED_EXEC_FP_SHA256
    420  1.1  macallan #options VERIFIED_EXEC_FP_SHA384
    421  1.1  macallan #options VERIFIED_EXEC_FP_SHA512
    422  1.1  macallan 
    423  1.1  macallan #options PAX_MPROTECT=0                        # PaX mprotect(2) restrictions
    424