Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.87
      1 # $NetBSD: GENERIC,v 1.87 2013/04/27 18:19:45 christos Exp $
      2 #
      3 # GENERIC machine description file
      4 # 
      5 # This machine description file is used to generate the default NetBSD
      6 # kernel.  The generic kernel does not include all options, subsystems
      7 # and device drivers, but should be useful for most applications.
      8 #
      9 # The machine description file can be customised for your specific
     10 # machine to reduce the kernel size and improve its performance.
     11 #
     12 # For further information on compiling NetBSD kernels, see the config(8)
     13 # man page.
     14 #
     15 # For further information on hardware support for this architecture, see
     16 # the intro(4) man page.  For further information about kernel options
     17 # for this architecture, see the options(4) man page.  For an explanation
     18 # of each device driver in this file see the section 4 man page for the
     19 # device.
     20 
     21 include		"arch/mvme68k/conf/std.mvme68k"
     22 
     23 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24 
     25 #ident 		"GENERIC-$Revision: 1.87 $"
     26 
     27 # Boards this kernel supports
     28 options 	MVME147
     29 options 	MVME162
     30 options 	MVME167
     31 options 	MVME172
     32 options 	MVME177
     33 
     34 maxusers	4
     35 
     36 # Needed on m68040 boards to emulate some missing FP instructions
     37 options 	FPSP
     38 
     39 # Needed on m68060 boards
     40 options 	M060SP
     41 
     42 #options 	DDB
     43 #options 	DIAGNOSTIC
     44 #options 	DEBUG
     45 
     46 #options 	SYSVSHM
     47 options 	KTRACE
     48 options 	COMPAT_43
     49 
     50 options 	USERCONF	# userconf(4) support
     51 #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     52 options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     53 
     54 # Enable experimental buffer queue strategy for better responsiveness under 
     55 # high disk I/O load. Use it with caution - it's not proven to be stable yet.
     56 #options 	BUFQ_READPRIO
     57 #options 	BUFQ_PRIOCSCAN
     58 
     59 file-system 	FFS
     60 file-system 	NFS
     61 file-system 	KERNFS
     62 file-system 	MFS
     63 file-system 	CD9660
     64 #file-system	MSDOSFS
     65 #file-system	UNION
     66 file-system	PTYFS		# /dev/pts/N support
     67 file-system	TMPFS		# Efficient memory file-system
     68 #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
     69 
     70 options 	NFSSERVER
     71 #options 	FFS_EI		# FFS Endian Independent support
     72 options 	WAPBL		# File system journaling support
     73 options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     74 #options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
     75 
     76 # Networking options
     77 options 	INET
     78 options 	INET6		# IPV6
     79 #options 	IPSEC		# IP security
     80 #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
     81 #options 	IPSEC_DEBUG	# debug for IP security
     82 #options 	GATEWAY		# IP packet forwarding
     83 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     84 
     85 #options 	ALTQ		# Manipulate network interfaces' output queues
     86 #options 	ALTQ_BLUE	# Stochastic Fair Blue
     87 #options 	ALTQ_CBQ	# Class-Based Queueing
     88 #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
     89 #options 	ALTQ_FIFOQ	# First-In First-Out Queue
     90 #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
     91 #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
     92 #options 	ALTQ_LOCALQ	# Local queueing discipline
     93 #options 	ALTQ_PRIQ	# Priority Queueing
     94 #options 	ALTQ_RED	# Random Early Detection
     95 #options 	ALTQ_RIO	# RED with IN/OUT
     96 #options 	ALTQ_WFQ	# Weighted Fair Queueing
     97 
     98 options 	COMPAT_AOUT_M68K	# compatibility with NetBSD/m68k a.out
     99 options 	COMPAT_09
    100 options 	COMPAT_10
    101 options 	COMPAT_11
    102 options 	COMPAT_12
    103 options 	COMPAT_13
    104 options 	COMPAT_14
    105 options 	COMPAT_15
    106 options 	COMPAT_16
    107 options 	COMPAT_20
    108 options 	COMPAT_30	# NetBSD 3.0 compatibility.
    109 options 	COMPAT_40	# NetBSD 4.0 compatibility.
    110 options 	COMPAT_50	# NetBSD 5.0 compatibility.
    111 options 	COMPAT_60	# NetBSD 6.0 compatibility.
    112 #options 	COMPAT_SUNOS
    113 #options 	COMPAT_M68K4K	# compatibility with NetBSD/m68k4k binaries
    114 #options 	COMPAT_LINUX	# compatibility with Linux/m68k binaries
    115 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
    116 options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    117 
    118 ## force NFS root and swap
    119 #config	netbsd		root on ? type nfs
    120 ## "generic" boot (put root on boot device)
    121 config netbsd		root on ? type ?
    122 
    123 # Which protocol to use when booting over NFS
    124 options 	NFS_BOOT_DHCP		# Diskless client w/ dhcp
    125 options 	NFS_BOOT_BOOTP		# Diskless client w/ bootp
    126 options 	NFS_BOOT_BOOTPARAM	# Diskless client w/ bootparamd
    127 
    128 #
    129 # accept filters
    130 pseudo-device   accf_data		# "dataready" accept filter
    131 pseudo-device   accf_http		# "httpready" accept filter
    132 
    133 pseudo-device	sl
    134 pseudo-device	ppp 
    135 pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    136 pseudo-device	loop
    137 pseudo-device	bpfilter
    138 #pseudo-device	carp			# Common Address Redundancy Protocol
    139 pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    140 #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    141 pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    142 pseudo-device	vlan			# IEEE 802.1q encapsulation
    143 pseudo-device	bridge			# simple inter-network bridging
    144 #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    145 pseudo-device	agr			# IEEE 802.3ad link aggregation
    146 pseudo-device	pty			# pseudo-terminals
    147 #pseudo-device	cgd			# cryptographic disk devices
    148 pseudo-device	vnd 
    149 #options 	VND_COMPRESSION		# compressed vnd(4)
    150 pseudo-device	fss			# file system snapshot device
    151 pseudo-device	clockctl		# user control of clock subsystem
    152 pseudo-device	ksyms			# /dev/ksyms
    153 #pseudo-device	pf			# PF packet filter
    154 #pseudo-device	pflog			# PF log if
    155 
    156 # random number generator pseudo-device
    157 #options 	RND_COM			# use "com" randomness as well (BROKEN)
    158 
    159 # Veriexec
    160 #
    161 # a pseudo device needed for veriexec
    162 #pseudo-device	veriexec		1
    163 #
    164 # Uncomment the fingerprint methods below that are desired. Note that
    165 # removing fingerprint methods will have almost no impact on the kernel
    166 # code size.
    167 #
    168 #options VERIFIED_EXEC_FP_RMD160
    169 #options VERIFIED_EXEC_FP_SHA256
    170 #options VERIFIED_EXEC_FP_SHA384
    171 #options VERIFIED_EXEC_FP_SHA512
    172 #options VERIFIED_EXEC_FP_SHA1
    173 #options VERIFIED_EXEC_FP_MD5
    174 
    175 mainbus0	at root
    176 
    177 # MVME147 specific devices
    178 pcc0		at mainbus0
    179 vmepcc0 	at pcc?
    180 clock0		at pcc? ipl 5
    181 zsc*		at pcc? ipl 4
    182 le0		at pcc? ipl 3
    183 wdsc0		at pcc? ipl 2
    184 lpt0		at pcc? ipl 1
    185 
    186 # MVME16x and MVME17x shared devices
    187 pcctwo0		at mainbus0
    188 vmetwo0 	at mainbus0
    189 memc*		at mainbus0
    190 clock0		at pcctwo? ipl 5
    191 ie0		at pcctwo? ipl 3
    192 osiop0		at pcctwo? ipl 2
    193 
    194 # MVME162/MVME172 specific devices
    195 zsc*		at pcctwo? ipl 4
    196 
    197 # MVME167/MVME177 specific devices
    198 clmpcc0		at pcctwo? ipl 4
    199 lpt0		at pcctwo? ipl 1
    200 
    201 # Common front-end for MVME147 and MVME162 `zs' device
    202 zstty*		at zsc? channel ?
    203 
    204 # MI VMEbus Interface
    205 vme0		at vmepcc0
    206 vme0		at vmetwo0
    207 
    208 # Example VMEbus device
    209 #foo0		at vme0 addr 0x00ef0000 irq 3 vect 0x80
    210 
    211 scsibus*	at wdsc?
    212 scsibus*	at osiop?
    213 
    214 sd*		at scsibus? target ? lun ?
    215 st*		at scsibus? target ? lun ?
    216 cd*		at scsibus? target ? lun ?
    217 #ch*		at scsibus? target ? lun ?
    218 #ss*		at scsibus? target ? lun ?	# SCSI scanners
    219 #uk*		at scsibus? target ? lun ?	# SCSI unknown
    220