GENERIC revision 1.49 1 # $NetBSD: GENERIC,v 1.49 2016/08/28 14:23:00 christos Exp $
2 #
3 # GENERIC machine description file
4 #
5 # This machine description file is used to generate the default NetBSD
6 # kernel. The generic kernel does not include all options, subsystems
7 # and device drivers, but should be useful for most applications.
8 #
9 # The machine description file can be customised for your specific
10 # machine to reduce the kernel size and improve its performance.
11 #
12 # For further information on compiling NetBSD kernels, see the config(8)
13 # man page.
14 #
15 # For further information on hardware support for this architecture, see
16 # the intro(4) man page. For further information about kernel options
17 # for this architecture, see the options(4) man page. For an explanation
18 # of each device driver in this file see the section 4 man page for the
19 # device.
20
21 include "arch/landisk/conf/std.landisk"
22
23 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24
25 #ident "GENERIC-$Revision: 1.49 $"
26
27 maxusers 16 # estimated number of users
28
29 makeoptions CPUFLAGS="-m4-nofpu" # XXX: move to std.landisk?
30 #makeoptions COPTS="-Os -freorder-blocks" # -O2 is too -falign-* zealous
31
32 # CPU-related options.
33 options PCLOCK=33333333 # 33.33MHz
34 options DONT_INIT_BSC
35 #options DONT_INIT_PCIBSC
36
37 # Cache options.
38 options SH4_CACHE_DISABLE_EMODE
39 #options SH4_CACHE_DISABLE_ICACHE
40 #options SH4_CACHE_DISABLE_DCACHE
41 #options SH4_CACHE_WB_U0_P0_P3
42 #options SH4_CACHE_WB_P1
43
44 # kloader-related
45 #options KLOADER
46 #options KLOADER_KERNEL_PATH="\"/netbsd\""
47 #options KLOADER_DEBUG
48
49 # Standard system options
50
51 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
52 #options HZ=64 # clock interrupt generates every 1/HZ sec
53 options NTP # NTP phase/frequency locked loop
54
55 options KTRACE # system call tracing via ktrace(1)
56
57 options SYSVMSG # System V-like message queues
58 options SYSVSEM # System V-like semaphores
59 options SYSVSHM # System V-like memory sharing
60
61 #options MODULAR # new style module(7) framework
62 #options MODULAR_DEFAULT_AUTOLOAD
63
64 options USERCONF # userconf(4) support
65 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
66 options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
67
68 # Enable experimental buffer queue strategy for better responsiveness under
69 # high disk I/O load. Likely stable but not yet the default.
70 #options BUFQ_READPRIO
71 #options BUFQ_PRIOCSCAN
72
73 # Diagnostic/debugging support options
74 #options DIAGNOSTIC # cheap kernel consistency checks
75 #options DEBUG # expensive debugging checks/support
76 options DDB # in-kernel debugger
77 #options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic'
78 options DDB_HISTORY_SIZE=512 # Enable history editing in DDB
79 #makeoptions DEBUG="-g -fno-omit-frame-pointer"
80
81 # Compatibility options
82 options COMPAT_16 # NetBSD 1.6,
83 options COMPAT_20 # NetBSD 2.0,
84 options COMPAT_30 # NetBSD 3.0,
85 options COMPAT_40 # NetBSD 4.0,
86 options COMPAT_50 # NetBSD 5.0,
87 options COMPAT_60 # NetBSD 6.0, and
88 options COMPAT_70 # NetBSD 7.0 binary compatibility.
89 options COMPAT_43 # and 4.3BSD
90 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
91
92 options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility
93 options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
94
95 # Executable format options
96 options EXEC_COFF # COFF executables
97
98 # File systems
99 file-system FFS # UFS
100 file-system EXT2FS # second extended file system (linux)
101 file-system LFS # log-structured file system
102 file-system MFS # memory file system
103 file-system NFS # Network File System client
104 file-system NTFS # Windows/NT file system (experimental)
105 file-system CD9660 # ISO 9660 + Rock Ridge file system
106 file-system MSDOSFS # MS-DOS file system
107 file-system FDESC # /dev/fd
108 file-system KERNFS # /kern
109 file-system NULLFS # loopback file system
110 file-system OVERLAY # overlay file system
111 file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
112 file-system PROCFS # /proc
113 file-system UMAPFS # NULLFS + uid and gid remapping
114 file-system UNION # union file system
115 file-system CODA # Coda File System; also needs vcoda (below)
116 file-system SMBFS # experimental - CIFS; also needs nsmb (below)
117 file-system PTYFS # /dev/pts/N support
118 file-system TMPFS # Efficient memory file-system
119 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
120
121 # File system options
122 options QUOTA # legacy UFS quotas
123 options QUOTA2 # new, in-filesystem UFS quotas
124 #options FFS_EI # FFS Endian Independent support
125 options WAPBL # File system journaling support
126 #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
127 options NFSSERVER # Network File System server
128 #options FFS_NO_SNAPSHOT # ffs snapshots
129 options UFS_EXTATTR # Extended attribute support for UFS1
130 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
131 # immutable) behave as system flags.
132
133 # Networking options
134 #options GATEWAY # packet forwarding
135 options INET # IP + ICMP + TCP + UDP
136 options INET6 # IPV6
137 #options IPSEC # IP security
138 #options IPSEC_DEBUG # debug for IP security
139 #options MROUTING # IP multicast routing
140 #options PIM # Protocol Independent Multicast
141 #options NETATALK # AppleTalk networking protocols
142 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
143 #options PPP_DEFLATE # Deflate compression support for PPP
144 #options PPP_FILTER # Active filter support for PPP (requires bpf)
145 #options IPFILTER_LOG # ipmon(8) log support
146 options IPFILTER_COMPAT # Compat for IP-Filter
147 #options IPFILTER_DEFAULT_BLOCK # block all packets by default
148 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
149
150 #options ALTQ # Manipulate network interfaces' output queues
151 #options ALTQ_BLUE # Stochastic Fair Blue
152 #options ALTQ_CBQ # Class-Based Queueing
153 #options ALTQ_CDNR # Diffserv Traffic Conditioner
154 #options ALTQ_FIFOQ # First-In First-Out Queue
155 #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
156 #options ALTQ_HFSC # Hierarchical Fair Service Curve
157 #options ALTQ_LOCALQ # Local queueing discipline
158 #options ALTQ_PRIQ # Priority Queueing
159 #options ALTQ_RED # Random Early Detection
160 #options ALTQ_RIO # RED with IN/OUT
161 #options ALTQ_WFQ # Weighted Fair Queueing
162
163 # These options enable verbose messages for several subsystems.
164 # Warning, these may compile large string tables into the kernel!
165 options MIIVERBOSE # verbose PHY autoconfig messages
166 options PCIVERBOSE # verbose PCI device autoconfig messages
167 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
168 options SCSIVERBOSE # human readable SCSI error messages
169 options USBVERBOSE # verbose USB device autoconfig messages
170
171 options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
172
173
174 # Kernel root file system and dump configuration.
175 #config netbsd root on ? type ?
176 config netbsd root on wd0a type ffs
177 #config netbsd root on ? type nfs
178
179
180 #
181 # Device configuration
182 #
183
184 mainbus0 at root
185
186 cpu* at mainbus?
187
188 # Basic Bus Support
189
190 # PCI bus support
191 options PCI_NETBSD_CONFIGURE
192 shpcic* at mainbus? # SH7751 PCIC
193 pci0 at shpcic? bus ?
194
195 # SH bus
196 shb* at mainbus?
197
198 # ob-board I/O bus
199 obio0 at mainbus?
200
201 # Serial Devices
202
203 options SCIFCONSOLE
204 options SCIFCN_SPEED=9600
205 scif0 at shb?
206
207 rs5c313rtc0 at shb0 # time-of-day clock
208
209 # SCSI Controllers and Devices
210
211 # SCSI devices
212 sd* at scsibus? target ? lun ? # SCSI disk drives
213 st* at scsibus? target ? lun ? # SCSI tape drives
214 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
215 ch* at scsibus? target ? lun ? # SCSI autochangers
216 ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices
217 ss* at scsibus? target ? lun ? # SCSI scanners
218 uk* at scsibus? target ? lun ? # SCSI unknown
219
220 # IDE and related devices
221 # PCI IDE controllers - see pciide(4) for supported hardware.
222 # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
223 # how to set up DMA modes for this chip. This may work, or may cause
224 # a machine hang with some controllers.
225 pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
226 acardide* at pci? dev ? function ? # Acard IDE controllers
227
228 wdc0 at obio? port 0x14000000 irq 10 # CF
229 #wdc1 at obio? port 0x18000000 irq 9 # iConnect
230
231 # ATA (IDE) bus support
232 atabus* at ata?
233
234 # IDE drives
235 # Flags are used only with controllers that support DMA operations
236 # and mode settings (e.g. some pciide controllers)
237 # The lowest order four bits (rightmost digit) of the flags define the PIO
238 # mode to use, the next set of four bits the DMA mode and the third set the
239 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
240 # to use, and the last bit must be 1 for this setting to be used.
241 # For DMA and UDMA, 0xf (1111) means 'disable'.
242 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
243 # (0xc=1100, 0xa=1010, 0xf=1111)
244 # 0x0000 means "use whatever the drive claims to support".
245 wd* at atabus? drive ? flags 0x0000
246
247 # ATAPI bus support
248 atapibus* at atapi?
249
250 # ATAPI devices
251 # flags have the same meaning as for IDE drives.
252 cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
253 sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
254 uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
255
256 # Network Interfaces
257
258 # PCI network interfaces
259 re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S
260 rtk* at pci? dev ? function ? # Realtek 8129/8139
261
262 # MII/PHY support
263 rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
264 urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
265 ukphy* at mii? phy ? # generic unknown PHYs
266
267
268 # USB Controller and Devices
269
270 # PCI USB controllers
271 ehci* at pci? dev ? function ? # Enhanced Host Controller
272 ohci* at pci? dev ? function ? # Open Host Controller
273
274 # USB bus support
275 usb* at ehci?
276 usb* at ohci?
277
278 # USB Hubs
279 uhub* at usb?
280 uhub* at uhub? port ?
281
282 # USB HID device
283 uhidev* at uhub? port ? configuration ? interface ?
284
285 # USB Mice
286 ums* at uhidev? reportid ?
287 wsmouse* at ums? mux 0
288
289 # USB Keyboards
290 ukbd* at uhidev? reportid ?
291 wskbd* at ukbd? console ? mux 1
292
293 # USB LCDs and USB-VGA adaptors
294 udl* at uhub? port ? # DisplayLink DL-1x0/1x5
295 wsdisplay* at udl?
296
297 # USB serial adpater
298 ucycom* at uhidev? reportid ?
299
300 # USB Generic HID devices
301 uhid* at uhidev? reportid ?
302
303 # USB Printer
304 ulpt* at uhub? port ? configuration ? interface ?
305
306 # USB Modem
307 umodem* at uhub? port ? configuration ?
308 ucom* at umodem?
309
310 # Option N.V. Wireless WAN modems
311 uhso* at uhub? port ? configuration ?
312
313 # USB Mass Storage
314 umass* at uhub? port ? configuration ? interface ?
315 scsibus* at umass?
316 wd* at umass?
317
318 # USB audio
319 uaudio* at uhub? port ? configuration ?
320
321 # USB MIDI
322 umidi* at uhub? port ? configuration ?
323
324 # USB IrDA
325 # USB-IrDA bridge spec
326 uirda* at uhub? port ? configuration ? interface ?
327 irframe* at uirda?
328
329 # SigmaTel STIr4200 USB/IrDA Bridge
330 ustir* at uhub? port ?
331 irframe* at ustir?
332
333 # USB Ethernet adapters
334 aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
335 axe* at uhub? port ? # ASIX AX88172 based adapters
336 cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
337 cue* at uhub? port ? # CATC USB-EL1201A based adapters
338 kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
339 udav* at uhub? port ? # Davicom DM9601 based adapters
340 ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g
341 url* at uhub? port ? # Realtek RTL8150L based adapters
342
343 # USB 802.11b adapters
344 atu* at uhub? port ? # Atmel AT76C50XX based adapters
345
346 # Prolific PL2301/PL2302 host-to-host adapter
347 upl* at uhub? port ?
348
349 # Serial adapters
350 ubsa* at uhub? port ? # Belkin serial adapter
351 ucom* at ubsa? portno ?
352
353 uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
354 ucom* at uftdi? portno ?
355
356 umct* at uhub? port ? # MCT USB-RS232 serial adapter
357 ucom* at umct? portno ?
358
359 uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
360 ucom* at uplcom? portno ?
361
362 uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
363 ucom* at uvscom? portno ?
364
365 # Diamond Multimedia Rio 500
366 urio* at uhub? port ?
367
368 # USB Handspring Visor
369 uvisor* at uhub? port ?
370 ucom* at uvisor?
371
372 # Kyocera AIR-EDGE PHONE
373 ukyopon* at uhub? port ?
374 ucom* at ukyopon? portno ?
375
376 # USB scanners
377 #uscanner* at uhub? port ?
378
379 # USB scanners that use SCSI emulation, e.g., HP5300
380 usscanner* at uhub? port ?
381
382 # Y@P firmware loader
383 uyap* at uhub? port ?
384
385 # D-Link DSB-R100 USB radio
386 udsbr* at uhub? port ?
387 radio* at udsbr?
388
389 # USB Generic driver
390 ugen* at uhub? port ?
391
392
393 # Audio Devices
394
395 # Audio support
396 audio* at audiobus?
397
398 # MIDI support
399 midi* at midibus?
400
401
402 # Miscellaneous Devices
403
404 # Power switch
405 pwrsw0 at obio?
406
407 # Reset button, USL-5P misc button
408 btn0 at obio?
409
410 # Pull in optional local configuration
411 cinclude "arch/landisk/conf/GENERIC.local"
412
413
414 # Pseudo-Devices
415
416 #
417 # accept filters
418 pseudo-device accf_data # "dataready" accept filter
419 pseudo-device accf_http # "httpready" accept filter
420
421 # disk/mass storage pseudo-devices
422 pseudo-device ccd # concatenated/striped disk devices
423 #pseudo-device cgd # cryptographic disk devices
424 pseudo-device raid # RAIDframe disk driver
425 options RAID_AUTOCONFIG # auto-configuration of RAID components
426 # Options to enable various other RAIDframe RAID types.
427 #options RF_INCLUDE_EVENODD=1
428 #options RF_INCLUDE_RAID5_RS=1
429 #options RF_INCLUDE_PARITYLOGGING=1
430 #options RF_INCLUDE_CHAINDECLUSTER=1
431 #options RF_INCLUDE_INTERDECLUSTER=1
432 #options RF_INCLUDE_PARITY_DECLUSTERING=1
433 #options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
434 pseudo-device fss # file system snapshot device
435
436 pseudo-device md # memory disk device (ramdisk)
437 pseudo-device vnd # disk-like interface to files
438 options VND_COMPRESSION # compressed vnd(4)
439
440 # network pseudo-devices
441 pseudo-device bpfilter # Berkeley packet filter
442 pseudo-device ipfilter # IP filter (firewall) and NAT
443 pseudo-device loop # network loopback
444 pseudo-device ppp # Point-to-Point Protocol
445 pseudo-device pppoe # PPP over Ethernet (RFC 2516)
446 pseudo-device sl # Serial Line IP
447 pseudo-device strip # Starmode Radio IP (Metricom)
448 pseudo-device irframetty # IrDA frame line discipline
449 pseudo-device tap # virtual Ethernet
450 pseudo-device tun # network tunneling over tty
451 pseudo-device gre # generic L3 over IP tunnel
452 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
453 #pseudo-device faith # IPv[46] tcp relay translation i/f
454 #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
455 pseudo-device vlan # IEEE 802.1q encapsulation
456 pseudo-device bridge # simple inter-network bridging
457 #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
458 pseudo-device agr # IEEE 802.3ad link aggregation
459 #pseudo-device pf # PF packet filter
460 #pseudo-device pflog # PF log if
461
462 # miscellaneous pseudo-devices
463 pseudo-device pty # pseudo-terminals
464 pseudo-device sequencer # MIDI sequencer
465 pseudo-device clockctl # user control of clock subsystem
466 pseudo-device drvctl # user control of drive subsystem
467 pseudo-device ksyms # /dev/ksyms
468 pseudo-device putter # for puffs and pud
469
470 # a pseudo device needed for Coda # also needs CODA (above)
471 pseudo-device vcoda # coda minicache <-> venus comm.
472
473 # a pseudo device needed for SMBFS
474 pseudo-device nsmb # experimental - SMB requester
475
476 # wscons pseudo-devices
477 pseudo-device wsmux # mouse & keyboard multiplexor
478 #pseudo-device wsfont
479
480 options FILEASSOC # fileassoc(9) - required for Veriexec
481
482 # Veriexec
483 pseudo-device veriexec
484 #
485 # Uncomment the fingerprint methods below that are desired. Note that
486 # removing fingerprint methods will have almost no impact on the kernel
487 # code size.
488 #
489 options VERIFIED_EXEC_FP_RMD160
490 options VERIFIED_EXEC_FP_SHA256
491 options VERIFIED_EXEC_FP_SHA384
492 options VERIFIED_EXEC_FP_SHA512
493 options VERIFIED_EXEC_FP_SHA1
494 options VERIFIED_EXEC_FP_MD5
495
496 options PAX_ASLR_DEBUG=1 # PaX ASLR debug
497 options PAX_SEGVGUARD=0 # PaX Segmentation fault guard
498 options PAX_MPROTECT=1 # PaX mprotect(2) restrictions
499 options PAX_MPROTECT_DEBUG=1 # PaX mprotect debug
500 options PAX_ASLR=1 # PaX Address Space Layout Randomization
501