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