Home | History | Annotate | Line # | Download | only in conf
INSTALL64 revision 1.11.22.1
      1  1.11.22.1        ad # 	$NetBSD: INSTALL64,v 1.11.22.1 2020/01/25 22:38:42 ad Exp $
      2        1.2      matt #
      3        1.2      matt # Distribution	install kernel (any model)
      4        1.2      matt #    netbsd:	cut-down kernel for miniroots.
      5        1.2      matt #    nfsnetbsd:	root on NFS to boot diskless for installation,
      6        1.2      matt #	disk drivers for labelling disks and installation on local disk.
      7        1.2      matt #
      8        1.2      matt #    Kernel must be under 1Mbyte to net-boot on 3100s with old PROMs.
      9        1.2      matt #
     10        1.2      matt #
     11        1.2      matt include		"arch/pmax/conf/std.pmax64"
     12        1.2      matt 
     13        1.2      matt #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     14        1.2      matt 
     15        1.2      matt makeoptions	COPTS="-Os -mmemcpy"	# Optimise for space. Implies -O2
     16        1.2      matt 
     17        1.2      matt maxusers	8
     18        1.2      matt 
     19        1.2      matt # CPU options
     20        1.2      matt options 	MIPS3			# R4000/R4400 support
     21        1.2      matt 
     22        1.2      matt 
     23        1.2      matt # Support for specific models of DECstation
     24        1.2      matt options 	DEC_MAXINE		# kn02ca: 5000/xx (Personal DECstation)
     25        1.2      matt options 	DEC_3MIN		#  5000/1xx (kn02ba), 5000/150 (kn04)
     26        1.2      matt options 	DEC_3MAXPLUS		#  5000/240 (kn03), 5000/260 (kn05)
     27        1.2      matt 
     28        1.2      matt # Standard system options
     29        1.2      matt #options 	DIAGNOSTIC		# extra kernel debugging checks
     30        1.2      matt #options 	DEBUG			# extra kernel debugging support
     31        1.2      matt #options 	KTRACE			# system call tracing support
     32        1.2      matt #options 	LKM			# loadable kernel modules
     33        1.2      matt options 	USERCONF		# userconf(4) support
     34        1.2      matt options 	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
     35        1.2      matt #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     36        1.2      matt 
     37        1.2      matt #options 	NTP			# network time protocol
     38        1.2      matt 
     39        1.2      matt 
     40        1.2      matt # File systems
     41        1.2      matt file-system 	FFS			# BSD fast filesystem
     42        1.2      matt file-system 	NFS			# Sun NFS-compatible filesystem (client)
     43        1.2      matt file-system 	CD9660			# ISO 9660 + Rock Ridge file system
     44        1.2      matt file-system 	KERNFS			# kernel data-structure filesystem
     45        1.2      matt #file-system	PTYFS			# /dev/pts/N support
     46        1.2      matt 
     47        1.2      matt # Filesystem options
     48        1.2      matt #options 	NFS_V2_ONLY		# Exclude NFS3 code to save space
     49        1.2      matt options 	FFS_NO_SNAPSHOT		# No FFS snapshot support
     50        1.5  dholland options 	WAPBL			# File system journaling support
     51        1.2      matt 
     52        1.2      matt 
     53        1.2      matt # Networking options
     54        1.2      matt options 	INET			# Internet protocols
     55        1.2      matt #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     56        1.2      matt 
     57        1.8     alnsn # JIT compiler for bpfilter
     58        1.8     alnsn #options	SLJIT
     59        1.8     alnsn #options	BPFJIT
     60        1.8     alnsn 
     61        1.2      matt 
     62        1.2      matt # Workstation console options
     63        1.2      matt options 	FONT_BOLD8x16		# Font for fb devices
     64        1.2      matt options 	FONT_GALLANT12x22
     65        1.2      matt 
     66        1.2      matt options		WSEMUL_VT100
     67        1.6       abs options 	WSDISPLAY_DEFAULTSCREENS=1
     68        1.6       abs #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
     69        1.2      matt options		WS_KERNEL_FG=WSCOL_GREEN
     70        1.2      matt options		WS_KERNEL_BG=WSCOL_BLACK
     71        1.2      matt 
     72        1.2      matt # Disable kernel security levels.  Needed for X with a PX or PXG.
     73        1.2      matt #options       INSECURE
     74        1.2      matt 
     75        1.2      matt # pmax specific
     76        1.2      matt options 	HZ=256		# RTC rate required
     77        1.2      matt 
     78        1.2      matt options 	NFS_BOOT_DHCP	# superset of BOOTP
     79        1.2      matt 
     80        1.2      matt config		netbsd		root on ? type ?
     81        1.2      matt config		nfsnetbsd	root on ? type nfs
     82        1.2      matt 
     83        1.2      matt mainbus0	at root
     84        1.2      matt cpu*		at mainbus0
     85        1.2      matt 
     86        1.2      matt ## Peripheral Bus Support (for devices to attach to)
     87        1.2      matt ## ----------------------------------------------------------------------------
     88        1.2      matt 
     89        1.2      matt # TURBOchannel bus support
     90        1.2      matt tc*	at	mainbus0
     91        1.2      matt 
     92        1.2      matt # 3MIN, 3MAX+ and MAXINE have IOASIC in system slot
     93        1.2      matt ioasic0	at	tc?
     94        1.2      matt mcclock* at	ioasic? offset ?	# DS1287 RTC
     95        1.2      matt le*	at	ioasic? offset ?	# LANCE
     96        1.2      matt dt*	at      ioasic? offset ?        # MAXINE kbd and mouse
     97        1.2      matt #bba*	at	ioasic? offset ?	# MAXINE baseboard audio
     98        1.2      matt #fdc	at	ioasic? offset ?	# MAXINE floppy disk (not supported)
     99        1.2      matt zsc0	at	ioasic? offset 0x100000 # Z85C30
    100        1.2      matt zsc1	at	ioasic? offset 0x180000 # Z85C30
    101        1.2      matt asc*	at	ioasic? offset ?	# NCR53C94 SCSI with IOASIC
    102        1.2      matt 
    103        1.2      matt zstty*	at	zsc? channel ?		# serial ports on B/A channels
    104        1.2      matt lkkbd*	at	zsc1 channel ?		# keyboard port on A channels
    105        1.2      matt #vsms*	at	zsc0 channel ?		# mouse port on A channels   
    106        1.2      matt 
    107        1.2      matt #audio*	at	bba?
    108        1.2      matt 
    109       1.11  christos #spkr*	at	audio?			# PC speaker (synthesized)
    110        1.9       nat 
    111        1.2      matt dtkbd*	at	dt? addr ?
    112        1.2      matt #dtms*	at	dt? addr ?
    113        1.2      matt 
    114        1.2      matt # TURBOchannel devices
    115        1.2      matt mfb*	at	tc? slot ? offset ?	# PMAG-A MX Monochrome Framebuffer
    116        1.2      matt cfb*	at	tc? slot ? offset ?	# PMAG-B CX Color Framebuffer
    117        1.2      matt tfb*	at	tc? slot ? offset ?	# PMAG-RO TX True Color Framebuffer
    118        1.2      matt sfb*	at	tc? slot ? offset ?	# PMAGB-B HX Smart Framebuffer
    119        1.2      matt px*	at	tc? slot ? offset ?	# PMAG-C 2D accelerator
    120        1.2      matt pxg*	at	tc? slot ? offset ?	# PMAG-D,E,F 3D accelerator
    121        1.2      matt #sfbp*	at	tc? slot ? offset ?	# PMAGD HX+ Smart Framebuffer
    122        1.2      matt xcfb*	at	tc? slot ? offset ?	# PMAG-DV Color Framebuffer at MAXINE
    123        1.2      matt asc*	at	tc? slot ? offset ?	# PMAZ-A single channel SCSI
    124        1.2      matt le*	at	tc? slot ? offset ?	# PMAD-A LANCE
    125        1.2      matt tcds*	at	tc? slot ? offset ?	# PMAZB/PMAZC dual channel SCSI
    126        1.2      matt asc*	at	tcds? chip ?
    127        1.2      matt 
    128        1.2      matt # Workstation console
    129        1.2      matt 
    130        1.2      matt wskbd*		at	lkkbd? console ?
    131        1.2      matt wskbd*		at	dtkbd? console ?
    132        1.2      matt #wsmouse*	at	vsms?
    133        1.2      matt #wsmouse*	at	dtms?
    134        1.2      matt 
    135        1.2      matt wsdisplay*	at	mfb?
    136        1.2      matt wsdisplay*	at	cfb?
    137        1.2      matt wsdisplay*	at	px?
    138        1.2      matt wsdisplay*	at	pxg?
    139        1.2      matt wsdisplay*	at	sfb?
    140        1.2      matt #wsdisplay*	at	sfbp?
    141        1.2      matt wsdisplay*	at	tfb?
    142        1.2      matt wsdisplay*	at	xcfb?
    143        1.2      matt 
    144        1.2      matt 
    145        1.2      matt #########################################################################
    146        1.2      matt # SCSI configuration							#
    147        1.2      matt #########################################################################
    148        1.2      matt 
    149        1.2      matt scsibus* at asc?
    150        1.2      matt sd*	at scsibus? target ? lun ?	# SCSI disks
    151        1.2      matt st*	at scsibus? target ? lun ?	# SCSI tapes
    152        1.2      matt cd*	at scsibus? target ? lun ?	# SCSI CD-ROMs
    153        1.2      matt 
    154        1.2      matt #########################################################################
    155        1.2      matt # Pseudo-devices							#
    156        1.2      matt #########################################################################
    157        1.2      matt 
    158        1.7  christos pseudo-device	pty			# pseudo-terminals
    159        1.2      matt pseudo-device	bpfilter		# packet filter ports
    160        1.2      matt pseudo-device	loop
    161        1.7  christos pseudo-device	ccd		 	# concatenated disks
    162        1.3     pooka #pseudo-device	fss		 	# file system snapshot device
    163        1.2      matt #pseudo-device	wsfont			# wsfont control device
    164        1.2      matt pseudo-device	wsmux			# wsmux control device
    165