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