INSTALL revision 1.54 1 # $NetBSD: INSTALL,v 1.54 2014/08/23 20:26:58 dholland Exp $
2 #
3 # INSTALL
4
5 include "arch/mac68k/conf/std.mac68k"
6
7 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
8
9 makeoptions COPTS="-Os" # Optimise for space. Implies -O2
10
11 maxusers 8 # estimated number of users
12
13 # Enable the hooks used for initializing the ram-disk.
14 options MEMORY_DISK_HOOKS
15 options MEMORY_DISK_IS_ROOT # Force root on ram-disk
16 options MEMORY_DISK_ROOT_SIZE=5120 # 2.5 MB
17 options MEMORY_DISK_RBFLAGS=RB_SINGLE # boot in single-user mode
18
19 # CPU support. At least one is REQUIRED.
20 options M68040
21 options M68030
22 options M68020 # Note: must have 68851 PMMU
23
24 # CPU-related options.
25 options FPSP
26 options FPU_EMULATE
27
28 # Standard system options
29
30 options INSECURE # disable kernel security levels
31
32 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
33
34 options USERCONF # userconf(4) support
35 options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
36 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
37
38 # Diagnostic/debugging support options - XXX remove these at some point
39 options DIAGNOSTIC # cheap kernel consistency checks
40 options DDB # in-kernel debugger
41 #options ADB_DEBUG # ADB debugging
42
43 # Compatibility options
44 options COMPAT_10 # NetBSD 1.0,
45 options COMPAT_11 # NetBSD 1.1,
46 options COMPAT_12 # NetBSD 1.2,
47 options COMPAT_13 # NetBSD 1.3,
48 options COMPAT_14 # NetBSD 1.4,
49 options COMPAT_15 # NetBSD 1.5,
50 options COMPAT_16 # NetBSD 1.6,
51 options COMPAT_20 # NetBSD 2.0,
52 options COMPAT_30 # NetBSD 3.0,
53 options COMPAT_40 # NetBSD 4.0,
54 options COMPAT_50 # NetBSD 5.0,
55 options COMPAT_60 # NetBSD 6.0, and
56 options COMPAT_70 # NetBSD 7.0 binary compatibility.
57 options COMPAT_43 # and 4.3BSD
58 options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
59
60 # File systems
61 file-system FFS # UFS
62 file-system NFS # Network File System client
63 file-system CD9660 # ISO 9660 + Rock Ridge file system
64 file-system MSDOSFS # MS-DOS file system
65 file-system KERNFS # /kern
66 #file-system PTYFS # /dev/pts/N support
67
68 # Filesystem options
69 #options NFS_V2_ONLY # Exclude NFS3 code to save space
70 options FFS_NO_SNAPSHOT # No FFS snapshot support
71 options WAPBL # File system journaling support
72
73 # Networking options
74 options INET # IP + ICMP + TCP + UDP
75
76 # These options enable verbose messages for several subsystems.
77 # Warning, these may compile large string tables into the kernel!
78 options SCSIVERBOSE # human readable SCSI error messages
79
80 # wscons options
81 #options WSEMUL_SUN # sun terminal emulation
82 options WSEMUL_VT100 # VT100 / VT220 emulation
83 options WSDISPLAY_COMPAT_ITEFONT # use ite font (6x10)
84 options WSDISPLAY_DEFAULTSCREENS=1
85 #options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
86
87 # rcons options; note that 1-bit and 8-bit displays are supported by default.
88 options RCONS_2BPP # Support for 2-bit display
89 options RCONS_4BPP # Support for 4-bit display
90 options RCONS_16BPP # Support for 16-bit display
91
92 # Mac-specific options
93 #options DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
94 #options MRG_ADB # Use ROM-based ADB driver
95 options ZS_CONSOLE_ABORT
96
97 options NFS_BOOT_DHCP
98
99 # Kernel root file system and dump configuration.
100 config netbsd root on ? type ?
101
102 #
103 # Device configuration
104 #
105
106 mainbus0 at root
107
108
109 # Basic Bus Support
110
111 # On-board I/O bus support
112 obio0 at mainbus?
113
114 # NuBus support
115 nubus0 at mainbus?
116
117
118 # Console Devices
119
120 # Apple Desktop Bus interface
121 adb0 at obio?
122 aed* at adb? # ADB event device
123 akbd* at adb? # ADB keyboard
124 ams* at adb? # ADB mouse
125
126 # Basic frame buffer support
127 intvid0 at obio? # Internal video hardware
128 macvid* at nubus? # NuBus video card
129
130 # Device-independent frame buffer interface
131 macfb* at intvid?
132 macfb* at macvid?
133
134 # Workstation Console devices
135 wsdisplay0 at macfb? console ?
136 wskbd0 at akbd? console ?
137 wsmouse0 at ams?
138
139
140 # Serial Devices
141
142 # On-board serial interface
143 zsc0 at obio?
144 zstty* at zsc? channel ?
145
146
147 # SCSI Controllers and Devices
148
149 # SCSI controllers
150 # XXX - use only one of ncrscsi or sbc
151 ncrscsi0 at obio? addr 0 # SCSI NCR 5380
152 #sbc0 at obio? addr 0 flags 0x1 # MI SCSI NCR 5380
153 esp0 at obio? addr 0 # SCSI NCR 53C9x
154 esp1 at obio? addr 1 # SCSI NCR 53C9x
155
156 # SCSI bus support
157 scsibus* at scsi?
158
159 # SCSI devices
160 sd* at scsibus? target ? lun ? # SCSI disk drives
161 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
162 st* at scsibus? target ? lun ? # SCSI tape drives
163
164 # IDE controller and devices
165 wdc* at obio? flags 0x1000
166 atabus* at ata?
167 wd* at atabus? drive ?
168
169
170 # Miscellaneous mass storage devices
171
172 # IWM floppy disk controller
173 iwm0 at obio? # Sony driver (800K GCR)
174 fd* at iwm? drive ?
175
176
177 # Network Interfaces
178
179 # On-board Ethernet controllers
180 sn* at obio? # SONIC-based (DP83932, DP83916)
181 mc* at obio? # MACE-based
182
183 # NuBus Ethernet controllers
184 ae* at nubus? # DP8390-based
185 sn* at nubus? # SONIC-based (DP83932, DP83916)
186 sm* at nubus? # SMC-based
187 netdock* at nubus? # Asante NetDock, Newer Ether MicroDock
188
189 nsphy* at mii? phy ?
190 ukphy* at mii? phy ?
191
192 # Audio Devices
193
194 # On-board audio hardware
195 asc0 at obio? # ASC/EASC audio
196
197 # Pseudo-Devices
198
199 # disk/mass storage pseudo-devices
200 pseudo-device md # memory disk device (ramdisk)
201 #pseudo-device fss # file system snapshot device
202
203 # network pseudo-devices
204 pseudo-device loop # network loopback
205 pseudo-device ppp # Point-to-Point Protocol
206 pseudo-device sl # Serial Line IP
207
208 # miscellaneous pseudo-devices
209 pseudo-device bpfilter # Berkeley packet filter
210 pseudo-device pty # pseudo-terminals
211
212