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