INSTALL revision 1.3
1#	$NetBSD: INSTALL,v 1.3 1999/07/29 10:37:19 augustss 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
33options 	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# Mac-specific options
58#options 	DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
59options 	GRF_COMPAT	# Include grf compatibility code
60#options 	MRG_ADB		# Use ROM-based ADB driver
61options 	ZS_CONSOLE_ABORT
62
63options 	NFS_BOOT_BOOTP
64
65# Kernel root file system and dump configuration.
66config		netbsd	root on ? type ?
67
68#
69# Device configuration
70#
71
72mainbus0 at root
73
74fpu0 at mainbus?			# Floating-Point Coprocessor support
75
76
77# Basic Bus Support
78
79# On-board I/O bus support
80obio0 at mainbus?
81
82# NuBus support
83nubus0 at mainbus?
84
85
86# Console Devices
87
88# Apple Desktop Bus interface
89adb0	at obio?
90aed*	at adb?				# ADB event device
91kbd*	at adb?				# ADB keyboard
92ms*	at adb?				# ADB mouse
93
94# Basic frame buffer support
95intvid0	at obio?			# Internal video hardware
96macvid*	at nubus?			# NuBus video card
97
98# Device-independent frame buffer interface
99grf*	at intvid?
100grf*	at macvid?
101
102# Integrated Terminal Emulator (console) support
103ite0	at grf?
104
105
106# Serial Devices
107
108# On-board serial interface
109zsc0	at obio?
110zstty*	at zsc? channel ?
111
112
113# SCSI Controllers and Devices
114
115# SCSI controllers
116# XXX - use only one of ncrscsi or sbc
117ncrscsi0 at obio?			# SCSI NCR 5380
118#sbc0	at obio? flags 0x1		# MI SCSI NCR 5380
119esp0	at obio?			# SCSI NCR 53C9x
120esp1	at obio?			# SCSI NCR 53C9x
121
122# SCSI bus support
123scsibus* at scsi?
124
125# SCSI devices
126sd*	at scsibus? target ? lun ?	# SCSI disk drives
127cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
128st*	at scsibus? target ? lun ?	# SCSI tape drives
129
130
131# Miscellaneous mass storage devices
132
133# IWM floppy disk controller
134iwm0	at obio?			# Sony driver (800K GCR)
135fd*	at iwm? drive ?
136
137
138# Network Interfaces
139
140# On-board Ethernet controllers
141sn*	at obio?			# SONIC-based (DP83932, DP83916)
142mc*	at obio?			# MACE-based
143
144# NuBus Ethernet controllers
145ae*	at nubus?			# DP8390-based
146sn*	at nubus?			# SONIC-based (DP83932, DP83916)
147
148
149# Audio Devices
150
151# On-board audio hardware
152asc0	at obio?			# ASC/EASC audio
153
154# Pseudo-Devices
155
156# disk/mass storage pseudo-devices
157pseudo-device	md		1	# memory disk device (ramdisk)
158
159# network pseudo-devices
160pseudo-device	loop 		1 	# network loopback
161pseudo-device	ppp		1 	# Point-to-Point Protocol
162pseudo-device	sl		1 	# Serial Line IP
163
164# miscellaneous pseudo-devices
165pseudo-device	pty		64	# pseudo-terminals
166