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