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