Home | History | Annotate | Line # | Download | only in conf
MMNET_GENERIC revision 1.32
      1  1.32     sevan # $NetBSD: MMNET_GENERIC,v 1.32 2017/09/13 22:24:43 sevan Exp $
      2   1.1   aymeric #
      3   1.1   aymeric # GENERIC machine description file
      4   1.1   aymeric #
      5   1.1   aymeric # This machine description file is used to generate the default NetBSD
      6   1.1   aymeric # kernel.  The generic kernel does not include all options, subsystems
      7   1.1   aymeric # and device drivers, but should be useful for most applications.
      8   1.1   aymeric #
      9   1.1   aymeric # The machine description file can be customised for your specific
     10   1.1   aymeric # machine to reduce the kernel size and improve its performance.
     11   1.1   aymeric #
     12   1.1   aymeric # For further information on compiling NetBSD kernels, see the config(8)
     13   1.1   aymeric # man page.
     14   1.1   aymeric #
     15   1.1   aymeric # For further information on hardware support for this architecture, see
     16   1.1   aymeric # the intro(4) man page.  For further information about kernel options
     17   1.1   aymeric # for this architecture, see the options(4) man page.  For an explanation
     18   1.1   aymeric # of each device driver in this file see the section 4 man page for the
     19   1.1   aymeric # device.
     20   1.1   aymeric 
     21   1.1   aymeric include		"arch/evbarm/conf/std.mmnet"
     22   1.1   aymeric 
     23   1.1   aymeric options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24   1.1   aymeric 
     25  1.32     sevan #ident 		"GENERIC-$Revision: 1.32 $"
     26   1.1   aymeric 
     27   1.1   aymeric maxusers	32		# estimated number of users
     28   1.1   aymeric 
     29   1.1   aymeric # CPU support.
     30   1.1   aymeric options		CPU_ARM9E
     31   1.1   aymeric makeoptions	CPUFLAGS="-mtune=arm926ej-s -mcpu=arm926ej-s"
     32   1.1   aymeric 
     33   1.1   aymeric # CPU-related options.
     34   1.1   aymeric #options 	MATH_EMULATE	# floating point emulation
     35   1.1   aymeric 
     36   1.1   aymeric # doesn't work with MP just yet..
     37   1.1   aymeric #options 	PERFCTRS	# performance-monitoring counters support
     38   1.1   aymeric 
     39   1.1   aymeric #options 	MULTIBOOT	# Multiboot support (see multiboot(8))
     40   1.1   aymeric 
     41   1.1   aymeric # delay between "rebooting ..." message and hardware reset, in milliseconds
     42   1.1   aymeric #options 	CPURESET_DELAY=2000
     43   1.1   aymeric 
     44   1.1   aymeric # This option allows you to force a serial console at the specified
     45   1.1   aymeric # I/O address.   see console(4) for details.
     46   1.1   aymeric #options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
     47   1.1   aymeric #	you don't want the option below ON iff you are using the
     48   1.1   aymeric #	serial console option of the new boot strap code.
     49   1.1   aymeric #options 	CONS_OVERRIDE	# Always use above! independent of boot info
     50   1.1   aymeric 
     51   1.1   aymeric # Standard system options
     52   1.1   aymeric 
     53   1.1   aymeric #options 	INSECURE	# disable kernel security levels - X needs this
     54   1.1   aymeric 
     55   1.1   aymeric options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     56   1.1   aymeric options 	NTP		# NTP phase/frequency locked loop
     57   1.1   aymeric 
     58   1.1   aymeric options 	KTRACE		# system call tracing via ktrace(1)
     59   1.1   aymeric 
     60   1.1   aymeric options 	SYSVMSG		# System V-like message queues
     61   1.1   aymeric options 	SYSVSEM		# System V-like semaphores
     62   1.1   aymeric options 	SYSVSHM		# System V-like memory sharing
     63   1.1   aymeric 
     64   1.1   aymeric #options 	USERCONF	# userconf(4) support
     65   1.1   aymeric #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     66   1.1   aymeric options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     67   1.1   aymeric 
     68   1.1   aymeric # Beep when it is safe to power down the system (requires sysbeep)
     69   1.1   aymeric #options 	BEEP_ONHALT
     70   1.1   aymeric # Some tunable details of the above feature (default values used below)
     71   1.1   aymeric #options 	BEEP_ONHALT_COUNT=3	# Times to beep
     72   1.1   aymeric #options 	BEEP_ONHALT_PITCH=1500	# Default frequency (in Hz)
     73   1.1   aymeric #options 	BEEP_ONHALT_PERIOD=250	# Default duration (in msecs)
     74   1.1   aymeric 
     75   1.1   aymeric # Enable experimental buffer queue strategy for better responsiveness under
     76   1.1   aymeric # high disk I/O load. Likely stable but not yet the default.
     77   1.1   aymeric #options 	BUFQ_READPRIO
     78   1.1   aymeric #options 	BUFQ_PRIOCSCAN
     79   1.1   aymeric 
     80   1.1   aymeric # Diagnostic/debugging support options
     81   1.1   aymeric options 	DIAGNOSTIC	# expensive kernel consistency checks
     82   1.1   aymeric options 	DEBUG		# expensive debugging checks/support
     83   1.1   aymeric options 	DDB		# in-kernel debugger
     84  1.17  szptvlfn options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
     85   1.1   aymeric options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     86   1.1   aymeric #options 	KGDB		# remote debugger
     87   1.1   aymeric #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
     88   1.8   msaitoh makeoptions	DEBUG="-g"	# compile full symbol table
     89   1.8   msaitoh makeoptions	COPTS="-Os"
     90  1.19     joerg makeoptions	COPY_SYMTAB=1
     91   1.1   aymeric #options 	SYSCALL_STATS	# per syscall counts
     92   1.1   aymeric #options 	SYSCALL_TIMES	# per syscall times
     93   1.1   aymeric #options 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
     94   1.1   aymeric 
     95   1.1   aymeric # Compatibility options
     96  1.18    martin options		COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
     97   1.1   aymeric #options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
     98  1.20  dholland #options 	COMPAT_09	# NetBSD 0.9,
     99  1.20  dholland #options 	COMPAT_10	# NetBSD 1.0,
    100  1.20  dholland #options 	COMPAT_11	# NetBSD 1.1,
    101  1.20  dholland #options 	COMPAT_12	# NetBSD 1.2 (and 386BSD and BSDI)
    102  1.20  dholland #options 	COMPAT_13	# NetBSD 1.3 (and 386BSD and BSDI)
    103  1.20  dholland #options 	COMPAT_14	# NetBSD 1.4,
    104  1.20  dholland #options 	COMPAT_15	# NetBSD 1.5,
    105  1.20  dholland options 	COMPAT_16	# NetBSD 1.6,
    106  1.20  dholland options 	COMPAT_20	# NetBSD 2.0, and
    107  1.20  dholland options 	COMPAT_30	# NetBSD 3.0 binary compatibility
    108   1.1   aymeric options 	COMPAT_43	# 4.3BSD, 386BSD, and BSDI
    109   1.1   aymeric #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
    110   1.1   aymeric 
    111   1.1   aymeric #options 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
    112   1.1   aymeric #options 	COMPAT_LINUX	# binary compatibility with Linux
    113   1.1   aymeric #options 	COMPAT_NDIS	# NDIS network driver
    114   1.1   aymeric options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    115   1.1   aymeric 
    116   1.1   aymeric # File systems
    117   1.1   aymeric file-system 	FFS		# UFS
    118   1.1   aymeric #file-system 	EXT2FS		# second extended file system (linux)
    119   1.1   aymeric #file-system 	LFS		# log-structured file system
    120   1.1   aymeric file-system 	MFS		# memory file system
    121   1.1   aymeric file-system 	NFS		# Network File System client
    122   1.1   aymeric #file-system 	NTFS		# Windows/NT file system (experimental)
    123   1.1   aymeric #file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    124   1.1   aymeric file-system 	MSDOSFS		# MS-DOS file system
    125   1.1   aymeric #file-system 	FDESC		# /dev/fd
    126   1.1   aymeric file-system 	KERNFS		# /kern
    127   1.1   aymeric file-system 	NULLFS		# loopback file system
    128   1.1   aymeric #file-system 	OVERLAY		# overlay file system
    129   1.1   aymeric #file-system 	PROCFS		# /proc
    130   1.9   msaitoh #file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
    131   1.1   aymeric #file-system 	UMAPFS		# NULLFS + uid and gid remapping
    132   1.1   aymeric file-system 	UNION		# union file system
    133   1.1   aymeric #file-system	CODA		# Coda File System; also needs vcoda (below)
    134   1.1   aymeric #file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
    135   1.1   aymeric file-system	PTYFS		# /dev/ptm support
    136   1.1   aymeric file-system	TMPFS		# Efficient memory file-system
    137   1.1   aymeric #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
    138   1.1   aymeric 
    139   1.1   aymeric # File system options
    140   1.1   aymeric #options 	QUOTA		# UFS quotas
    141  1.27       rin #options 	DISKLABEL_EI	# disklabel Endian Independent support
    142   1.1   aymeric #options 	FFS_EI		# FFS Endian Independent support
    143   1.3  dholland options 	WAPBL		# File system journaling support
    144   1.1   aymeric # Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
    145   1.1   aymeric # It is not recommended for general use.
    146   1.1   aymeric #options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    147   1.1   aymeric #options 	NFSSERVER	# Network File System server
    148   1.1   aymeric options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    149   1.1   aymeric #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    150   1.1   aymeric 				# immutable) behave as system flags.
    151   1.1   aymeric 
    152   1.1   aymeric # Networking options
    153   1.1   aymeric options 	GATEWAY		# packet forwarding
    154   1.1   aymeric options 	INET		# IP + ICMP + TCP + UDP
    155   1.1   aymeric #options 	INET6		# IPV6
    156   1.1   aymeric #options 	IPSEC		# IP security
    157   1.1   aymeric #options 	IPSEC_DEBUG	# debug for IP security
    158   1.1   aymeric #options 	MROUTING	# IP multicast routing
    159   1.1   aymeric #options 	PIM		# Protocol Independent Multicast
    160   1.1   aymeric #options 	NETATALK	# AppleTalk networking protocols
    161   1.1   aymeric options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    162   1.1   aymeric options 	PPP_DEFLATE	# Deflate compression support for PPP
    163   1.1   aymeric options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    164   1.1   aymeric options 	IPFILTER_LOG	# ipmon(8) log support
    165   1.1   aymeric options 	IPFILTER_LOOKUP	# ippool(8) support
    166   1.1   aymeric #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
    167   1.1   aymeric #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    168   1.1   aymeric 
    169   1.1   aymeric #options 	ALTQ		# Manipulate network interfaces' output queues
    170   1.1   aymeric #options 	ALTQ_BLUE	# Stochastic Fair Blue
    171   1.1   aymeric #options 	ALTQ_CBQ	# Class-Based Queueing
    172   1.1   aymeric #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    173   1.1   aymeric #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    174   1.1   aymeric #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    175   1.1   aymeric #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    176   1.1   aymeric #options 	ALTQ_LOCALQ	# Local queueing discipline
    177   1.1   aymeric #options 	ALTQ_PRIQ	# Priority Queueing
    178   1.1   aymeric #options 	ALTQ_RED	# Random Early Detection
    179   1.1   aymeric #options 	ALTQ_RIO	# RED with IN/OUT
    180   1.1   aymeric #options 	ALTQ_WFQ	# Weighted Fair Queueing
    181   1.1   aymeric 
    182   1.1   aymeric # These options enable verbose messages for several subsystems.
    183   1.1   aymeric # Warning, these may compile large string tables into the kernel!
    184   1.1   aymeric options 	MIIVERBOSE	# verbose PHY autoconfig messages
    185   1.1   aymeric options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    186   1.1   aymeric options 	SCSIVERBOSE	# human readable SCSI error messages
    187   1.1   aymeric options 	USBVERBOSE	# verbose USB device autoconfig messages
    188   1.1   aymeric 
    189   1.1   aymeric options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
    190   1.1   aymeric 
    191   1.1   aymeric #
    192   1.1   aymeric # wscons options
    193   1.1   aymeric #
    194   1.1   aymeric # builtin terminal emulations
    195   1.1   aymeric #options 	WSEMUL_SUN		# sun terminal emulation
    196   1.1   aymeric #options 	WSEMUL_VT100		# VT100 / VT220 emulation
    197   1.1   aymeric # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
    198   1.1   aymeric #options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
    199   1.1   aymeric #options 	WS_DEFAULT_FG=WSCOL_WHITE
    200   1.1   aymeric #options 	WS_DEFAULT_BG=WSCOL_BLACK
    201   1.1   aymeric #options 	WS_DEFAULT_COLATTR="(0)"
    202   1.1   aymeric #options 	WS_DEFAULT_MONOATTR="(0)"
    203   1.1   aymeric #options 	WS_KERNEL_FG=WSCOL_GREEN
    204   1.1   aymeric #options 	WS_KERNEL_BG=WSCOL_BLACK
    205   1.1   aymeric #options 	WS_KERNEL_COLATTR=""
    206   1.1   aymeric #options 	WS_KERNEL_MONOATTR=""
    207   1.1   aymeric # customization of console border color
    208   1.1   aymeric #options 	WSDISPLAY_CUSTOM_BORDER	# custom border colors via wsconsctl(8)
    209   1.1   aymeric #options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
    210   1.1   aymeric # compatibility to other console drivers
    211   1.1   aymeric #options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
    212   1.1   aymeric #options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    213   1.6       abs #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    214   1.1   aymeric #options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    215   1.1   aymeric #options 	WSKBD_EVENT_AUTOREPEAT		# auto repeat in event mode
    216   1.1   aymeric #options 	WSKBD_USONLY			# strip off non-US keymaps
    217   1.1   aymeric # don't attach pckbd as the console if no PS/2 keyboard is found
    218   1.1   aymeric #options 	PCKBD_CNATTACH_MAY_FAIL
    219   1.1   aymeric # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
    220   1.1   aymeric #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver
    221   1.1   aymeric #options 	UKBD_LAYOUT="(KB_DE | KB_NODEAD)"  # for ukbd driver
    222   1.1   aymeric # allocate a number of virtual screens at autoconfiguration time
    223   1.1   aymeric #options 	WSDISPLAY_DEFAULTSCREENS=4
    224   1.1   aymeric # use a large software cursor that doesn't blink
    225   1.1   aymeric #options 	PCDISPLAY_SOFTCURSOR
    226   1.1   aymeric # modify the screen type of the console; defaults to "80x25"
    227   1.1   aymeric #options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
    228   1.1   aymeric # work around a hardware bug that loaded fonts don't work; found on ATI cards
    229   1.1   aymeric #options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
    230   1.1   aymeric # console scrolling support.
    231   1.1   aymeric #options 	WSDISPLAY_SCROLLSUPPORT
    232   1.1   aymeric # enable VGA raster mode capable of displaying multilingual text on console
    233   1.1   aymeric #options 	VGA_RASTERCONSOLE
    234   1.1   aymeric # enable splash screen support; requires hw driver support
    235   1.1   aymeric #options 	SPLASHSCREEN
    236   1.1   aymeric 
    237   1.1   aymeric # Kernel root file system and dump configuration.
    238   1.1   aymeric #config		netbsd root on sd0c type ffs
    239   1.1   aymeric config		netbsd root on ? type ?
    240   1.1   aymeric #config		netbsd root on ? type ?
    241   1.1   aymeric #config		netbsd	root on ? type nfs
    242   1.1   aymeric 
    243   1.1   aymeric #
    244   1.1   aymeric # Device configuration
    245   1.1   aymeric #
    246   1.1   aymeric 
    247   1.1   aymeric mainbus0 at root
    248   1.1   aymeric 
    249   1.1   aymeric cpu* at mainbus?
    250   1.1   aymeric 
    251   1.1   aymeric # Basic Bus Support
    252   1.1   aymeric at91bus0	at mainbus?		# AT91 bus
    253   1.1   aymeric 
    254   1.1   aymeric 
    255   1.1   aymeric # Integrated peripherals:
    256   1.1   aymeric # On-chip interrupt controller
    257   1.1   aymeric at91aic0	at at91bus0 addr 0xfffff000 size 0x200
    258   1.1   aymeric 
    259   1.1   aymeric # On-chip timer
    260   1.1   aymeric #at91st0		at at91bus0 addr 0xfffffd00 size 0x100 pid 1
    261   1.1   aymeric at91tctmr0	at at91bus0 addr 0xfffa0000 size 0x40 pid 17
    262   1.1   aymeric 
    263   1.1   aymeric # On-chip debug UART
    264   1.1   aymeric at91dbgu0	at at91bus0 addr 0xfffff200 size 0x200 pid 1
    265   1.1   aymeric 
    266   1.1   aymeric # On-chip UARTs
    267   1.1   aymeric #at91usart0	at at91bus0 addr 0xfffc0000 size 0x4000 pid 6
    268   1.1   aymeric #at91usart1	at at91bus0 addr 0xfffc4000 size 0x4000 pid 7
    269   1.1   aymeric #at91usart2	at at91bus0 addr 0xfffc8000 size 0x4000 pid 8
    270   1.1   aymeric #at91usart3	at at91bus0 addr 0xfffcc000 size 0x4000 pid 9
    271   1.1   aymeric 
    272   1.1   aymeric # On-chip ethernet
    273   1.1   aymeric at91emac0	at at91bus0 addr 0xfffc4000 size 0x4000 pid 21
    274   1.1   aymeric 
    275   1.1   aymeric # General purpose I/O
    276   1.1   aymeric at91pio0	at at91bus0 addr 0xfffff400 size 0x200 pid 2
    277   1.1   aymeric at91pio1	at at91bus0 addr 0xfffff600 size 0x200 pid 3
    278   1.1   aymeric at91pio2	at at91bus0 addr 0xfffff800 size 0x200 pid 4
    279   1.1   aymeric gpio*		at at91pio?
    280   1.1   aymeric 
    281   1.1   aymeric # On-chip CF interface
    282   1.1   aymeric #at91cf0	at at91bus0 addr 0x50000000 size 0x900000 pid 4
    283   1.1   aymeric #pcmcia0		at at91cf0
    284   1.1   aymeric 
    285   1.1   aymeric # On-chip USB 1.1
    286   1.1   aymeric ohci0		at at91bus0 addr 0x00500000 size 0x100000 pid 20
    287   1.1   aymeric 
    288   1.1   aymeric # On-chip SPI
    289   1.1   aymeric #at91spi0	at at91bus0 addr 0xfffe0000 size 0x4000 pid 13
    290   1.1   aymeric #spi0		at at91spi0
    291   1.1   aymeric #spi_obuf0	at spi0 slave 1
    292   1.1   aymeric #gpio*		at spi_obuf?
    293   1.1   aymeric 
    294   1.1   aymeric # On-chip I2C
    295   1.1   aymeric at91twi0	at at91bus0 addr 0xfffac000 size 0x4000 pid 11
    296   1.1   aymeric iic0		at at91twi?
    297   1.1   aymeric #ds1672rtc*	at iic0 addr 0x68
    298   1.1   aymeric #seeprom*	at iic0 addr 0x50 size 4096
    299   1.1   aymeric 
    300   1.1   aymeric # Hardware monitors
    301   1.1   aymeric 
    302   1.1   aymeric # AMD 768 and 8111 power/ACPI controllers
    303   1.1   aymeric #dbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
    304   1.1   aymeric #dbcool* at iic? addr 0x2D		# Tyan S2881
    305   1.1   aymeric #dbcool* at iic? addr 0x2E		# Tyan S2882-D
    306   1.1   aymeric 
    307   1.1   aymeric # 1-Wire support
    308   1.1   aymeric #gpioow* 	at gpio? offset 6 mask 0x1	# 1-wire bitbanging via gpio
    309   1.1   aymeric #onewire*	at gpioow?
    310   1.1   aymeric 
    311   1.1   aymeric # 1-Wire devices
    312   1.1   aymeric #owtemp* 	at onewire?			# Temperature sensors
    313   1.1   aymeric 
    314   1.1   aymeric # SCSI Controllers and Devices
    315   1.1   aymeric 
    316   1.1   aymeric # SCSI bus support
    317   1.1   aymeric scsibus* at scsi?
    318   1.1   aymeric 
    319   1.1   aymeric # SCSI devices
    320   1.1   aymeric sd*	at scsibus? target ? lun ?	# SCSI disk drives
    321   1.1   aymeric #st*	at scsibus? target ? lun ?	# SCSI tape drives
    322   1.1   aymeric #cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    323   1.1   aymeric #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    324   1.1   aymeric #ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
    325   1.1   aymeric #ss*	at scsibus? target ? lun ?	# SCSI scanners
    326   1.1   aymeric #uk*	at scsibus? target ? lun ?	# SCSI unknown
    327   1.1   aymeric 
    328   1.1   aymeric 
    329   1.1   aymeric # ATAPI bus support
    330   1.1   aymeric atapibus* at atapi?
    331   1.1   aymeric 
    332   1.1   aymeric # ATAPI devices
    333   1.1   aymeric # flags have the same meaning as for IDE drives.
    334   1.1   aymeric #cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    335   1.1   aymeric sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    336   1.1   aymeric #st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    337   1.1   aymeric #uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    338   1.1   aymeric 
    339   1.1   aymeric 
    340   1.1   aymeric # Miscellaneous mass storage devices
    341   1.1   aymeric 
    342   1.1   aymeric 
    343   1.1   aymeric 
    344   1.1   aymeric # Network Interfaces
    345   1.1   aymeric 
    346   1.1   aymeric # MII/PHY support
    347   1.1   aymeric #acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
    348   1.1   aymeric #amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
    349   1.1   aymeric #bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    350   1.1   aymeric #brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
    351   1.1   aymeric #ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
    352   1.1   aymeric #dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    353   1.1   aymeric #exphy*	at mii? phy ?			# 3Com internal PHYs
    354   1.1   aymeric #gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    355   1.1   aymeric #glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    356   1.1   aymeric #gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    357   1.1   aymeric #icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
    358   1.1   aymeric #igphy*	at mii? phy ?			# Intel IGP01E1000
    359   1.1   aymeric #ikphy*	at mii? phy ?			# Intel 82563 PHYs
    360   1.1   aymeric #inphy*	at mii? phy ?			# Intel 82555 PHYs
    361   1.1   aymeric #iophy*	at mii? phy ?			# Intel 82553 PHYs
    362   1.1   aymeric #lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
    363   1.1   aymeric #makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    364   1.1   aymeric #nsphy*	at mii? phy ?			# NS83840 PHYs
    365   1.1   aymeric #nsphyter* at mii? phy ? 		# NS83843 PHYs
    366   1.1   aymeric #pnaphy* at mii? phy ?			# generic HomePNA PHYs
    367   1.1   aymeric #qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    368   1.1   aymeric #rgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
    369   1.1   aymeric #rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
    370   1.1   aymeric #sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    371   1.1   aymeric #tlphy*	at mii? phy ?			# ThunderLAN PHYs
    372   1.1   aymeric #tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    373   1.1   aymeric ukphy*	at at91emac? phy ?
    374   1.1   aymeric ukphy*	at aue? phy ?			# generic unknown PHYs
    375   1.1   aymeric ukphy*	at axe? phy ?			# generic unknown PHYs
    376   1.1   aymeric ukphy*	at udav? phy ?			# generic unknown PHYs
    377   1.1   aymeric ukphy*	at url? phy ?			# generic unknown PHYs
    378   1.1   aymeric #urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    379   1.1   aymeric 
    380   1.1   aymeric 
    381   1.1   aymeric # USB Controller and Devices
    382   1.1   aymeric 
    383   1.1   aymeric # USB bus support
    384   1.1   aymeric usb*	at ohci?
    385   1.1   aymeric 
    386   1.1   aymeric # USB Hubs
    387   1.1   aymeric uhub*	at usb?
    388   1.1   aymeric uhub*	at uhub? port ? configuration ? interface ?
    389   1.1   aymeric 
    390   1.1   aymeric # USB HID device
    391   1.1   aymeric #uhidev*	at uhub? port ? configuration ? interface ?
    392   1.1   aymeric 
    393   1.1   aymeric # USB Mice
    394   1.1   aymeric #ums*	at uhidev? reportid ?
    395   1.1   aymeric #wsmouse* at ums? mux 0
    396   1.1   aymeric 
    397   1.1   aymeric # USB eGalax touch-panel
    398   1.1   aymeric #uep*	at uhub? port ?
    399   1.1   aymeric #wsmouse* at uep? mux 0
    400   1.1   aymeric 
    401   1.1   aymeric # USB Keyboards
    402   1.1   aymeric #ukbd*	at uhidev? reportid ?
    403   1.1   aymeric #wskbd*	at ukbd? console ? mux 1
    404   1.1   aymeric 
    405   1.1   aymeric # USB serial adapter
    406   1.1   aymeric #ucycom*	at uhidev? reportid ?
    407   1.1   aymeric 
    408   1.1   aymeric # USB Generic HID devices
    409   1.1   aymeric #uhid*	at uhidev? reportid ?
    410   1.1   aymeric 
    411   1.1   aymeric # USB Printer
    412   1.1   aymeric #ulpt*	at uhub? port ? configuration ? interface ?
    413   1.1   aymeric 
    414   1.1   aymeric # USB Modem
    415   1.1   aymeric #umodem*	at uhub? port ? configuration ?
    416   1.1   aymeric #ucom*	at umodem?
    417   1.1   aymeric 
    418   1.1   aymeric # USB Mass Storage
    419   1.1   aymeric umass*	at uhub? port ? configuration ? interface ?
    420   1.1   aymeric wd*	at umass?
    421   1.1   aymeric 
    422   1.1   aymeric # USB audio
    423   1.1   aymeric #uaudio*	at uhub? port ? configuration ?
    424   1.1   aymeric 
    425   1.1   aymeric # USB MIDI
    426   1.1   aymeric #umidi* at uhub? port ? configuration ?
    427   1.1   aymeric 
    428   1.1   aymeric # USB IrDA
    429   1.1   aymeric # USB-IrDA bridge spec
    430   1.1   aymeric #uirda* at uhub? port ? configuration ? interface ?
    431   1.1   aymeric #irframe* at uirda?
    432   1.1   aymeric 
    433   1.1   aymeric # SigmaTel STIr4200 USB/IrDA Bridge
    434   1.1   aymeric #ustir* at uhub? port ?
    435   1.1   aymeric #irframe* at ustir?
    436   1.1   aymeric 
    437   1.1   aymeric # USB Ethernet adapters
    438   1.1   aymeric aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    439   1.1   aymeric axe*	at uhub? port ?		# ASIX AX88172 based adapters
    440   1.1   aymeric cdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
    441   1.1   aymeric cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    442   1.1   aymeric kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    443   1.1   aymeric udav*	at uhub? port ?		# Davicom DM9601 based adapters
    444   1.1   aymeric url*	at uhub? port ?		# Realtek RTL8150L based adapters
    445   1.1   aymeric 
    446   1.1   aymeric # USB 802.11 adapters
    447   1.1   aymeric atu*	at uhub? port ?		# Atmel AT76C50XX based adapters
    448   1.7  jakllsch ural*	at uhub? port ?		# Ralink Technology RT2500USB 802.11a/b/g
    449   1.1   aymeric rum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
    450   1.1   aymeric 
    451   1.1   aymeric # Prolific PL2301/PL2302 host-to-host adapter
    452   1.1   aymeric upl*	at uhub? port ?
    453   1.1   aymeric 
    454   1.1   aymeric # Serial adapters
    455   1.1   aymeric ubsa*	at uhub? port ?		# Belkin serial adapter
    456   1.1   aymeric ucom*	at ubsa? portno ?
    457   1.1   aymeric 
    458   1.1   aymeric uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    459   1.1   aymeric ucom*	at uftdi? portno ?
    460   1.1   aymeric 
    461   1.1   aymeric #uipaq*	at uhub? port ?		# iPAQ PDAs
    462   1.1   aymeric #ucom*	at uipaq? portno ?
    463   1.1   aymeric 
    464   1.1   aymeric umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    465   1.1   aymeric ucom*	at umct? portno ?
    466   1.1   aymeric 
    467   1.1   aymeric uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
    468   1.1   aymeric ucom*	at uplcom? portno ?
    469   1.1   aymeric 
    470   1.1   aymeric uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
    471   1.1   aymeric ucom*	at uvscom? portno ?
    472   1.1   aymeric 
    473   1.1   aymeric # Diamond Multimedia Rio 500
    474   1.1   aymeric #urio*	at uhub? port ?
    475   1.1   aymeric 
    476   1.1   aymeric # USB Handspring Visor
    477   1.1   aymeric #uvisor*	at uhub? port ?
    478   1.1   aymeric #ucom*	at uvisor?
    479   1.1   aymeric 
    480   1.1   aymeric # Kyocera AIR-EDGE PHONE
    481   1.1   aymeric #ukyopon* at uhub? port ?
    482   1.1   aymeric #ucom*	at ukyopon? portno ?
    483   1.1   aymeric 
    484   1.1   aymeric # USB scanners
    485   1.1   aymeric #uscanner* at uhub? port ?
    486   1.1   aymeric 
    487   1.1   aymeric # USB scanners that use SCSI emulation, e.g., HP5300
    488   1.1   aymeric #usscanner* at uhub? port ?
    489   1.1   aymeric 
    490   1.1   aymeric # Topfield TF5000PVR range of DVB recorders
    491   1.1   aymeric #utoppy*	at uhub? port ?
    492   1.1   aymeric 
    493   1.1   aymeric # Y@P firmware loader
    494   1.1   aymeric #uyap* at uhub? port ?
    495   1.1   aymeric 
    496   1.1   aymeric # D-Link DSB-R100 USB radio
    497   1.1   aymeric #udsbr*	at uhub? port ?
    498   1.1   aymeric #radio*	at udsbr?
    499   1.1   aymeric 
    500   1.1   aymeric # USB Generic driver
    501   1.1   aymeric #ugen*	at uhub? port ?
    502   1.1   aymeric # On ugen bulk endpoints, perform read-ahead and write-behind.
    503   1.1   aymeric #options UGEN_BULK_RA_WB
    504   1.1   aymeric 
    505   1.1   aymeric 
    506   1.1   aymeric # IrDA and Consumer Ir devices
    507   1.1   aymeric 
    508   1.1   aymeric # Toshiba Oboe
    509   1.1   aymeric 
    510   1.1   aymeric # Audio Devices
    511   1.1   aymeric 
    512   1.1   aymeric # Audio support
    513   1.1   aymeric #audio*	at audiobus?
    514   1.1   aymeric 
    515  1.26  christos #spkr*	at audio?		# PC speaker (synthesized)
    516  1.24       nat 
    517   1.1   aymeric # MIDI support
    518   1.1   aymeric #midi*	at midibus?
    519   1.1   aymeric #midi*	at pcppi?		# MIDI interface to the PC speaker
    520   1.1   aymeric 
    521   1.1   aymeric 
    522   1.1   aymeric 
    523   1.1   aymeric # Bluetooth Controller and Device support
    524   1.1   aymeric 
    525   1.1   aymeric # Bluetooth PCMCIA Controllers
    526   1.1   aymeric #bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
    527   1.1   aymeric 
    528   1.1   aymeric # Bluetooth USB Controllers
    529   1.1   aymeric #ubt* at uhub? port ? configuration ? interface ?
    530   1.1   aymeric 
    531   1.1   aymeric # Bluetooth Device Hub
    532   1.1   aymeric #bthub* at bt3c?
    533   1.1   aymeric #bthub* at ubt?
    534   1.1   aymeric 
    535   1.1   aymeric # Bluetooth HID support
    536   1.1   aymeric #bthidev* at bthub?
    537   1.1   aymeric 
    538   1.1   aymeric # Bluetooth Mouse
    539   1.1   aymeric #btms* at bthidev? reportid ?
    540   1.1   aymeric #wsmouse* at btms? mux 0
    541   1.1   aymeric 
    542   1.1   aymeric # Bluetooth Keyboard
    543   1.1   aymeric #btkbd* at bthidev? reportid ?
    544   1.1   aymeric #wskbd* at btkbd? console ? mux 1
    545   1.1   aymeric 
    546   1.1   aymeric # Bluetooth Audio support
    547   1.1   aymeric #btsco* at bthub?
    548   1.1   aymeric 
    549   1.1   aymeric 
    550   1.1   aymeric 
    551   1.1   aymeric 
    552   1.1   aymeric # Pseudo-Devices
    553   1.1   aymeric 
    554   1.1   aymeric #pseudo-device 	crypto		# /dev/crypto device
    555   1.1   aymeric #pseudo-device	swcrypto	# software crypto implementation
    556   1.1   aymeric 
    557   1.1   aymeric # disk/mass storage pseudo-devices
    558  1.12  christos #pseudo-device	ccd			# concatenated/striped disk devices
    559  1.12  christos #pseudo-device	cgd			# cryptographic disk devices
    560  1.13  christos #pseudo-device	raid			# RAIDframe disk driver
    561   1.1   aymeric #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    562   1.1   aymeric # Options to enable various other RAIDframe RAID types.
    563   1.1   aymeric #options 	RF_INCLUDE_EVENODD=1
    564   1.1   aymeric #options 	RF_INCLUDE_RAID5_RS=1
    565   1.1   aymeric #options 	RF_INCLUDE_PARITYLOGGING=1
    566   1.1   aymeric #options 	RF_INCLUDE_CHAINDECLUSTER=1
    567   1.1   aymeric #options 	RF_INCLUDE_INTERDECLUSTER=1
    568   1.1   aymeric #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    569   1.1   aymeric #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    570  1.14  christos #pseudo-device	fss			# file system snapshot device
    571   1.9   msaitoh #pseudo-device	putter			# for puffs and pud
    572   1.1   aymeric 
    573  1.14  christos pseudo-device	md			# memory disk device (ramdisk)
    574   1.1   aymeric #pseudo-device	vnd			# disk-like interface to files
    575   1.1   aymeric #options 	VND_COMPRESSION		# compressed vnd(4)
    576   1.1   aymeric 
    577   1.1   aymeric # network pseudo-devices
    578   1.1   aymeric pseudo-device	bpfilter		# Berkeley packet filter
    579   1.1   aymeric #pseudo-device	carp			# Common Address Redundancy Protocol
    580   1.1   aymeric pseudo-device	ipfilter		# IP filter (firewall) and NAT
    581   1.1   aymeric pseudo-device	loop			# network loopback
    582   1.1   aymeric pseudo-device	ppp			# Point-to-Point Protocol
    583   1.1   aymeric #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    584   1.1   aymeric #pseudo-device	sl			# Serial Line IP
    585   1.1   aymeric #pseudo-device	strip			# Starmode Radio IP (Metricom)
    586   1.1   aymeric #pseudo-device	irframetty		# IrDA frame line discipline
    587   1.1   aymeric #pseudo-device	tap			# virtual Ethernet
    588   1.1   aymeric pseudo-device	tun			# network tunneling over tty
    589   1.1   aymeric #pseudo-device	gre			# generic L3 over IP tunnel
    590   1.1   aymeric #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    591   1.1   aymeric #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    592   1.1   aymeric #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    593   1.1   aymeric #pseudo-device	vlan			# IEEE 802.1q encapsulation
    594   1.1   aymeric #pseudo-device	bridge			# simple inter-network bridging
    595   1.1   aymeric #options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    596   1.1   aymeric pseudo-device	pf			# PF packet filter
    597   1.1   aymeric pseudo-device	pflog			# PF log if
    598   1.1   aymeric # srt is EXPERIMENTAL
    599   1.1   aymeric #pseudo-device	srt			# source-address-based routing
    600   1.1   aymeric 
    601   1.1   aymeric # miscellaneous pseudo-devices
    602   1.1   aymeric pseudo-device	pty			# pseudo-terminals
    603  1.14  christos #pseudo-device	sequencer		# MIDI sequencer
    604   1.1   aymeric #options 	RND_COM			# use "com" randomness as well (BROKEN)
    605   1.1   aymeric pseudo-device	clockctl		# user control of clock subsystem
    606   1.1   aymeric pseudo-device	ksyms			# /dev/ksyms
    607   1.1   aymeric 
    608   1.1   aymeric # a pseudo device needed for Coda	# also needs CODA (above)
    609  1.13  christos #pseudo-device	vcoda			# coda minicache <-> venus comm.
    610   1.1   aymeric 
    611   1.1   aymeric # a pseudo device needed for SMBFS
    612   1.1   aymeric #pseudo-device	nsmb			# experimental - SMB requester
    613   1.1   aymeric 
    614   1.1   aymeric # wscons pseudo-devices
    615   1.1   aymeric #pseudo-device	wsmux			# mouse & keyboard multiplexor
    616   1.1   aymeric #pseudo-device	wsfont
    617   1.1   aymeric 
    618   1.1   aymeric #options 	FILEASSOC		# fileassoc(9) - required for Veriexec
    619  1.23  christos 					# and PAX_SEGVGUARD
    620   1.1   aymeric 
    621   1.1   aymeric # Veriexec
    622   1.1   aymeric #pseudo-device	veriexec
    623   1.1   aymeric #
    624   1.1   aymeric # Uncomment the fingerprint methods below that are desired. Note that
    625   1.1   aymeric # removing fingerprint methods will have almost no impact on the kernel
    626   1.1   aymeric # code size.
    627   1.1   aymeric #
    628   1.1   aymeric #options VERIFIED_EXEC_FP_SHA256
    629   1.1   aymeric #options VERIFIED_EXEC_FP_SHA384
    630   1.1   aymeric #options VERIFIED_EXEC_FP_SHA512
    631   1.1   aymeric 
    632   1.1   aymeric options PAX_MPROTECT=0			# PaX mprotect(2) restrictions
    633