Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.41
      1 # $NetBSD: INSTALL,v 1.41 2011/06/30 20:09:37 wiz Exp $
      2 
      3 # INSTALL Sun2 (2/120, 2/170, 2/50, ...)
      4 
      5 include "arch/sun2/conf/std.sun2"
      6 
      7 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      8 
      9 #ident 		"INSTALL-$Revision: 1.41 $"
     10 
     11 makeoptions	COPTS="-Os"	# optimize for size
     12 
     13 # Machines to be supported by this kernel
     14 #options 	FPU_EMULATE
     15 
     16 # Needs to be set per system.  i.e change these as you see fit
     17 maxusers	2
     18 
     19 # Standard system options
     20 #options 	KTRACE		# system call tracing
     21 #options 	SYSVMSG		# System V message queues
     22 #options 	SYSVSEM		# System V semaphores
     23 #options 	SYSVSHM		# System V shared memory
     24 #options 	INSECURE	# disable kernel security level
     25 options		PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
     26 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     27 
     28 # Which kernel debugger?  Uncomment either this:
     29 #options 	DDB
     30 # ... or these for KGDB (gdb remote target)
     31 #makeoptions	DEBUG="-g"	# debugging symbols for gdb
     32 #options 	KGDB
     33 #options 	KGDB_DEV=0x0C00	# ttya=0C00 ttyb=0C01
     34 
     35 # Other debugging options
     36 #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     37 #options 	DEBUG		# kernel debugging code
     38 #options 	DIAGNOSTIC	# extra kernel sanity checking
     39 options 	USERCONF	# userconf(4) support
     40 #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     41 #options 	PMAP_DEBUG
     42 #options 	SCSIDEBUG
     43 #options 	SCSIVERBOSE		# Verbose SCSI errors
     44 
     45 # Compatibility options
     46 #options 	COMPAT_SUNOS	# can run SunOS 4.1.1 executables
     47 #options 	COMPAT_43	# and 4.3BSD and ...
     48 #options 	COMPAT_AOUT_M68K # support for NetBSD a.out executables
     49 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     50 options 	EXEC_AOUT	# support for a.out executables
     51 options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     52 
     53 # Filesystem options
     54 file-system	FFS		# Berkeley Fast Filesystem
     55 file-system	NFS		# Sun NFS client support
     56 file-system	CD9660		# ISO 9660 + Rock Ridge file system
     57 #file-system	FDESC		# /dev/fd/*
     58 file-system	KERNFS		# /kern
     59 #file-system	NULLFS		# loopback file system
     60 #file-system	OVERLAY		# overlay file system
     61 #file-system	PROCFS		# /proc
     62 #file-system	UNION		# union file system
     63 #file-system	MFS		# memory-based filesystem
     64 #file-system	PTYFS		# /dev/pts/N support
     65 
     66 #options 	NFSSERVER	# nfs server support
     67 #options 	QUOTA		# legacy UFS quotas
     68 #options 	QUOTA2		# new, in-filesystem UFS quotas
     69 #options 	FFS_EI		# FFS Endian Independent support
     70 options 	NFS_V2_ONLY	# Exclude NFS3 code to save space
     71 options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     72 
     73 # Networking options
     74 options 	INET		# IP protocol stack support
     75 #options 	INET6		# IPV6
     76 #options 	IPSEC		# IP security
     77 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     78 #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
     79 #options 	IPSEC_DEBUG	# debug for IP security
     80 #options 	GATEWAY		# IP packet forwarding
     81 #options 	ISO,TPIP	# OSI networking
     82 #options 	EON		# OSI tunneling over IP
     83 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks.
     84 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     85 
     86 # Work-around for root on slow servers (insurance...)
     87 options 	NFS_BOOT_RWSIZE=1024
     88 options 	NFS_BOOT_BOOTPARAM
     89 
     90 config		netbsd root on ? type ?
     91 
     92 #### Main bus.
     93 mainbus0 at root
     94 
     95 #### Bus types.
     96 
     97 obio0	at mainbus? 		# all Sun-2
     98 obmem0	at mainbus?		# all Sun-2
     99 mbmem0	at mainbus?		# 2/120, 2/170
    100 mbio0	at mainbus?		# 2/120, 2/170
    101 sun68kvme0	at mainbus?	# 2/50, 2/130, 2/160
    102 vme0	at sun68kvme0		# mi VME attachment
    103 
    104 #### Standard system devices.
    105 
    106 ## The AM9513 clock chip.
    107 clock0	at obio0 addr 0x002800	# 2/120, 2/170
    108 clock0	at obio0 addr 0x7f2800	# 2/50, 2/130, 2/160
    109 
    110 ## The MM58167 time-of-day chip.
    111 tod0	at obio0 addr 0x003800	# 2/120, 2/170
    112 tod0	at vme0 addr 0x200800	# 2/50, 2/130, 2/160
    113 
    114 #### Serial port configuration.
    115 
    116 ## Zilog 8530 serial chips.  Each has two channels.
    117 ## zs0 is ttya and ttyb.  zs1 is the keyboard and mouse.
    118 ## zs0 is REQUIRED to use KGDB.
    119 zs0	at obio0 addr 0x002000	# 2/120, 2/170
    120 zs0	at obio0 addr 0x7f2000	# 2/50
    121 zs1	at obmem0 addr 0x780000	# 2/120, 2/170
    122 zs1	at obio0 addr 0x7f1800	# 2/50
    123 #zs2	at mbmem0 addr 0x080800	# 2/120, 2/170 (first sc SCSI)
    124 #zs3	at mbmem0 addr 0x081000	# 2/120, 2/170 (first sc SCSI)
    125 #zs4	at mbmem0 addr 0x084800	# 2/120, 2/170 (second sc SCSI)
    126 #zs5	at mbmem0 addr 0x085000	# 2/120, 2/170 (second sc SCSI)
    127 zstty*	at zs? channel ?	# ttya
    128 kbd0	at zstty?		# keyboard
    129 #ms0	at zstty?		# mouse
    130 
    131 #### Disk controllers and disks.
    132 
    133 ## PAL+logic-based "Sun SCSI 2" Multibus/VME SCSI controller.
    134 ## This driver has several flags which may be enabled using
    135 ## the "flags" directive.  Valid flags are:
    136 ##
    137 ## 0x0ff		Set (1<<target) to disable parity checking
    138 ## 0x100		Set this bit to disable DMA interrupts (poll)
    139 ## 0x200		Set this bit to disable DMA entirely (use PIO)
    140 ##
    141 ## For example: "flags 0x10f" would disable DMA interrupts,
    142 ## and disable parity for targets 0-3
    143 
    144 sc0	at mbmem0 addr 0x80000 ipl 2 flags 0xff
    145 sc0	at vme0 addr 0x200000 irq 2 vect 0x40 flags 0xff
    146 sc1	at mbmem0 addr 0x84000 ipl 2 flags 0xff
    147 
    148 ## NCR5380-based "Sun SCSI 3" VME SCSI controller.
    149 ## This driver has several flags which may be enabled by OR'ing
    150 ## the values and using the "flags" directive.
    151 ## Valid flags are:
    152 ##
    153 ##	0x01		Use DMA (may be polled)
    154 ##	0x02		Use DMA completion interrupts
    155 ##	0x04		Allow disconnect/reselect
    156 ##
    157 ## E.g. the following would enable DMA, interrupts, and reselect:
    158 ## si0	at vme0 addr 0x200000 ipl 3 vect 0x40 flags 0x07
    159 ##
    160 ## By default, DMA is enabled in the driver.
    161 
    162 si0	at vme0 addr 0x200000 irq 2 vect 0x40
    163 
    164 ## These entries find devices on all SCSI busses and assign
    165 ## unit numbers dynamically.
    166 scsibus* at sc?
    167 scsibus* at si?
    168 sd*	at scsibus? target ? lun ?		# SCSI disks
    169 st*	at scsibus? target ? lun ?		# SCSI tapes
    170 cd*	at scsibus? target ? lun ?		# SCSI CD-ROMs
    171 #ch*	at scsibus? target ? lun ?		# SCSI changer devices
    172 #ss*	at scsibus? target ? lun ?		# SCSI scanners
    173 #ses*	at scsibus? target ? lun ?		# SCSI SES/SAF-TE
    174 #uk*	at scsibus? target ? lun ?		# unknown SCSI
    175 
    176 # support old SCSI devices that don't understand the INQUIRY command
    177 options 	SCSI_OLD_NOINQUIRY
    178 
    179 ## Xylogics 450 or 451 Multibus/VME SMD disk controllers and disks.
    180 #xyc0	at mbio0 addr 0xee40 ipl 2
    181 xyc0	at vme0 addr 0xee40 irq 2 vect 0x48
    182 #xyc1	at mbio0 addr 0xee48 ipl 2
    183 xyc1	at vme0 addr 0xee48 irq 2 vect 0x49
    184 xy*	at xyc? drive ?
    185 
    186 ## Memory-disk device.
    187 #pseudo-device	md		
    188 
    189 #### Network interfaces.
    190 
    191 ## Intel Ethernet (onboard, or Multibus/VME)
    192 ie0	at obio0 addr 0x7f0800 ipl 3		# 2/50
    193 ie0	at mbmem0 addr 0x88000 ipl 3
    194 ie1	at mbmem0 addr 0x8c000 ipl 3
    195 ## VME: the first [addr,len] pair specifies the device registers;
    196 ##	the second pair specifies the on-board memory buffer
    197 ie1	at vme0 addr 0xe88000,0xe00000 len -1,0x40000 irq 3 vect 0x75
    198 
    199 ## 3Com Ethernet (Multibus only)
    200 ec0	at mbmem0 addr 0xe0000 ipl 3
    201 ec1	at mbmem0 addr 0xe2000 ipl 3
    202 # limit NFS R/W size for poor ec(4) interfaces
    203 options 	NFS_RSIZE=1024,NFS_WSIZE=1024
    204 
    205 ## Frame buffers.
    206 
    207 ## Sun "bwtwo" black and white framebuffer.
    208 bwtwo0	at obmem0 addr 0x700000	# 2/120, 2/170
    209 bwtwo0	at obio0 addr 0x0	# 2/50
    210 
    211 ## PROM console driver -- if all else fails
    212 pcons0	at mainbus0			# PROM console
    213 
    214 #### Miscellaneous.
    215 pseudo-device	loop		1	# network loopback
    216 #pseudo-device	bpfilter		# packet filter
    217 #pseudo-device	sl			# CSLIP
    218 #pseudo-device	ppp			# PPP
    219 #pseudo-device	tun			# network tunneling over tty
    220 #pseudo-device	gre			# generic L3 over IP tunnel
    221 #pseudo-device	ipfilter		# ip filter
    222 #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    223 #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    224 #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    225 pseudo-device	rnd			# /dev/random and in-kernel generator
    226 
    227 pseudo-device	pty		4	# pseudo-terminals
    228 #pseudo-device	vnd			# paging to files
    229 #pseudo-device	ccd		4	# concatenated disks
    230 #pseudo-device	raid		4	# RAIDframe disk driver
    231 #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    232 #pseudo-device	fss			# file system snapshot device
    233