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