GENERIC revision 1.132 1 # $NetBSD: GENERIC,v 1.132 2019/04/13 08:23:00 isaki Exp $
2 #
3 # Generic Shark configuration.
4 #
5
6 include "arch/shark/conf/std.shark"
7
8 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9
10 #ident "GENERIC-$Revision: 1.132 $"
11
12 # estimated number of users
13 maxusers 32
14
15 # Standard system options
16
17 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
18 options HZ=64
19 #options NTP # NTP phase/frequency locked loop
20 #options BOOT_QUIETLY # twiddle instead of normal boot msg output
21
22 # CPU options
23
24 options CPU_SA110 # Support the SA110 core
25
26 # Architecture options
27
28 options SHARK # We are a Shark
29 options NSIO # We are using the National Semi SuperIO
30 makeoptions CPUFLAGS="-march=armv4 -mtune=strongarm"
31
32 # compatibility with old version of OFW, which may have incorrect
33 # properties and/or may set up devices incorrectly.
34 options COMPAT_OLD_OFW
35
36 # File systems
37
38 file-system FFS # UFS
39 #file-system LFS # log-structured file system
40 file-system MFS # memory file system
41 file-system NFS # Network file system
42 #file-system ADOSFS # AmigaDOS-compatible file system
43 #file-system EXT2FS # second extended file system (linux)
44 #file-system CD9660 # ISO 9660 + Rock Ridge file system
45 file-system MSDOSFS # MS-DOS file system
46 file-system FDESC # /dev/fd
47 #file-system FILECORE # Acorn filecore file system
48 file-system KERNFS # /kern
49 file-system NULLFS # loopback file system
50 #file-system OVERLAY # overlay filesystem
51 file-system PROCFS # /proc
52 file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
53 #file-system UMAPFS # NULLFS + uid and gid remapping
54 #file-system UNION # union file system
55 #file-system CODA # Coda file system (needs vcoda below)
56 file-system PTYFS # /dev/pts/N support
57 file-system TMPFS # Efficient memory file-system
58 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
59
60 # File system options
61 #options QUOTA # legacy UFS quotas
62 #options QUOTA2 # new, in-filesystem UFS quotas
63 #options FFS_EI # FFS Endian Independent support
64 options WAPBL # File system journaling support
65 #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
66 options NFSSERVER
67 #options FFS_NO_SNAPSHOT # No FFS snapshot support
68 #options UFS_EXTATTR # Extended attribute support for UFS1
69
70 # Networking options
71
72 #options GATEWAY # packet forwarding
73 options INET # IP + ICMP + TCP + UDP
74 options INET6 # IPV6
75 #options IPSEC # IP security
76 #options IPSEC_DEBUG # debug for IP security
77 #options MROUTING # IP multicast routing
78 #options PIM # Protocol Independent Multicast
79 #options NETATALK # AppleTalk networking
80 # if you enable the pseudo-device ipl).
81
82 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
83 #options PPP_DEFLATE # Deflate compression support for PPP
84 #options PPP_FILTER # Active filter support for PPP (requires bpf)
85 options NFS_BOOT_DHCP # use NetBSD standard DHCP/NFS boot code
86 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
87
88 #options ALTQ # Manipulate network interfaces' output queues
89 #options ALTQ_BLUE # Stochastic Fair Blue
90 #options ALTQ_CBQ # Class-Based Queueing
91 #options ALTQ_CDNR # Diffserv Traffic Conditioner
92 #options ALTQ_FIFOQ # First-In First-Out Queue
93 #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
94 #options ALTQ_HFSC # Hierarchical Fair Service Curve
95 #options ALTQ_LOCALQ # Local queueing discipline
96 #options ALTQ_PRIQ # Priority Queueing
97 #options ALTQ_RED # Random Early Detection
98 #options ALTQ_RIO # RED with IN/OUT
99 #options ALTQ_WFQ # Weighted Fair Queueing
100
101 # Compatibility options
102
103 include "conf/compat_netbsd12.config"
104 options COMPAT_NETBSD32 # allow running arm (e.g. non-earm) binaries
105
106 options COMPAT_LINUX # Linux compatibility.
107
108 # Shared memory options
109
110 options SYSVMSG # System V-like message queues
111 options SYSVSEM # System V-like semaphores
112 options SYSVSHM # System V-like memory sharing
113
114 # Device options
115
116 #options MEMORY_DISK_HOOKS # boottime setup of ramdisk
117 #options MEMORY_DISK_ROOT_SIZE=3400 # Size in blocks
118 #options MEMORY_DISK_IS_ROOT # use memory disk as root
119
120 options INSECURE # disable kernel securelevel
121
122 # Use the following to force the serial to always be the console
123 # device. 19200 is what the serial gets set up as by the firmware
124 # when it hasn't fallen back from PC. If it has fallen back then
125 # the speed will be set at 9600.
126 #options COMCONSOLE,CONADDR=0x3f8,CONUNIT=0,CONSPEED=19200
127
128 # Miscellaneous kernel options
129 options KTRACE # system call tracing, a la ktrace(1)
130 options IRQSTATS # manage IRQ statistics, XXX temp required
131 options USERCONF # userconf(4) support
132 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
133 options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
134 options MODULAR # new style module(7) framework
135 options MODULAR_DEFAULT_AUTOLOAD
136
137 # Development and Debugging options
138
139 #options ARM700BUGTRACK # track the ARM700 swi bug
140 #options PORTMASTER # Enable PortMaster only options
141 options DIAGNOSTIC # internal consistency checks
142 #options PMAP_DEBUG # Enable pmap_debug_level code
143 options DDB # in-kernel debugger
144 makeoptions COPY_SYMTAB=1 # reserve symbol space for DDB
145 # (needed because we boot netbsd.aout)
146 #options DDB_ONPANIC=0 # don't run DDB at panictime
147 #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
148 #options KERNEL_DEBUG # compile in kernel debugging capability
149 #makeoptions DEBUG="-g" # compile full symbol table
150
151 #
152 # wscons options
153 #
154 # builtin terminal emulations
155 #options WSEMUL_SUN # sun terminal emulation
156 options WSEMUL_VT100 # VT100 / VT220 emulation
157 # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
158 #options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8)
159 #options WS_DEFAULT_FG=WSCOL_WHITE
160 #options WS_DEFAULT_BG=WSCOL_BLACK
161 #options WS_DEFAULT_COLATTR="(0)"
162 #options WS_DEFAULT_MONOATTR="(0)"
163 options WS_KERNEL_FG=WSCOL_GREEN
164 #options WS_KERNEL_BG=WSCOL_BLACK
165 #options WS_KERNEL_COLATTR=""
166 #options WS_KERNEL_MONOATTR=""
167 # customization of console border color
168 #options WSDISPLAY_CUSTOM_BORDER # border customization from wsconsctl(8)
169 #options WSDISPLAY_BORDER_COLOR=WSCOL_BLUE # default color
170 # compatibility to other console drivers
171 options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
172 options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
173 options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
174 options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
175 # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
176 #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
177 #options PCKBD_LAYOUT="(KB_US | KB_SWAPCTRLCAPS)"
178 # allocate a number of virtual screens at autoconfiguration time
179 #options WSDISPLAY_DEFAULTSCREENS=4
180 # use a large software cursor that doesn't blink
181 #options PCDISPLAY_SOFTCURSOR
182 # modify the screen type of the console; defaults to "80x25"
183 #options VGA_CONSOLE_SCREENTYPE="\"80x24\""
184 # console scrolling support.
185 #options WSDISPLAY_SCROLLSUPPORT
186 # enable VGA raster mode capable of displaying multilingual text on console
187 #options VGA_RASTERCONSOLE
188
189 config netbsd root on ? type ?
190
191 # The main bus device
192 mainbus0 at root
193
194 # The boot CPU
195 cpu0 at mainbus?
196
197 # Open Firmware devices
198 ofbus* at root
199 ofbus* at ofbus?
200 #ofdisk* at ofbus?
201 #ofnet* at ofbus? # don't use with cs0
202 #ofcons* at ofbus? # don't use with pc0
203 ofrtc* at ofisa?
204 ofrom* at ofbus?
205
206 ofisa* at ofbus?
207 ofbus* at ofisa?
208
209 # IDE/ATA disk
210 wdc* at ofisa?
211 atabus* at wdc? channel ?
212 wd* at atabus? drive ?
213
214 atapibus* at atabus?
215 cd* at atapibus? drive?
216 sd* at atapibus? drive?
217
218 # PCCONS@OFW
219 #ofisapc* at ofbus?
220 #pc* at ofisapc?
221 #options FRENCH_KBD
222 #options FINNISH_KBD
223 #options GERMAN_KBD
224 #options NORWEGIAN_KBD
225
226 # PS/2 Mouse
227 #opms0 at spckbd? irq 12
228
229 # wscons
230 pckbc* at ofisa?
231 pckbd* at pckbc?
232 pms* at pckbc?
233 vga* at ofbus?
234 igsfb* at ofbus? # IGS CyberPro in rev. 5 sharks
235 chipsfb* at ofbus? # C&T 65550 in rev. 4 and earlier
236 wsdisplay* at wsemuldisplaydev?
237 wskbd* at pckbd? console ?
238 wsmouse* at pms? mux 0
239
240 # CS8900 Ethernet@OFW
241 cs* at ofisa?
242
243 # Serial @OFW
244 com* at ofisa?
245
246 # Parallel @OFW
247 lpt* at ofisa?
248
249 # Smart Card
250 ofisascr* at ofisa?
251 scr* at ofisascr?
252
253 # ESS Sound@OFW
254 ess* at ofisa?
255 audio* at ess?
256 opl* at ess?
257 midi* at opl?
258
259 spkr* at audio? # PC speaker (synthesized)
260
261 # Joystick @OFW
262 joy* at ofisa?
263
264 # PCI @OFW
265 #vlpci* at ofbus?
266 #pci* at vlpci?
267
268 # Pull in optional local configuration
269 cinclude "arch/shark/conf/GENERIC.local"
270
271 #
272 # accept filters
273 pseudo-device accf_data # "dataready" accept filter
274 pseudo-device accf_http # "httpready" accept filter
275
276 pseudo-device loop # network loopback
277 pseudo-device bpfilter # packet filter
278 #pseudo-device carp # Common Address Redundancy Protocol
279 #pseudo-device sl # CSLIP
280 #pseudo-device ppp # PPP
281 #pseudo-device tun # network tunneling over tty
282 #pseudo-device npf # NPF packet filter
283 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
284 #pseudo-device faith # IPv[46] tcp relay translation i/f
285 pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
286 #pseudo-device strip # STarmode Radio IP (Metricon Ricochet)
287 pseudo-device pty # pseudo-terminals
288 pseudo-device vnd # disk-like interface to files
289 #options VND_COMPRESSION # compressed vnd(4)
290 #pseudo-device ccd # concatenated disk devices
291 pseudo-device fss # file system snapshot device
292 #pseudo-device cgd # cryptographic disk devices
293
294 #pseudo-device md # Ramdisk driver
295 #pseudo-device profiler 1 # fiq based profiling device
296 pseudo-device sequencer # MIDI sequencer
297 pseudo-device openfirm # /dev/openfirm
298 #pseudo-device vcoda # coda kernel <-> cachemanager
299 pseudo-device clockctl # user control of clock subsystem
300 pseudo-device drvctl # user control of drive subsystem
301 pseudo-device wsmux # mouse & keyboard multiplexor
302 pseudo-device wsfont
303 pseudo-device ksyms # /dev/ksyms
304 pseudo-device putter # for puffs and pud
305
306 # Veriexec
307 #
308 # a pseudo device needed for veriexec
309 #pseudo-device veriexec
310 #
311 # Uncomment the fingerprint methods below that are desired. Note that
312 # removing fingerprint methods will have almost no impact on the kernel
313 # code size.
314 #
315 #options VERIFIED_EXEC_FP_SHA256
316 #options VERIFIED_EXEC_FP_SHA384
317 #options VERIFIED_EXEC_FP_SHA512
318
319 options PAX_MPROTECT=0 # PaX mprotect(2) restrictions
320 options PAX_ASLR=0 # PaX Address Space Layout Randomization
321