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