GENERIC.in revision 1.114 1 #
2 # $NetBSD: GENERIC.in,v 1.114 2017/09/14 07:58:39 mrg Exp $
3 #
4 # Generic atari
5 #
6 # Note: We have size targets for gzipped kernels:
7 # - ATARITT and FALCON - 1.44M floppy
8 # - SMALL030 - 720K (or worst case 800K) floppy
9
10 #if defined(TT030_KERNEL) || defined(FALCON_KERNEL)
11 include "arch/atari/conf/std.atari"
12 #elif defined (HADES_KERNEL)
13 include "arch/atari/conf/std.hades"
14 #elif defined (MILAN_KERNEL)
15 include "arch/atari/conf/std.milan"
16 #endif /* TT030_KERNEL / FALCON_KERNEL / HADES_KERNEL / MILAN_KERNEL */
17
18 #if !defined(SMALL030_KERNEL)
19 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
20 #endif /* !SMALL030_KERNEL */
21
22 #if !defined(SMALL030_KERNEL)
23 makeoptions COPTS="-O2 -fno-reorder-blocks" # see share/mk/sys.mk
24 #else
25 makeoptions COPTS="-Os" # optimize for space
26 #endif /* !SMALL030_KERNEL */
27
28 #if defined(SMALL030_KERNEL) || \
29 (!defined(TT030_KERNEL) && !defined(HADES_KERNEL) && !defined(MILAN_KERNEL))
30 #define NO_PHYS_NETWORK 1
31 #endif /* SMALL030_KERNEL || ... */
32
33 #
34 # Add support for about 16 users. This variable is used to size
35 # various kernel structures.
36 #
37 maxusers 16
38
39 options HZ=64 # Set the clock-rate (48/64/96)
40
41 # Standard system options
42 options INSECURE # disable kernel security levels
43 #options NTP # NTP phase/frequency locked loop
44
45 # Enable experimental buffer queue strategy for better responsiveness under
46 # high disk I/O load. Use it with caution - it's not proven to be stable yet.
47 #options BUFQ_READPRIO
48 #options BUFQ_PRIOCSCAN
49
50 #
51 # (Co)processors this kernel should support
52 #
53 #if defined(TT030_KERNEL) || defined(FALCON_KERNEL)
54 options M68030 # support for 030
55 #endif /* TT030_KERNEL || FALCON_KERNEL */
56 #if defined(FALCON_KERNEL)
57 options FPU_EMULATE # Support for MC68881/MC68882 emulator
58 #endif /* FALCON_KERNEL */
59 #if (defined(FALCON_KERNEL) && !defined(SMALL030_KERNEL)) || \
60 defined(HADES_KERNEL) || defined(MILAN_KERNEL)
61 options M68040 # support for 040
62 options M68060 # support for 060
63 options FPSP # 68040 Floatingpoint support
64 options M060SP # MC68060 software support (Required for 060)
65 #endif /* ! FALCON_KERNEL & ! SMALL030_KERNEL ... */
66
67 #
68 # Networking options
69 #
70 options INET # IP + ICMP + TCP + UDP
71
72 #if !defined(SMALL030_KERNEL)
73 options INET6 # IPV6
74 #options IPSEC # IP security
75 #options IPSEC_DEBUG # debug for IP security
76 #options GATEWAY # packet forwarding
77 #options MROUTING # IP multicast routing
78 #options PIM # Protocol Independent Multicast
79 #if !defined(NO_PHYS_NETWORK)
80 #options NETATALK # AppleTalk networking protocols
81 #endif /* NO_PHYS_NETWORK */
82
83 options PPP_BSDCOMP # BSD-Compress compression support for PPP
84 options PPP_DEFLATE # Deflate compression support for PPP
85 options PPP_FILTER # Active filter support for PPP (requires bpf)
86
87 #options IPFILTER_LOG # ipmon(8) log support
88 #options IPFILTER_LOOKUP # ippool(8) support
89 #options IPFILTER_COMPAT # Compat for IP-Filter
90 #options IPFILTER_DEFAULT_BLOCK # block packages by default
91
92 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
93
94 #options ALTQ # Manipulate network interfaces' output queues
95 #options ALTQ_BLUE # Stochastic Fair Blue
96 #options ALTQ_CBQ # Class-Based Queueing
97 #options ALTQ_CDNR # Diffserv Traffic Conditioner
98 #options ALTQ_FIFOQ # First-In First-Out Queue
99 #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
100 #options ALTQ_HFSC # Hierarchical Fair Service Curve
101 #options ALTQ_LOCALQ # Local queueing discipline
102 #options ALTQ_PRIQ # Priority Queueing
103 #options ALTQ_RED # Random Early Detection
104 #options ALTQ_RIO # RED with IN/OUT
105 #options ALTQ_WFQ # Weighted Fair Queueing
106 #endif /* !SMALL030_KERNEL */
107
108 # File systems
109 file-system FFS # Berkeley fast file system
110 file-system MFS # Memory based filesystem
111 file-system MSDOSFS # MSDOS filesystem
112 file-system CD9660 # ISO 9660 filesystem with Rock Ridge
113 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
114
115 #if !defined(SMALL030_KERNEL)
116 file-system KERNFS # Kernel parameter filesystem
117 file-system NFS # Network File System client side code
118 file-system PROCFS # Process filesystem
119 #file-system FDESC # /dev/fd
120 file-system NULLFS # Loopback filesystem
121 #file-system OVERLAY # overlay filesystem
122 #file-system UNION # union file system
123 #file-system UMAPFS # null file system (with uid & gid remapping)
124 #file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
125 #file-system EXT2FS # second extended file system (linux)
126 #file-system LFS # log-structured file system
127 file-system PTYFS # /dev/pts/N support
128 file-system TMPFS # Efficient memory file-system
129 #endif /* !SMALL030_KERNEL */
130
131 # File system options
132 options WAPBL # File system journaling support
133 options FFS_NO_SNAPSHOT # No FFS snapshot support
134 #if !defined(SMALL030_KERNEL)
135 #options QUOTA # legacy UFS quotas
136 #options QUOTA2 # new, in-filesystem UFS quotas
137 #options FFS_EI # FFS Endian Independent support
138 #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
139 options NFSSERVER # Network File System server side code
140 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
141 # immutable) behave as system flags.
142 #endif /* !SMALL030_KERNEL */
143
144 #
145 # Misc. debugging options
146 #
147 options PANICWAIT # Require keystroke to dump/reboot
148 #if !defined(SMALL030_KERNEL)
149 options DDB # Kernel debugger
150 options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
151 #options DEBUG # expensive debugging checks/support
152 #endif /* !SMALL030_KERNEL */
153
154 #
155 # Compatibility options for various existing systems
156 #
157 include "conf/compat_netbsd10.config"
158 #if defined(SMALL030_KERNEL)
159 no options COMPAT_43 # 4.3 BSD compatible system calls
160 no options COMPAT_10 # NetBSD 1.0,
161 no options COMPAT_11 # NetBSD 1.1,
162 no options COMPAT_12 # NetBSD 1.2,
163 no options COMPAT_13 # NetBSD 1.3,
164 no options COMPAT_14 # NetBSD 1.4,
165 no options COMPAT_15 # NetBSD 1.5,
166 #endif /* !SMALL030_KERNEL */
167 #if !defined(SMALL030_KERNEL)
168 #options COMPAT_SUNOS # Support to run Sun-3 executables
169 #options COMPAT_SVR4 # Support to run SVR4 executables
170 #options COMPAT_LINUX # Support to run Linux/m68k executables
171 options COMPAT_AOUT_M68K # Compatibility to a.out executables
172 options EXEC_AOUT # a.out format executables
173 #endif /* !SMALL030_KERNEL */
174
175 #if !defined(SMALL030_KERNEL)
176 #
177 # Support for System V IPC facilities.
178 #
179 options SYSVSHM # System V shared memory
180 options SYSVMSG # System V messages
181 options SYSVSEM # System V semaphores
182 #endif /* !SMALL030_KERNEL */
183
184 #if !defined(SMALL030_KERNEL)
185 #
186 # Support for various kernel options
187 #
188 options KTRACE # Add kernel tracing system call
189 #options DIAGNOSTIC # Add additional error checking code
190 options USERCONF # userconf(4) support
191 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
192 options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
193 options MODULAR # new style module(7) framework
194 #else /* SMALL030_KERNEL */
195 options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
196 #endif /* !SMALL030_KERNEL */
197
198 # These options enable verbose messages for several subsystems.
199 # Warning, these may compile large string tables into the kernel!
200 #if !defined(SMALL030_KERNEL)
201 #options SCSIVERBOSE # human readable SCSI error messages
202 #endif /* !SMALL030_KERNEL */
203 #if defined(HADES_KERNEL) || defined(MILAN_KERNEL)
204 #options MIIVERBOSE # verbose PHY autoconfig messages
205 #options PCIVERBOSE # verbose PCI device autoconfig messages
206 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
207 #endif
208
209 #
210 # Atari specific options
211 #
212 #options KFONT_8x8 # Use 8x8 font instead of 8x16
213 options ST_POOL_SIZE=24 # smallest that allows TT-HIGH
214 #if defined(TT030_KERNEL) || defined(HADES_KERNEL)
215 options TT_SCSI # SCSI-support for TT
216 options TT_VIDEO # Graphics support for TT
217 #options ET4000_HAS_2MB_MEM # et4000 with 2 MB video memory
218 #endif
219 #if defined(FALCON_KERNEL)
220 options FALCON_SCSI # SCSI-support for Falcon
221 options FALCON_VIDEO # Graphics support for FALCON
222 #endif /* FALCON_KERNEL */
223 options MEMORY_DISK_HOOKS # Boot RAM-disk
224 options DISKLABEL_NBDA # NetBSD disklabels (required)
225 options DISKLABEL_AHDI # NetBSD/AHDI disklabels
226 #if !defined(SMALL030_KERNEL)
227 #if !defined(FALCON_KERNEL)
228 #options SERCONSOLE # modem1 console support, breaks Falcon
229 #endif /* !FALCON_KERNEL */
230 options RELOC_KERNEL # TT/Falcon: relocate kernel to TT-RAM
231 options MSGBUFSIZE=32768 # size of kernel msg. buffer
232 #options STATCLOCK # Separate {stat,prof}clock
233 #endif /* !SMALL030_KERNEL */
234
235 #if !defined(SMALL030_KERNEL)
236 # Try linked commands on all targets
237 options TRY_SCSI_LINKED_COMMANDS=0x7f
238 #endif /* !SMALL030_KERNEL */
239
240 #
241 # Build one kernel that can boot from any disk.
242 #
243 config netbsd root on ? type ?
244
245 pseudo-device sl # Slip
246 #if !defined(SMALL030_KERNEL)
247 pseudo-device ppp # ppp
248 #endif /* !SMALL030_KERNEL */
249 #if !defined(NO_PHYS_NETWORK)
250 #pseudo-device pppoe # PPP over Ethernet (RFC 2516)
251 #endif /* NO_PHYS_NETWORK */
252 pseudo-device pty # pseudo-terminals
253 pseudo-device loop # Loopback network
254 #options VND_COMPRESSION # compressed vnd(4)
255 pseudo-device md # Boot memory disk
256 #pseudo-device putter # for puffs and pud
257
258 #if !defined(SMALL030_KERNEL)
259 pseudo-device vnd # 3 pseudo disks (see vnconfig)
260 pseudo-device bpfilter # berkeley packet filters
261 #pseudo-device carp # Common Address Redundancy Protocol
262 #pseudo-device tun # network tunnel
263 #pseudo-device tap # virtual Ethernet
264 #pseudo-device gre # generic L3 over IP tunnel
265 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
266 #pseudo-device faith # IPv[46] tcp relay translation i/f
267 pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
268 #if !defined(NO_PHYS_NETWORK)
269 #pseudo-device vlan # IEEE 802.1q encapsulation
270 #pseudo-device bridge # simple inter-network bridging
271 #pseudo-device agr # IEEE 802.3ad link aggregation
272 #endif /* NO_PHYS_NETWORK */
273 #pseudo-device ccd # concatenating disk driver
274 #pseudo-device cgd # cryptographic disk driver
275 #pseudo-device raid # RAIDframe disk driver
276 #options RAID_AUTOCONFIG # auto-configuration of RAID components
277 # Options to enable various other RAIDframe RAID types.
278 # options RF_INCLUDE_EVENODD=1
279 # options RF_INCLUDE_RAID5_RS=1
280 # options RF_INCLUDE_PARITYLOGGING=1
281 # options RF_INCLUDE_CHAINDECLUSTER=1
282 # options RF_INCLUDE_INTERDECLUSTER=1
283 # options RF_INCLUDE_PARITY_DECLUSTERING=1
284 # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
285 #pseudo-device fss # file system snapshot device
286 #pseudo-device ipfilter # IP filtering device
287 pseudo-device clockctl # user control of clock subsystem
288 pseudo-device ksyms # /dev/ksyms
289 #pseudo-device pf # PF packet filter
290 #pseudo-device pflog # PF log if
291 #endif /* !SMALL030_KERNEL */
292
293 #if defined(HADES_KERNEL) || defined(MILAN_KERNEL)
294
295 # MII/PHY support
296 exphy* at mii? phy ? # 3Com internal PHYs
297 inphy* at mii? phy ? # Intel 82555 PHYs
298 iophy* at mii? phy ? # Intel 82553 PHYs
299 ukphy* at mii? phy ? # generic unknown PHYs
300
301 # PCI network interfaces
302 # If unsure, check the port-atari page for tested cards.
303 ep* at pci? dev ? function ? # 3Com 3c59x
304 fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
305
306
307 #
308 # This is the only tested audio card at the moment.
309 #
310 eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive
311 audio* at eso?
312
313 spkr* at audio? # PC speaker (synthesized)
314
315 #endif /* defined(HADES_KERNEL) || defined(MILAN_KERNEL) */
316
317 #
318 # Hardware options for HADES and MILAN are in their machine type specific files
319 #
320
321 #if defined(TT030_KERNEL) || defined(FALCON_KERNEL)
322
323 pseudo-device view 4 # View (graphics mapping)
324 #if !defined (SMALL030_KERNEL)
325 pseudo-device mouse 1 # mouse
326 #endif /* ! SMALL030_KERNEL */
327
328 #
329 # The following sections describe various hardware options.
330 #
331 ncrscsi0 at mainbus0 # NCR5380 SCSI driver
332 zs0 at mainbus0 # Serial support through 8530
333 grfbus0 at mainbus0 # bitmapped display's
334 grfcc0 at grfbus0 # graphics driver
335 ite0 at grfcc0 # console
336 nvr0 at mainbus0 # nvram driver
337
338 #if !defined(SMALL030_KERNEL)
339 grfcc1 at grfbus0 # 2nd graphics driver
340 ite1 at grfcc1 # 2nd tty
341 grfcc2 at grfbus0 # 3rd graphics driver
342 ite2 at grfcc2 # 3rd tty
343 lp0 at mainbus0 # centronics printer
344 ser0 at mainbus0 # UART on first 68901 (ttyB0)
345 ne0 at mainbus0 # EtherNEC on Atari ROM cartridge slot
346
347 #if defined(TT030_KERNEL)
348 avmebus0 at mainbus0 # VME bus
349 vme0 at avmebus0
350 le0 at vme0 irq 5 # Lance ethernet (Riebl/PAM).
351 le0 at vme0 irq 4 # Lance ethernet (BVME410).
352 we0 at vme0 irq 4 # SMC Elite Ultra with SMC_TT VME-ISA bridge
353 et4k0 at vme0 # Crazy Dots II
354 #endif /* TT030_KERNEL */
355 #endif /* SMALL030_KERNEL */
356
357 #if defined(FALCON_KERNEL)
358 wdc0 at mainbus0 # IDE-bus
359 atabus* at wdc? channel ?
360 wd* at atabus? drive ?
361
362 # ATAPI bus support
363 atapibus* at atabus?
364
365 # ATAPI devices
366 cd* at atapibus? drive ? # ATAPI CD-ROM drives
367 #endif /* FALCON_KERNEL */
368
369 # SCSI devices
370 scsibus* at scsi? # SCSI bus
371 sd* at scsibus? target ? lun ? # SCSI disk drives
372 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
373 #if !defined (SMALL030_KERNEL)
374 #st* at scsibus? target ? lun ? # SCSI tape drives
375 #ch* at scsibus? target ? lun ? # SCSI autochangers
376 #ss* at scsibus? target ? lun ? # SCSI scanners
377 se* at scsibus? target ? lun ? # SCSI ethernet
378 #uk* at scsibus? target ? lun ? # SCSI unknown
379 #endif /* ! SMALL030_KERNEL */
380
381 #endif /* TT030_KERNEL || FALCON_KERNEL */
382