Home | History | Annotate | Line # | Download | only in conf
INSTALL64 revision 1.7
      1  1.7  christos # 	$NetBSD: INSTALL64,v 1.7 2013/04/27 18:19:48 christos 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.2      matt 
     58  1.2      matt # Workstation console options
     59  1.2      matt options 	FONT_BOLD8x16		# Font for fb devices
     60  1.2      matt options 	FONT_GALLANT12x22
     61  1.2      matt 
     62  1.2      matt options		WSEMUL_VT100
     63  1.6       abs options 	WSDISPLAY_DEFAULTSCREENS=1
     64  1.6       abs #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
     65  1.2      matt options		WS_KERNEL_FG=WSCOL_GREEN
     66  1.2      matt options		WS_KERNEL_BG=WSCOL_BLACK
     67  1.2      matt 
     68  1.2      matt # Disable kernel security levels.  Needed for X with a PX or PXG.
     69  1.2      matt #options       INSECURE
     70  1.2      matt 
     71  1.2      matt # pmax specific
     72  1.2      matt options 	HZ=256		# RTC rate required
     73  1.2      matt 
     74  1.2      matt options 	NFS_BOOT_DHCP	# superset of BOOTP
     75  1.2      matt 
     76  1.2      matt config		netbsd		root on ? type ?
     77  1.2      matt config		nfsnetbsd	root on ? type nfs
     78  1.2      matt 
     79  1.2      matt mainbus0	at root
     80  1.2      matt cpu*		at mainbus0
     81  1.2      matt 
     82  1.2      matt ## Peripheral Bus Support (for devices to attach to)
     83  1.2      matt ## ----------------------------------------------------------------------------
     84  1.2      matt 
     85  1.2      matt # TURBOchannel bus support
     86  1.2      matt tc*	at	mainbus0
     87  1.2      matt 
     88  1.2      matt # 3MIN, 3MAX+ and MAXINE have IOASIC in system slot
     89  1.2      matt ioasic0	at	tc?
     90  1.2      matt mcclock* at	ioasic? offset ?	# DS1287 RTC
     91  1.2      matt le*	at	ioasic? offset ?	# LANCE
     92  1.2      matt dt*	at      ioasic? offset ?        # MAXINE kbd and mouse
     93  1.2      matt #bba*	at	ioasic? offset ?	# MAXINE baseboard audio
     94  1.2      matt #fdc	at	ioasic? offset ?	# MAXINE floppy disk (not supported)
     95  1.2      matt zsc0	at	ioasic? offset 0x100000 # Z85C30
     96  1.2      matt zsc1	at	ioasic? offset 0x180000 # Z85C30
     97  1.2      matt asc*	at	ioasic? offset ?	# NCR53C94 SCSI with IOASIC
     98  1.2      matt 
     99  1.2      matt zstty*	at	zsc? channel ?		# serial ports on B/A channels
    100  1.2      matt lkkbd*	at	zsc1 channel ?		# keyboard port on A channels
    101  1.2      matt #vsms*	at	zsc0 channel ?		# mouse port on A channels   
    102  1.2      matt 
    103  1.2      matt #audio*	at	bba?
    104  1.2      matt 
    105  1.2      matt dtkbd*	at	dt? addr ?
    106  1.2      matt #dtms*	at	dt? addr ?
    107  1.2      matt 
    108  1.2      matt # TURBOchannel devices
    109  1.2      matt mfb*	at	tc? slot ? offset ?	# PMAG-A MX Monochrome Framebuffer
    110  1.2      matt cfb*	at	tc? slot ? offset ?	# PMAG-B CX Color Framebuffer
    111  1.2      matt tfb*	at	tc? slot ? offset ?	# PMAG-RO TX True Color Framebuffer
    112  1.2      matt sfb*	at	tc? slot ? offset ?	# PMAGB-B HX Smart Framebuffer
    113  1.2      matt px*	at	tc? slot ? offset ?	# PMAG-C 2D accelerator
    114  1.2      matt pxg*	at	tc? slot ? offset ?	# PMAG-D,E,F 3D accelerator
    115  1.2      matt #sfbp*	at	tc? slot ? offset ?	# PMAGD HX+ Smart Framebuffer
    116  1.2      matt xcfb*	at	tc? slot ? offset ?	# PMAG-DV Color Framebuffer at MAXINE
    117  1.2      matt asc*	at	tc? slot ? offset ?	# PMAZ-A single channel SCSI
    118  1.2      matt le*	at	tc? slot ? offset ?	# PMAD-A LANCE
    119  1.2      matt fta*	at	tc? slot ? offset ?	# PMAF-F FDDI
    120  1.2      matt tcds*	at	tc? slot ? offset ?	# PMAZB/PMAZC dual channel SCSI
    121  1.2      matt asc*	at	tcds? chip ?
    122  1.2      matt 
    123  1.2      matt # Workstation console
    124  1.2      matt 
    125  1.2      matt wskbd*		at	lkkbd? console ?
    126  1.2      matt wskbd*		at	dtkbd? console ?
    127  1.2      matt #wsmouse*	at	vsms?
    128  1.2      matt #wsmouse*	at	dtms?
    129  1.2      matt 
    130  1.2      matt wsdisplay*	at	mfb?
    131  1.2      matt wsdisplay*	at	cfb?
    132  1.2      matt wsdisplay*	at	px?
    133  1.2      matt wsdisplay*	at	pxg?
    134  1.2      matt wsdisplay*	at	sfb?
    135  1.2      matt #wsdisplay*	at	sfbp?
    136  1.2      matt wsdisplay*	at	tfb?
    137  1.2      matt wsdisplay*	at	xcfb?
    138  1.2      matt 
    139  1.2      matt 
    140  1.2      matt #########################################################################
    141  1.2      matt # SCSI configuration							#
    142  1.2      matt #########################################################################
    143  1.2      matt 
    144  1.2      matt scsibus* at asc?
    145  1.2      matt sd*	at scsibus? target ? lun ?	# SCSI disks
    146  1.2      matt st*	at scsibus? target ? lun ?	# SCSI tapes
    147  1.2      matt cd*	at scsibus? target ? lun ?	# SCSI CD-ROMs
    148  1.2      matt 
    149  1.2      matt #########################################################################
    150  1.2      matt # Pseudo-devices							#
    151  1.2      matt #########################################################################
    152  1.2      matt 
    153  1.7  christos pseudo-device	pty			# pseudo-terminals
    154  1.2      matt pseudo-device	bpfilter		# packet filter ports
    155  1.2      matt pseudo-device	loop
    156  1.7  christos pseudo-device	ccd		 	# concatenated disks
    157  1.3     pooka #pseudo-device	fss		 	# file system snapshot device
    158  1.2      matt #pseudo-device	wsfont			# wsfont control device
    159  1.2      matt pseudo-device	wsmux			# wsmux control device
    160