Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.5
      1  1.5      tls # $NetBSD: GENERIC,v 1.5 2008/08/10 15:31:21 tls Exp $
      2  1.2  garbled #
      3  1.2  garbled 
      4  1.2  garbled include 	"arch/mvmeppc/conf/std.mvmeppc"
      5  1.2  garbled 
      6  1.2  garbled #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      7  1.2  garbled 
      8  1.5      tls #ident		"MVME1600-$Revision: 1.5 $"
      9  1.2  garbled 
     10  1.2  garbled maxusers	8
     11  1.2  garbled 
     12  1.2  garbled # Which board to support
     13  1.2  garbled options 	SUPPORT_MVME160X
     14  1.2  garbled options		PIC_I8259
     15  1.2  garbled #options	PIC_PREPIVR
     16  1.2  garbled 
     17  1.2  garbled # Standard system options
     18  1.2  garbled 
     19  1.2  garbled options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     20  1.2  garbled 
     21  1.2  garbled options 	KTRACE		# system call tracing via ktrace(1)
     22  1.2  garbled 
     23  1.2  garbled options 	SYSVMSG		# System V-like message queues
     24  1.2  garbled options 	SYSVSEM		# System V-like semaphores
     25  1.2  garbled options 	SYSVSHM		# System V-like memory sharing
     26  1.2  garbled 
     27  1.2  garbled options 	USERCONF	# userconf(4) support
     28  1.2  garbled options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     29  1.2  garbled #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     30  1.2  garbled 
     31  1.2  garbled # Diagnostic/debugging support options
     32  1.2  garbled options 	DIAGNOSTIC	# cheap kernel consistency checks
     33  1.2  garbled options 	DEBUG		# expensive debugging checks/support
     34  1.2  garbled #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     35  1.2  garbled options 	DDB		# in-kernel debugger
     36  1.2  garbled #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
     37  1.2  garbled #makeoptions	DEBUG="-g"
     38  1.2  garbled 
     39  1.2  garbled # File systems
     40  1.2  garbled file-system 	FFS		# UFS
     41  1.2  garbled #file-system	EXT2FS		# second extended file system (linux)
     42  1.2  garbled #file-system	LFS		# log-structured file system
     43  1.2  garbled file-system 	MFS		# memory file system
     44  1.2  garbled file-system 	NFS		# Network File System client
     45  1.2  garbled #file-system	NTFS		# Windows/NT file system (experimental)
     46  1.2  garbled #file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     47  1.2  garbled #file-system 	MSDOSFS		# MS-DOS file system
     48  1.2  garbled #file-system 	FDESC		# /dev/fd
     49  1.2  garbled #file-system 	KERNFS		# /kern
     50  1.2  garbled #file-system 	NULLFS		# loopback file system
     51  1.2  garbled #file-system	OVERLAY		# overlay file system
     52  1.2  garbled #file-system 	PORTAL		# portal filesystem (still experimental)
     53  1.2  garbled ##file-system 	PROCFS		# /proc
     54  1.2  garbled #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     55  1.2  garbled #file-system 	UNION		# union file system
     56  1.2  garbled #file-system	CODA		# Coda File System; also needs vcoda (below)
     57  1.2  garbled file-system	PTYFS		# /dev/pts/N support
     58  1.2  garbled 
     59  1.2  garbled # File system options
     60  1.2  garbled #options 	QUOTA		# UFS quotas
     61  1.2  garbled #options 	FFS_EI		# FFS Endian Independant support
     62  1.2  garbled options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     63  1.2  garbled options 	SOFTDEP		# FFS soft updates support.
     64  1.4   simonb options 	WAPBL		# File system journaling support - Experimental
     65  1.2  garbled #options 	NFSSERVER	# Network File System server
     66  1.2  garbled #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     67  1.2  garbled  				# immutable) behave as system flags.
     68  1.2  garbled 
     69  1.2  garbled # Networking options
     70  1.2  garbled #options 	GATEWAY		# packet forwarding
     71  1.2  garbled options 	INET		# IP + ICMP + TCP + UDP
     72  1.2  garbled #options 	INET6		# IPv6
     73  1.2  garbled #options 	IPSEC		# IP security
     74  1.2  garbled #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     75  1.2  garbled #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
     76  1.2  garbled #options 	IPSEC_DEBUG	# debug for IP security
     77  1.2  garbled #options 	MROUTING	# IP multicast routing
     78  1.2  garbled #options 	PIM		# Protocol Independent Multicast
     79  1.2  garbled #options 	NETATALK	# AppleTalk networking protocols
     80  1.2  garbled #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     81  1.2  garbled #options 	PPP_DEFLATE	# Deflate compression support for PPP
     82  1.2  garbled #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     83  1.2  garbled #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     84  1.2  garbled #options 	IPFILTER_LOG	# ipmon(8) log support
     85  1.2  garbled #options 	IPFILTER_LOOKUP	# ippool(8) support
     86  1.2  garbled #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     87  1.2  garbled 
     88  1.2  garbled # These options enable verbose messages for several subsystems.
     89  1.2  garbled # Warning, these may compile large string tables into the kernel!
     90  1.2  garbled #options 	MIIVERBOSE	# verbose PHY autoconfig messages
     91  1.2  garbled #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
     92  1.2  garbled #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
     93  1.2  garbled #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
     94  1.2  garbled #options 	SCSIVERBOSE	# human readable SCSI error messages
     95  1.2  garbled #options 	USBVERBOSE	# verbose USB device autoconfig messages
     96  1.2  garbled 
     97  1.2  garbled #options 	NFS_BOOT_BOOTP
     98  1.2  garbled #options 	NFS_BOOT_BOOTPARAM
     99  1.2  garbled options 	NFS_BOOT_DHCP
    100  1.2  garbled 
    101  1.2  garbled #
    102  1.2  garbled # wscons options
    103  1.2  garbled #
    104  1.2  garbled # builtin terminal emulations
    105  1.2  garbled #options 	WSEMUL_VT100		# VT100 / VT220 emulation
    106  1.2  garbled # different kernel output - see dev/wscons/wsdisplayvar.h
    107  1.2  garbled #options 	WS_KERNEL_FG=WSCOL_GREEN
    108  1.2  garbled #options 	WS_KERNEL_BG=WSCOL_BLACK
    109  1.2  garbled # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
    110  1.2  garbled #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    111  1.2  garbled # allocate a number of virtual screens at autoconfiguration time
    112  1.2  garbled #options 	WSDISPLAY_DEFAULTSCREENS=4
    113  1.2  garbled # use a large software cursor that doesn't blink
    114  1.2  garbled #options 	PCDISPLAY_SOFTCURSOR
    115  1.2  garbled 
    116  1.2  garbled # Kernel root file system and dump configuration.
    117  1.2  garbled config	netbsd	root on ? type ?
    118  1.2  garbled #config	netbsd	root on tlp0 type nfs
    119  1.2  garbled #config	netbsd	root on le0 type nfs
    120  1.2  garbled 
    121  1.2  garbled 
    122  1.2  garbled #
    123  1.2  garbled # Device configuration
    124  1.2  garbled #
    125  1.2  garbled 
    126  1.2  garbled mainbus0 at root
    127  1.2  garbled cpu0	at mainbus0
    128  1.2  garbled 
    129  1.2  garbled 
    130  1.2  garbled # Basic Bus Support
    131  1.2  garbled 
    132  1.2  garbled # PCI bus support
    133  1.2  garbled pci0	at mainbus0 bus ?
    134  1.2  garbled pci*	at pchb? bus ?
    135  1.2  garbled pci*	at ppb? bus ?
    136  1.2  garbled 
    137  1.2  garbled #options 	PCI_NETBSD_CONFIGURE
    138  1.2  garbled 
    139  1.2  garbled # PCI bridges
    140  1.2  garbled pchb*	at pci? dev ? function ?	# PCI-Host bridges
    141  1.2  garbled ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    142  1.2  garbled pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    143  1.2  garbled 
    144  1.2  garbled # ISA bus support
    145  1.2  garbled isa*	at pcib?			# ISA on PCI-ISA bridge
    146  1.2  garbled 
    147  1.2  garbled # Console Devices
    148  1.2  garbled 
    149  1.2  garbled # wscons
    150  1.2  garbled #pckbc0		at isa?			# pc keyboard controller
    151  1.2  garbled #pckbd*		at pckbc?		# PC keyboard
    152  1.2  garbled #pms*		at pckbc?		# PS/2 mouse for wsmouse
    153  1.2  garbled #vga*		at pci?
    154  1.2  garbled #wsdisplay*	at vga? console ?
    155  1.2  garbled #wskbd*		at pckbd? console ?
    156  1.2  garbled #wsmouse*	at pms? mux 0
    157  1.2  garbled 
    158  1.2  garbled 
    159  1.2  garbled # Serial Devices
    160  1.2  garbled 
    161  1.2  garbled # ISA serial interfaces
    162  1.2  garbled com0	at isa? port 0x3f8 irq 4	# standard PC serial ports
    163  1.2  garbled com1	at isa? port 0x2f8 irq 3
    164  1.2  garbled 
    165  1.2  garbled # TODO: 85230 SIO x2
    166  1.2  garbled 
    167  1.2  garbled 
    168  1.2  garbled # Parallel Printer Interfaces
    169  1.2  garbled 
    170  1.2  garbled # ISA parallel printer interfaces
    171  1.2  garbled lpt0	at isa? port 0x3bc irq 7	# standard PC parallel ports
    172  1.2  garbled 
    173  1.2  garbled 
    174  1.2  garbled # Real-time clocks
    175  1.2  garbled 
    176  1.2  garbled mkclock0 at isa? port 0x74		# MK48T18 NVRAM/RTC
    177  1.2  garbled 
    178  1.2  garbled 
    179  1.2  garbled # SCSI Controllers and Devices
    180  1.2  garbled 
    181  1.2  garbled # PCI SCSI controllers
    182  1.2  garbled siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
    183  1.2  garbled 
    184  1.2  garbled 
    185  1.2  garbled # SCSI bus support
    186  1.2  garbled scsibus* at siop?
    187  1.2  garbled 
    188  1.2  garbled # SCSI devices
    189  1.2  garbled sd*	at scsibus? target ? lun ?	# SCSI disk drives
    190  1.2  garbled #st*	at scsibus? target ? lun ?	# SCSI tape drives
    191  1.2  garbled #cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    192  1.2  garbled #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    193  1.2  garbled #ss*	at scsibus? target ? lun ?	# SCSI scanners
    194  1.2  garbled #uk*	at scsibus? target ? lun ?	# SCSI unknown
    195  1.2  garbled 
    196  1.2  garbled 
    197  1.2  garbled # Network Interfaces
    198  1.2  garbled 
    199  1.2  garbled # PCI network interfaces
    200  1.2  garbled tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    201  1.2  garbled 
    202  1.2  garbled # MII/PHY support
    203  1.2  garbled ukphy*	at mii? phy ?			# generic unknown PHYs
    204  1.2  garbled 
    205  1.2  garbled 
    206  1.2  garbled # Pseudo-Devices
    207  1.2  garbled 
    208  1.2  garbled # disk/mass storage pseudo-devices
    209  1.2  garbled #pseudo-device	ccd		4	# concatenated/striped disk devices
    210  1.2  garbled #pseudo-device	cgd		4	# cryptographic disk devices
    211  1.2  garbled #pseudo-device	raid		8	# RAIDframe disk driver
    212  1.2  garbled #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    213  1.2  garbled # Options to enable various other RAIDframe RAID types.
    214  1.2  garbled # options	RF_INCLUDE_EVENODD=1
    215  1.2  garbled # options	RF_INCLUDE_RAID5_RS=1
    216  1.2  garbled # options	RF_INCLUDE_PARITYLOGGING=1
    217  1.2  garbled # options	RF_INCLUDE_CHAINDECLUSTER=1
    218  1.2  garbled # options	RF_INCLUDE_INTERDECLUSTER=1
    219  1.2  garbled # options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    220  1.2  garbled # options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    221  1.2  garbled #pseudo-device	fss		4	# file system snapshot device
    222  1.2  garbled #pseudo-device	md		1	# memory disk device (ramdisk)
    223  1.2  garbled #pseudo-device	vnd			# disk-like interface to files
    224  1.2  garbled 
    225  1.2  garbled # network pseudo-devices
    226  1.2  garbled pseudo-device	loop			# network loopback
    227  1.2  garbled #pseudo-device	bpfilter		# Berkeley packet filter
    228  1.2  garbled #pseudo-device	ipfilter		# IP filter (firewall) and NAT
    229  1.2  garbled #pseudo-device	ppp			# Point-to-Point Protocol
    230  1.2  garbled #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    231  1.2  garbled #pseudo-device	sl			# Serial Line IP
    232  1.2  garbled #pseudo-device	strip			# Starmode Radio IP (Metricom)
    233  1.2  garbled #pseudo-device	tun			# network tunneling over tty
    234  1.2  garbled #pseudo-device	tap			# virtual Ethernet
    235  1.2  garbled #pseudo-device	gre			# generic L3 over IP tunnel
    236  1.2  garbled #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    237  1.2  garbled #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    238  1.2  garbled #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    239  1.2  garbled #pseudo-device	vlan			# IEEE 802.1q encapsulation
    240  1.2  garbled #pseudo-device	bridge			# simple inter-network bridging
    241  1.2  garbled 
    242  1.5      tls #
    243  1.5      tls # accept filters
    244  1.5      tls pseudo-device   accf_data		# "dataready" accept filter
    245  1.5      tls pseudo-device   accf_http		# "httpready" accept filter
    246  1.5      tls 
    247  1.2  garbled # miscellaneous pseudo-devices
    248  1.2  garbled pseudo-device	pty			# pseudo-terminals
    249  1.2  garbled #pseudo-device	sequencer	1	# MIDI sequencer
    250  1.2  garbled pseudo-device	rnd			# /dev/random and in-kernel generator
    251  1.2  garbled #options 	RND_COM			# use "com" randomness as well
    252  1.2  garbled pseudo-device	clockctl		# user control of clock subsystem
    253  1.2  garbled 
    254  1.2  garbled # a pseudo device needed for Coda	# also needs CODA (above)
    255  1.2  garbled #pseudo-device	vcoda		4	# coda minicache <-> venus comm.
    256  1.2  garbled 
    257  1.2  garbled # wscons pseudo-devices
    258  1.2  garbled #pseudo-device	wsmux			# mouse & keyboard multiplexor
    259  1.2  garbled #pseudo-device	wsfont
    260