INSTALL revision 1.45 1 # $NetBSD: INSTALL,v 1.45 2010/11/23 11:14:05 hannken Exp $
2 #
3 # Shark installation kernel
4 #
5
6 include "arch/shark/conf/std.shark"
7
8 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9
10 # estimated number of users
11
12 maxusers 32
13
14 # Standard system options
15
16 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
17 options HZ=64
18 #options NTP # NTP phase/frequency locked loop
19 #options BOOT_QUIETLY # twiddle instead of normal boot msg output
20
21 # CPU options
22
23 options CPU_SA110 # Support the SA110 core
24 makeoptions COPTS="-Os"
25
26 # Architecture options
27
28 options SHARK # We are a Shark
29 options NSIO # We are using the National Semi SuperIO
30
31 # compatibility with old version of OFW, which may have incorrect
32 # properties and/or may set up devices incorrectly.
33 options COMPAT_OLD_OFW
34
35 # FPA options
36
37 #options ARMFPE # ARM Ltd FPE
38
39 # File systems
40
41 file-system FFS # UFS
42 #file-system LFS # log-structured file system
43 file-system MFS # memory file system
44 file-system NFS
45 #file-system ADOSFS # AmigaDOS-compatible file system
46 #file-system EXT2FS # second extended file system (linux)
47 #file-system CD9660 # ISO 9660 + Rock Ridge file system
48 file-system MSDOSFS # MS-DOS file system
49 #file-system FDESC # /dev/fd
50 #file-system FILECORE # Acorn filecore file system
51 file-system KERNFS # /kern
52 #file-system NULLFS # loopback file system
53 #file-system PROCFS # /proc
54 #file-system UMAPFS # NULLFS + uid and gid remapping
55 #file-system UNION # union file system
56 #file-system PTYFS # /dev/pts/N support
57
58 # File system options
59 #options QUOTA # UFS quotas
60 #options FFS_EI # FFS Endian Independant support
61 #options NFSSERVER
62 #options FFS_NO_SNAPSHOT # No FFS snapshot support
63 options WAPBL # File system journaling support - Experimental
64
65 # Networking options
66
67 #options GATEWAY # packet forwarding
68 options INET # IP + ICMP + TCP + UDP
69 #options MROUTING # IP multicast routing
70 #options PIM # Protocol Independent Multicast
71 #options ISO,TPIP # OSI
72 #options EON # OSI tunneling over IP
73 #options NETATALK # AppleTalk networking
74 #options PFIL_HOOKS # pfil(9) packet filter hooks (Required
75 # if you enable the pseudo-device ipl).
76
77 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
78 #options PPP_DEFLATE # Deflate compression support for PPP
79 #options PPP_FILTER # Active filter support for PPP (requires bpf)
80 options NFS_BOOT_DHCP # use NetBSD standard DHCP/NFS boot code
81 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
82
83 # Compatibility options
84
85 #options COMPAT_43 # 4.3BSD compatibility.
86 #options COMPAT_40 # NetBSD 4.0 compatibility.
87 #options COMPAT_30 # NetBSD 3.0 compatibility.
88 #options COMPAT_20 # NetBSD 2.0 compatibility.
89 #options COMPAT_16 # NetBSD 1.6 compatibility.
90 #options COMPAT_15 # NetBSD 1.5 compatibility.
91 #options COMPAT_14 # NetBSD 1.4 compatibility.
92 #options COMPAT_13 # NetBSD 1.3 compatibility.
93 #options COMPAT_12 # NetBSD 1.2 compatibility.
94 #options COMPAT_11 # NetBSD 1.1 compatibility.
95 #options COMPAT_10 # NetBSD 1.0 compatibility.
96 #options COMPAT_09 # NetBSD 0.9 compatibility.
97 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
98 options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
99
100 # Shared memory options
101
102 #options SYSVMSG # System V-like message queues
103 #options SYSVSEM # System V-like semaphores
104 #options SYSVSHM # System V-like memory sharing
105
106 # Device options
107
108 options MEMORY_DISK_HOOKS # boottime setup of ramdisk
109 options MEMORY_DISK_IS_ROOT # use memory disk as root
110 options MEMORY_DISK_ROOT_SIZE=7000 # Size in blocks (3.5MB)
111 options MEMORY_DISK_RBFLAGS=RB_SINGLE # boot in single-user mode
112
113 options INSECURE # disable kernel securelevel
114
115 # Use the following to force the serial to always be the console
116 # device. 19200 is what the serial gets set up as by the firmware
117 # when it hasn't fallen back from PC. If it has fallen back then
118 # the speed will be set at 9600.
119 #options COMCONSOLE,CONADDR=0x3f8,CONUNIT=0,CONSPEED=19200
120
121 # Miscellaneous kernel options
122 #options KTRACE # system call tracing, a la ktrace(1)
123 #options IRQSTATS # manage IRQ statistics, XXX temp required
124 #options KMEMSTATS # kernel memory statistics, XXX temp required
125 options USERCONF # userconf(4) support
126 options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
127 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
128
129 # Development and Debugging options
130
131 #options ARM700BUGTRACK # track the ARM700 swi bug
132 #options PORTMASTER # Enable PortMaster only options
133 #options DIAGNOSTIC # internal consistency checks
134 #options PMAP_DEBUG # Enable pmap_debug_level code
135 options DDB # in-kernel debugger
136 #options DDB_ONPANIC=0 # don't run DDB at panictime
137 #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
138 #options KERNEL_DEBUG # compile in kernel debugging capability
139 #makeoptions DEBUG="-g" # compile full symbol table
140
141 #
142 # wscons options
143 #
144 # builtin terminal emulations
145 #options WSEMUL_SUN # sun terminal emulation
146 options WSEMUL_VT100 # VT100 / VT220 emulation
147 # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
148 #options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8)
149 #options WS_DEFAULT_FG=WSCOL_WHITE
150 #options WS_DEFAULT_BG=WSCOL_BLACK
151 #options WS_DEFAULT_COLATTR="(0)"
152 #options WS_DEFAULT_MONOATTR="(0)"
153 #options WS_KERNEL_FG=WSCOL_GREEN
154 #options WS_KERNEL_BG=WSCOL_BLACK
155 #options WS_KERNEL_COLATTR=""
156 #options WS_KERNEL_MONOATTR=""
157 # customization of console border color
158 #options WSDISPLAY_CUSTOM_BORDER # border customization from wsconsctl(8)
159 #options WSDISPLAY_BORDER_COLOR=WSCOL_BLUE # default color
160 # compatibility to other console drivers
161 #options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
162 #options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
163 #options WSDISPLAY_COMPAT_USL # VT handling
164 #options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
165 # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
166 #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
167 #options PCKBD_LAYOUT="(KB_US | KB_SWAPCTRLCAPS)"
168 # allocate a number of virtual screens at autoconfiguration time
169 #options WSDISPLAY_DEFAULTSCREENS=4
170 # use a large software cursor that doesn't blink
171 #options PCDISPLAY_SOFTCURSOR
172 # modify the screen type of the console; defaults to "80x25"
173 #options VGA_CONSOLE_SCREENTYPE="\"80x24\""
174 # console scrolling support.
175 #options WSDISPLAY_SCROLLSUPPORT
176 # enable VGA raster mode capable of displaying multilingual text on console
177 #options VGA_RASTERCONSOLE
178
179 config netbsd root on ? type ffs # root on miniroot
180
181 # The main bus device
182 mainbus0 at root
183
184 # The boot CPU
185 cpu0 at mainbus?
186
187 # Open Firmware devices
188 ofbus* at root
189 ofbus* at ofbus?
190 #ofdisk* at ofbus?
191 #ofnet* at ofbus? # don't use with cs0
192 #ofcons* at ofbus? # don't use with pc0
193 ofrtc* at ofisa?
194 ofrom* at ofbus?
195
196 ofisa* at ofbus?
197 ofbus* at ofisa?
198
199 # IDE/ATA disk
200 wdc* at ofisa?
201 atabus* at wdc? channel ?
202 wd* at atabus? drive ?
203
204 atapibus* at atabus?
205 cd* at atapibus? drive?
206 sd* at atapibus? drive?
207
208 # PCCONS@OFW
209 #ofisapc* at ofbus?
210 #pc* at ofisapc?
211
212 # PS/2 Mouse
213 #opms0 at spckbd? irq 12
214
215 # wscons
216 pckbc* at ofisa?
217 pckbd* at pckbc?
218 #pms* at pckbc?
219 vga* at ofbus?
220 #igsfb* at ofbus?
221 wsdisplay* at wsemuldisplaydev?
222 wskbd* at pckbd? console ?
223 #wsmouse* at pms? mux 0
224
225 # CS8900 Ethernet@OFW
226 cs* at ofisa?
227
228 # Serial @OFW
229 com* at ofisa?
230
231 # Parallel @OFW
232 lpt* at ofisa?
233
234 # Smart Card
235 ofisascr* at ofisa?
236 scr* at ofisascr?
237
238 # ESS Sound@OFW
239 #ess* at ofisa?
240 #audio* at ess?
241 #opl* at ess?
242 #midi* at opl?
243
244 # Joystick @OFW
245 #joy* at ofisa?
246
247 pseudo-device loop 1 # network loopback
248 pseudo-device bpfilter # packet filter
249 #pseudo-device sl # CSLIP
250 #pseudo-device ppp # PPP
251 #pseudo-device tun # network tunneling over tty
252 #pseudo-device ipfilter 1 # ip filter
253
254 pseudo-device pty # pseudo-terminals
255 #pseudo-device vnd # disk-like interface to files
256 #pseudo-device ccd 2 # concatenated disk devices
257 #pseudo-device fss # file system snapshot device
258 pseudo-device rnd # /dev/random and /dev/urandom
259
260 pseudo-device md # Ramdisk driver
261 #pseudo-device profiler 1 # fiq based profiling device
262 #pseudo-device sequencer 1 # MIDI sequencer
263 pseudo-device wsmux # mouse & keyboard multiplexor
264 #pseudo-device wsfont
265