INSTALL revision 1.5
1#	$NetBSD: INSTALL,v 1.5 2000/06/10 02:33:59 scottr Exp $
2#
3# INSTALL
4
5include	"arch/mac68k/conf/std.mac68k"
6
7maxusers	8		# estimated number of users
8
9# Enable the hooks used for initializing the ram-disk.
10options 	MEMORY_DISK_HOOKS
11options 	MEMORY_DISK_IS_ROOT 	# Force root on ram-disk
12options 	MINIROOTSIZE=5120	# 2.5 MB
13
14# CPU support.  At least one is REQUIRED.
15options 	M68040
16options 	M68030
17options 	M68020		# Note:  must have 68851 PMMU
18
19# CPU-related options.
20options 	FPSP
21options 	FPU_EMULATE
22
23# Standard system options
24
25options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
26options 	INSECURE	# disable kernel security levels
27
28options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
29
30# Diagnostic/debugging support options - XXX remove these at some point
31options 	DIAGNOSTIC	# cheap kernel consistency checks
32options 	DDB		# in-kernel debugger
33#options 	ADB_DEBUG	# ADB debugging
34
35# Compatibility options
36options 	COMPAT_10	# NetBSD 1.0,
37options 	COMPAT_11	# NetBSD 1.1,
38options 	COMPAT_12	# NetBSD 1.2,
39options 	COMPAT_13	# NetBSD 1.3,
40options 	COMPAT_14	# NetBSD 1.4,
41options 	COMPAT_43	# and 4.3BSD
42
43# File systems
44file-system 	FFS		# UFS
45file-system 	NFS		# Network File System client
46file-system 	CD9660		# ISO 9660 + Rock Ridge file system
47file-system 	MSDOSFS		# MS-DOS file system
48file-system 	KERNFS		# /kern
49
50# Networking options
51options 	INET		# IP + ICMP + TCP + UDP
52
53# These options enable verbose messages for several subsystems.
54# Warning, these may compile large string tables into the kernel!
55options 	SCSIVERBOSE	# human readable SCSI error messages
56
57# wscons options
58#options 	WSEMUL_SUN		# sun terminal emulation
59options 	WSEMUL_VT100		# VT100 / VT220 emulation
60options 	WSDISPLAY_COMPAT_ITEFONT # use ite font (6x10)
61
62# rcons options; note that 1-bit and 8-bit displays are supported by default.
63options 	RCONS_2BPP		# Support for 2-bit display
64options 	RCONS_4BPP		# Support for 4-bit display
65options 	RCONS_16BPP		# Support for 16-bit display
66
67# Mac-specific options
68#options 	DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
69#options 	MRG_ADB		# Use ROM-based ADB driver
70options 	ZS_CONSOLE_ABORT
71
72options 	NFS_BOOT_DHCP
73
74# Kernel root file system and dump configuration.
75config		netbsd	root on ? type ?
76
77#
78# Device configuration
79#
80
81mainbus0 at root
82
83fpu0 at mainbus?			# Floating-Point Coprocessor support
84
85
86# Basic Bus Support
87
88# On-board I/O bus support
89obio0 at mainbus?
90
91# NuBus support
92nubus0 at mainbus?
93
94
95# Console Devices
96
97# Apple Desktop Bus interface
98adb0	at obio?
99aed*	at adb?				# ADB event device
100akbd*	at adb?				# ADB keyboard
101ams*	at adb?				# ADB mouse
102
103# Basic frame buffer support
104intvid0	at obio?			# Internal video hardware
105macvid*	at nubus?			# NuBus video card
106
107# Device-independent frame buffer interface
108macfb*	at intvid?
109macfb*	at macvid?
110
111# Workstation Console devices
112wsdisplay0 at macfb? console ?
113wskbd0	at akbd? console ?
114wsmouse0 at ams?
115
116
117# Serial Devices
118
119# On-board serial interface
120zsc0	at obio?
121zstty*	at zsc? channel ?
122
123
124# SCSI Controllers and Devices
125
126# SCSI controllers
127# XXX - use only one of ncrscsi or sbc
128ncrscsi0 at obio?			# SCSI NCR 5380
129#sbc0	at obio? flags 0x1		# MI SCSI NCR 5380
130esp0	at obio?			# SCSI NCR 53C9x
131esp1	at obio?			# SCSI NCR 53C9x
132
133# SCSI bus support
134scsibus* at scsi?
135
136# SCSI devices
137sd*	at scsibus? target ? lun ?	# SCSI disk drives
138cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
139st*	at scsibus? target ? lun ?	# SCSI tape drives
140
141
142# Miscellaneous mass storage devices
143
144# IWM floppy disk controller
145iwm0	at obio?			# Sony driver (800K GCR)
146fd*	at iwm? drive ?
147
148
149# Network Interfaces
150
151# On-board Ethernet controllers
152sn*	at obio?			# SONIC-based (DP83932, DP83916)
153mc*	at obio?			# MACE-based
154
155# NuBus Ethernet controllers
156ae*	at nubus?			# DP8390-based
157sn*	at nubus?			# SONIC-based (DP83932, DP83916)
158
159
160# Audio Devices
161
162# On-board audio hardware
163asc0	at obio?			# ASC/EASC audio
164
165# Pseudo-Devices
166
167# disk/mass storage pseudo-devices
168pseudo-device	md		1	# memory disk device (ramdisk)
169
170# network pseudo-devices
171pseudo-device	loop 		1 	# network loopback
172pseudo-device	ppp		1 	# Point-to-Point Protocol
173pseudo-device	sl		1 	# Serial Line IP
174
175# miscellaneous pseudo-devices
176pseudo-device	pty		64	# pseudo-terminals
177