Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.15
      1 #	$NetBSD: INSTALL,v 1.15 2001/05/13 15:37:28 matt Exp $
      2 #
      3 # INSTALL kernel; all supported devices but nothing fancy.
      4 #
      5 
      6 include		"arch/vax/conf/std.vax"
      7 
      8 makeoptions     COPTS="-Os"             # Optimise for space. Implies -O2
      9 
     10 # Here are all different supported CPU types listed.
     11 options 	"VAX8600"
     12 options 	"VAX8200"
     13 options 	"VAX780"
     14 options 	"VAX750"
     15 options 	"VAX630"	# MV II
     16 options 	"VAX640"	# MV 3400
     17 options 	"VAX650"	# MV III, 3600, 3800, 3900
     18 options 	"VAX660"	# VAX 4000/200
     19 options 	"VAX670"	# VAX 4000/300
     20 options 	"VAX680"	# VAX 4000/[45]00
     21 options 	"VAX410"	# VS 2000
     22 options 	"VAX43"		# VS 3100/76
     23 options 	"VAX46"		# VS 4000/60
     24 options 	"VAX48"		# VS 4000 VLC
     25 options 	"VAX49"		# VS 4000/90
     26 options 	"VAX53"		# VAX 4000/105A
     27 
     28 # Max users on system; this is just a hint
     29 maxusers	8
     30 
     31 # Enable the hooks used for initializing the root memory-disk.
     32 options 	MEMORY_DISK_HOOKS
     33 options 	MEMORY_DISK_IS_ROOT     # force root on memory disk
     34 options 	MEMORY_DISK_SERVER=0    # no userspace memory disk support
     35 options 	MINIROOTSIZE=2276       # size of memory disk, in blocks
     36 
     37 
     38 # Kernel compiled-in symbolic debugger & system call tracer
     39 #options 	DDB
     40 #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     41 #options 	KTRACE
     42 #options 	DIAGNOSTIC,DEBUG,KMEMSTATS,PMAPDEBUG,TRAPDEBUG
     43 
     44 #options 	SCSIVERBOSE		# Verbose SCSI errors
     45 
     46 # Network support
     47 #options 	GATEWAY
     48 options         INET
     49 
     50 # File systems
     51 file-system 	FFS
     52 #file-system 	LFS
     53 #file-system 	MFS
     54 file-system 	NFS
     55 #file-system 	FDESC
     56 file-system 	KERNFS
     57 #file-system 	NULLFS
     58 #file-system 	PROCFS
     59 #file-system 	UMAPFS
     60 #file-system 	UNION
     61 file-system 	CD9660
     62 
     63 # Filesystem options
     64 #options 	QUOTA
     65 #options 	FFS_EI		# FFS Endian Independant support
     66 #options 	NFSSERVER
     67 #options 	NFS_V2_ONLY	# Exclude NFS3 and NQNFS code to save space
     68 #options 	VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
     69 
     70 #options 	NFS_BOOT_BOOTP,NFS_BOOT_DHCP	# Use bootp <> dhcp
     71 #options 	NFS_BOOT_BOOTPARAM	# Use the Sun way for netbooting.
     72 
     73 # WS console uses VT100 terminal emulation
     74 options 	WSEMUL_VT100
     75 #options 	WSDISPLAY_DEFAULTSCREENS=8
     76 
     77 # System V shared memory & semaphores support.
     78 #options 	SYSVMSG
     79 #options 	SYSVSEM
     80 #options 	SYSVSHM
     81 
     82 # Old compat stuff; needed to run 4.3BSD Reno programs.
     83 # Note that if COMPAT_ULTRIX is set, you lose compatibility with
     84 # 4.3BSD Reno programs and get Ultrix compatibility instead.
     85 # (They cannot coexist).
     86 #options 	COMPAT_VAX1K	# Must be present to run pre-1.4 binaries.
     87 #options 	COMPAT_43
     88 #options 	COMPAT_09
     89 #options 	COMPAT_10
     90 #options 	COMPAT_11
     91 #options 	COMPAT_12
     92 #options 	COMPAT_13
     93 options 	COMPAT_14
     94 options 	COMPAT_15
     95 #options 	COMPAT_ULTRIX
     96 
     97 #options 	LKM
     98 
     99 # Kernel(s) to compile
    100 config          netbsd root on ? type ?
    101 
    102 mainbus0	at root
    103 
    104 # Devices directly attached to mainbus.
    105 sbi*		at mainbus0	# SBI's, VAX-11/78[05] main bus
    106 bi*		at mainbus0	# VAXBI bus
    107 abus0		at mainbus0	# 8600 internal bus.
    108 cmi0		at mainbus0	# 11/750 internal bus.
    109 vsbus0		at mainbus0	# Internal "virtual" VAXstation bus
    110 ibus0		at mainbus0	# Internal MicroVAX bus
    111 
    112 # Devices connected at VAXBI
    113 cpu0		at bi? node?	# KA820/KA825 cpu
    114 cpu*		at bi? node?
    115 mem*		at bi? node?	# Memory subsystems
    116 #uba*		at bi? node?	# DWBUA BI-Unibus adapter
    117 #ni*		at bi? node?	# DEBNA/DEBNT ethernet adapter
    118 kdb*		at bi? node?	# KDB50 MSCP disk ctlr
    119 mscpbus*	at kdb?
    120 
    121 # Devices connected at cmi
    122 mem*		at cmi? tr?	# Memory subsystems
    123 uba*		at cmi? tr?	# Unibus adapters
    124 mba*		at cmi? tr?	# Massbus adapters
    125 
    126 # Devices connected at abus
    127 sbi*		at abus0
    128 
    129 # Devices connected at sbi
    130 mem*		at sbi? tr?	# Memory subsystems
    131 uba*		at sbi? tr?	# Unibus adapters
    132 mba*		at sbi? tr?	# Massbus adapters
    133 
    134 # Devices on Massbus adapters
    135 hp*		at mba? drive?	# RM/RP disk drives
    136 
    137 # Devices on internal MicroVAX bus
    138 uba0		at ibus?	# Q-Bus adapter
    139 dz0		at ibus?	# VAX 4000/105A serial lines
    140 #asc0		at ibus?	# VAX 4000/105A SCSI ctlr
    141 
    142 # Disk controllers at Unibus
    143 uda0		at uba?	csr 0172150	# UDA50/RQDX?
    144 uda1		at uba?	csr 0160334
    145 mscpbus*	at uda?
    146 
    147 # Tape drivers
    148 mtc0		at uba? csr 0174500	# Tape MSCP ctlr
    149 mscpbus*	at mtc?
    150 
    151 # MSCP devices
    152 ra*		at mscpbus? drive?	# MSCP disk
    153 rx*		at mscpbus? drive?	# MSCP floppy
    154 mt*		at mscpbus? drive?	# MSCP tape
    155 
    156 # Unibus tapes
    157 #ts0		at uba? csr 0172520	# TS11/TSV05 tape.
    158 
    159 # VS2000 builtin MFM controller (HDC9224)
    160 #hdc0		at vsbus0		# The strange builtin MFM controller
    161 #rd*		at hdc0 drive?		# The RD disk subsystem on VS2000
    162 
    163 # SCSI controllers.
    164 asc0		at vsbus0 csr 0x200c0080 # VS4000/{60,VLC} SCSI-controller
    165 asc0		at vsbus0 csr 0x26000080 # VS4000/90 SCSI-controller
    166 si0		at vsbus0 csr 0x200c0080 # VS2000/3100 SCSI-controller (5380)
    167 si1		at vsbus0 csr 0x200c0180 # VS2000/3100 SCSI-controller (5380)
    168 scsibus*	at asc?
    169 scsibus*	at si?
    170 
    171 # SCSI devices
    172 sd*		at scsibus? target? lun?
    173 st*		at scsibus? target? lun?
    174 cd*		at scsibus? target? lun?
    175 #ch*		at scsibus? target? lun?
    176 #ss*		at scsibus? target? lun?
    177 #uk*		at scsibus? target? lun?
    178 
    179 # Ethernet cards
    180 de0		at uba? csr 0174510	# DELUA/DEUNA
    181 qe0		at uba? csr 0174440	# DEQNA/DELQA
    182 qe1		at uba? csr 0174460	# DEQNA/DELQA
    183 le0		at vsbus0 csr 0x200e0000# LANCE
    184 ze0		at vsbus0 csr 0x20008000# SGEC ethernet
    185 ze0		at ibus0		# SGEC on-board ethernet
    186 
    187 # Terminal lines
    188 dhu0		at uba? csr 0160440	# DHU-11
    189 dz0		at uba? csr 0160100	# DZ-11
    190 dz0		at vsbus0 csr 0x200a0000# DC-367
    191 dz0		at vsbus0 csr 0x25000000# VS4000/90
    192 dl0		at uba? csr 0176500	# DL-11
    193 
    194 # VAXstation graphics support
    195 #qd0		at uba? csr 0177400
    196 smg0		at vsbus0 csr 0x200f0000# Small monochrome display ctlr.
    197 wsdisplay0	at smg0			# display device driver.
    198 lkc0		at dz0			# Keyboard LK201
    199 
    200 pseudo-device   loop	1
    201 pseudo-device	pty		2	# pseudo-terminals (Sysinst needs two)
    202 #pseudo-device	bpfilter 8	# Not supported by de yet.
    203 #pseudo-device	tun	2
    204 #pseudo-device	gre		2	# generic L3 over IP tunnel
    205 #pseudo-device	tb	1
    206 #pseudo-device	vnd	4
    207 #pseudo-device	ccd	4
    208 #pseudo-device	raid	4		# RAIDframe disk driver
    209 #pseudo-device	rnd			# /dev/random and in-kernel generator
    210 pseudo-device	md	1
    211