GENERIC.in revision 1.37
1#
2#	$NetBSD: GENERIC.in,v 1.37 2004/06/26 07:32:05 abs Exp $
3#
4# Generic atari
5#
6
7#if defined(TT030_KERNEL) || defined(FALCON_KERNEL)
8include "arch/atari/conf/std.atari"
9#elif defined (HADES_KERNEL)
10include "arch/atari/conf/std.hades"
11#elif defined (MILAN_KERNEL)
12include "arch/atari/conf/std.milan"
13#endif
14
15options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
16
17#
18# Add support for about 16 users. This variable is used to size
19# various kernel structures.
20#
21maxusers	16
22
23options 	HZ=64		# Set the clock-rate (48/64/96)
24
25# Standard system options
26options 	INSECURE	# disable kernel security levels
27#options 	NTP		# NTP phase/frequency locked loop
28
29# Enable experimental buffer queue strategy for better responsiveness under 
30# high disk I/O load. Use it with caution - it's not proven to be stable yet.
31#options 	NEW_BUFQ_STRATEGY
32
33#
34# (Co)processors this kernel should support
35#
36#if defined(TT030_KERNEL) || defined(FALCON_KERNEL)
37options 	M68030		# support for 030
38options 	FPU_EMULATE	# Support for MC68881/MC68882 emulator
39#if !defined(INSTALL_KERNEL)
40options 	M68040		# support for 040
41options 	FPSP		# 68040 Floatingpoint support
42#endif
43#else /* for the Hades & Milan: */
44options 	M68040		# support for 040
45options 	M68060		# support for 060
46options 	FPSP		# 68040 Floatingpoint support
47options 	M060SP		# MC68060 software support (Required for 060)
48#endif
49
50#
51# Networking options
52#
53options 	INET		# IP + ICMP + TCP + UDP
54
55#ifndef INSTALL_KERNEL
56options 	INET6		# IPV6
57#options 	IPSEC		# IP security
58#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
59#options 	IPSEC_DEBUG	# debug for IP security
60#options 	GATEWAY		# packet forwarding
61#options 	MROUTING	# IP multicast routing
62options 	NS		# XNS
63#options 	NSIP		# XNS tunneling over IP
64options 	ISO,TPIP	# OSI
65#options 	EON		# OSI tunneling over IP
66options 	CCITT,LLC,HDLC	# X.25
67#ifndef NO_PHYS_NETWORK
68options 	NETATALK	# AppleTalk networking protocols
69#endif
70#endif
71
72options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
73options 	PPP_DEFLATE	# Deflate compression support for PPP
74options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
75
76#ifndef INSTALL_KERNEL
77options 	PFIL_HOOKS	# pfil(9) packet filter hooks
78options 	IPFILTER_LOG	# ipmon(8) log support
79#options  	IPFILTER_DEFAULT_BLOCK	# block packages by default
80
81#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
82
83#options 	ALTQ		# Manipulate network interfaces' output queues
84#options 	ALTQ_BLUE	# Stochastic Fair Blue
85#options 	ALTQ_CBQ	# Class-Based Queueing
86#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
87#options 	ALTQ_FIFOQ	# First-In First-Out Queue
88#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
89#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
90#options 	ALTQ_LOCALQ	# Local queueing discipline
91#options 	ALTQ_PRIQ	# Priority Queueing
92#options 	ALTQ_RED	# Random Early Detection
93#options 	ALTQ_RIO	# RED with IN/OUT
94#options 	ALTQ_WFQ	# Weighted Fair Queueing
95#endif
96
97# File systems
98file-system 	FFS		# Berkeley fast file system
99file-system 	MFS		# Memory based filesystem
100file-system 	KERNFS		# Kernel parameter filesystem
101file-system 	MSDOSFS		# MSDOS filesystem
102file-system 	CD9660		# ISO 9660 filesystem with Rock Ridge
103
104#ifndef INSTALL_KERNEL
105file-system 	NFS		# Network File System client side code
106file-system 	PROCFS		# Process filesystem
107file-system 	FDESC		# /dev/fd
108file-system 	NULLFS		# Loopback filesystem
109file-system 	OVERLAY		# overlay filesystem
110file-system 	UNION		# union file system
111file-system 	UMAPFS		# null file system (with uid & gid remapping)
112file-system 	PORTAL		# portal file system
113file-system 	EXT2FS		# second extended file system (linux)
114file-system 	LFS		# log-structured file system
115#endif
116
117#ifndef INSTALL_KERNEL
118# File system options
119options 	QUOTA		# Disk quotas for local disks
120#options 	FFS_EI		# FFS Endian Independant support
121options 	SOFTDEP		# FFS soft updates support.
122options 	NFSSERVER	# Network File System server side code
123#options 	EXT2FS_SYSTEM_FLAGS	# makes ext2fs file flags (append and
124				# immutable) behave as system flags.
125#endif
126
127#
128# Misc. debugging options
129#
130options 	PANICWAIT	# Require keystroke to dump/reboot
131options 	DDB		# Kernel debugger
132#ifndef INSTALL_KERNEL
133options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
134#options 	DEBUG		# expensive debugging checks/support
135#endif
136
137#
138# Compatibility options for various existing systems
139#
140options 	COMPAT_43	# 4.3 BSD compatible system calls (required)
141options 	COMPAT_10	# Compatibility to NetBSD1.0
142options 	COMPAT_11	# Compatibility to NetBSD1.1
143options 	COMPAT_12	# Compatibility to NetBSD1.2
144options 	COMPAT_13	# Compatibility to NetBSD1.3
145options 	COMPAT_14	# Compatibility to NetBSD1.4
146options 	COMPAT_15	# Compatibility to NetBSD1.5
147options 	COMPAT_16	# Compatibility to NetBSD1.6
148#ifndef INSTALL_KERNEL
149#options 	COMPAT_09	# has no meaning on the atari
150#options 	COMPAT_SUNOS	# Support to run Sun-3 executables
151#options 	COMPAT_SVR4	# Support to run SVR4 executables
152#options 	COMPAT_LINUX	# Support to run Linux/m68k executables
153#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
154#endif
155options 	COMPAT_AOUT_M68K # Compatibility to a.out executables
156options 	EXEC_AOUT	# a.out format executables
157
158#ifndef INSTALL_KERNEL
159#
160# Support for System V IPC facilities.
161#
162options 	SYSVSHM			# System V shared memory
163options 	SYSVMSG			# System V messages
164options 	SYSVSEM			# System V semaphores
165#options 	SEMMNI=10		# number of semaphore identifiers
166#options 	SEMUME=10		# max number of undo entries per proc.
167#options 	SEMMNU=30		# number of undo structures in system
168#endif
169
170#ifndef INSTALL_KERNEL
171#
172# Support for various kernel options
173#
174options 	KTRACE			# Add kernel tracing system call
175options 	SYSTRACE		# system call vetting via systrace(1)
176options 	DIAGNOSTIC		# Add additional error checking code
177options 	USERCONF		# userconf(4) support
178#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
179#else /* INSTALL_KERNEL */
180options		PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
181#endif
182
183# These options enable verbose messages for several subsystems.
184# Warning, these may compile large string tables into the kernel!
185#ifndef INSTALL_KERNEL
186options 	SCSIVERBOSE		# human readable SCSI error messages
187#endif
188#if defined(HADES_KERNEL) || defined(MILAN_KERNEL)
189options 	MIIVERBOSE		# verbose PHY autoconfig messages
190options 	PCIVERBOSE		# verbose PCI device autoconfig messages
191#options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
192#endif
193
194#
195# Atari specific options
196#
197#options 	KFONT_8x8		# Use 8x8 font instead of 8x16
198options 	ST_POOL_SIZE=22		# smallest that allows TT-HIGH
199#if defined(TT030_KERNEL) || defined(HADES_KERNEL)
200options 	TT_SCSI			# SCSI-support for TT
201options 	TT_VIDEO		# Graphics support for TT
202#options	ET4000_HAS_2MB_MEM	# et4000 with 2 MB video memory
203#endif
204#ifdef FALCON_KERNEL
205options 	FALCON_SCSI		# SCSI-support for Falcon
206options 	FALCON_VIDEO		# Graphics support for FALCON
207#endif
208options 	MEMORY_DISK_HOOKS	# Boot RAM-disk
209options 	DISKLABEL_NBDA		# NetBSD disklabels (required)
210options 	DISKLABEL_AHDI		# NetBSD/AHDI disklabels
211#ifndef INSTALL_KERNEL
212options 	SERCONSOLE		# modem1 console support
213options 	RELOC_KERNEL		# TT/Falcon: relocate kernel to TT-RAM
214options 	MSGBUFSIZE=32768        # size of kernel msg. buffer
215#options 	STATCLOCK	        # Separate {stat,prof}clock
216#endif
217
218#ifndef INSTALL_KERNEL
219# Try linked commands on all targets
220options 	TRY_SCSI_LINKED_COMMANDS=0x7f
221#endif
222
223#
224# Build one kernel that can boot from any disk.
225#
226config		netbsd root on ? type ?
227
228pseudo-device	sl			# Slip
229pseudo-device	ppp			# ppp
230#ifndef NO_PHYS_NETWORK
231pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
232#endif
233pseudo-device	pty			# pseudo-terminals
234pseudo-device	loop			# Loopback network
235pseudo-device	vnd		3	# 3 pseudo disks (see vnconfig)
236pseudo-device	md		3	# Boot memory disk
237
238#ifndef INSTALL_KERNEL
239pseudo-device	bpfilter	2	# berkeley packet filters
240pseudo-device	tun		2	# network tunnel
241#pseudo-device	gre		2	# generic L3 over IP tunnel
242pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
243#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
244#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
245#ifndef NO_PHYS_NETWORK
246pseudo-device	vlan			# IEEE 802.1q encapsulation
247pseudo-device	bridge			# simple inter-network bridging
248#endif
249pseudo-device	ccd		4	# concatenating disk driver
250#pseudo-device	cgd		4	# cryptographic disk driver
251pseudo-device	raid		8	# RAIDframe disk driver
252options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
253# Options to enable various other RAIDframe RAID types.
254# options	RF_INCLUDE_EVENODD=1
255# options	RF_INCLUDE_RAID5_RS=1
256# options	RF_INCLUDE_PARITYLOGGING=1
257# options	RF_INCLUDE_CHAINDECLUSTER=1
258# options	RF_INCLUDE_INTERDECLUSTER=1
259# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
260# options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
261pseudo-device	ipfilter		# IP filtering device
262pseudo-device	rnd			# /dev/random and in-kernel generator
263pseudo-device	clockctl		# user control of clock subsystem
264#pseudo-device	pf			# PF packet filter
265#pseudo-device	pflog			# PF log if
266#endif
267
268#if defined(HADES_KERNEL) || defined(MILAN_KERNEL)
269
270# MII/PHY support
271exphy*	at mii? phy ?			# 3Com internal PHYs
272inphy*	at mii? phy ?			# Intel 82555 PHYs
273iophy*	at mii? phy ?			# Intel 82553 PHYs
274ukphy*	at mii? phy ?			# generic unknown PHYs
275
276# PCI network interfaces
277# If unsure, check the port-atari page for tested cards.
278ep*	at pci? dev ? function ?	# 3Com 3c59x
279fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
280
281
282#
283# This is the only tested audio card at the moment.
284#
285eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
286audio*	at eso?
287
288#endif /* defined(HADES_KERNEL) || defined(MILAN_KERNEL) */
289
290#
291# Hardware options for GENERIC are in the various machine type specific files
292#
293