GENERIC revision 1.119
11.119Soster# $NetBSD: GENERIC,v 1.119 2002/01/19 18:45:10 oster Exp $
21.21Scgd#
31.117Sgmcgarry# GENERIC machine description file
41.117Sgmcgarry# 
51.117Sgmcgarry# This machine description file is used to generate the default NetBSD
61.117Sgmcgarry# kernel.  The generic kernel does not include all options, subsystems
71.117Sgmcgarry# and device drivers, but should be useful for most applications.
81.117Sgmcgarry#
91.117Sgmcgarry# The machine description file can be customised for your specific
101.117Sgmcgarry# machine to reduce the kernel size and improve its performance.
111.117Sgmcgarry#
121.117Sgmcgarry# For further information on compiling NetBSD kernels, see the config(8)
131.117Sgmcgarry# man page.
141.117Sgmcgarry#
151.117Sgmcgarry# For further information on hardware support for this architecture, see
161.117Sgmcgarry# the intro(4) man page.  For further information about kernel options
171.117Sgmcgarry# for this architecture, see the options(4) man page.  For an explanation
181.117Sgmcgarry# of each device driver in this file see the section 4 man page for the
191.117Sgmcgarry# device.
201.1Sbriggs
211.117Sgmcgarryinclude		"arch/mac68k/conf/std.mac68k"
221.95Shubertf
231.119Soster#ident 		"GENERIC-$Revision: 1.119 $"
241.2Sbriggs
251.74Sscottrmaxusers	16		# estimated number of users
261.71Sscottr
271.71Sscottr# CPU support.  At least one is REQUIRED.
281.71Sscottroptions 	M68040
291.71Sscottroptions 	M68030
301.71Sscottroptions 	M68020		# Note:  must have 68851 PMMU
311.71Sscottr
321.71Sscottr# CPU-related options.
331.71Sscottroptions 	FPSP
341.71Sscottroptions 	FPU_EMULATE
351.2Sbriggs
361.2Sbriggs# Standard system options
371.71Sscottr
381.71Sscottroptions 	UCONSOLE	# users can use TIOCCONS (for xconsole)
391.71Sscottroptions 	INSECURE	# disable kernel security levels
401.71Sscottr
411.71Sscottroptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
421.71Sscottr#options 	NTP		# NTP phase/frequency locked loop
431.71Sscottr
441.71Sscottroptions 	KTRACE		# system call tracing via ktrace(1)
451.71Sscottr
461.71Sscottroptions 	SYSVMSG		# System V-like message queues
471.71Sscottroptions 	SYSVSEM		# System V-like semaphores
481.115Slukem#options 	SEMMNI=10	# number of semaphore identifiers
491.115Slukem#options 	SEMMNS=60	# number of semaphores in system
501.115Slukem#options 	SEMUME=10	# max number of undo entries per process
511.115Slukem#options 	SEMMNU=30	# number of undo structures in system
521.71Sscottroptions 	SYSVSHM		# System V-like memory sharing
531.54Sscottr#options 	SHMMAXPGS=1024	# 1024 pages is the default
541.71Sscottr
551.54Sscottroptions 	LKM		# loadable kernel modules
561.54Sscottr
571.71Sscottr# Diagnostic/debugging support options
581.71Sscottroptions 	DIAGNOSTIC	# cheap kernel consistency checks
591.71Sscottr#options 	DEBUG		# expensive debugging checks/support
601.71Sscottroptions 	KMEMSTATS	# kernel memory statistics (vmstat -m)
611.114Slukemoptions 	DDB			# in-kernel debugger
621.70Slukem#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
631.114Slukem#options 	KGDB			# remote debugger
641.114Slukem#options 	KGDB_DEV=0xc01		# kgdb device number (dev_t)
651.114Slukem#options 	KGDB_DEVRATE=38400	# baud rate
661.71Sscottr#makeoptions	DEBUG="-g"	# compile full symbol table
671.54Sscottr
681.54Sscottr# Compatibility options
691.71Sscottr#options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
701.71Sscottr#options 	COMPAT_09	# NetBSD 0.9,
711.71Sscottroptions 	COMPAT_10	# NetBSD 1.0,
721.71Sscottroptions 	COMPAT_11	# NetBSD 1.1,
731.71Sscottroptions 	COMPAT_12	# NetBSD 1.2,
741.72Skleinkoptions 	COMPAT_13	# NetBSD 1.3,
751.89Saugustssoptions 	COMPAT_14	# NetBSD 1.4,
761.71Sscottroptions 	COMPAT_43	# and 4.3BSD
771.111Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
781.71Sscottr
791.83Sitohyoptions 	COMPAT_SUNOS	# compatibility with SunOS 4.x binaries
801.86Skleink#options 	COMPAT_SVR4	# compatibility with SVR4 binaries
811.54Sscottr#options 	COMPAT_M68K4K	# compatibility with NetBSD/m68k4k binaries
821.83Sitohy#options 	COMPAT_LINUX	# compatibility with Linux/m68k binaries
831.86Skleink#options 	EXEC_ELF32	# 32-bit ELF executables (Linux, SVR4)
841.2Sbriggs
851.65Sscottr# File systems
861.71Sscottrfile-system 	FFS		# UFS
871.71Sscottrfile-system 	EXT2FS		# second extended file system (linux)
881.71Sscottrfile-system 	LFS		# log-structured file system
891.71Sscottrfile-system 	MFS		# memory file system
901.71Sscottrfile-system 	NFS		# Network File System client
911.71Sscottrfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
921.71Sscottrfile-system 	MSDOSFS		# MS-DOS file system
931.71Sscottrfile-system 	FDESC		# /dev/fd
941.71Sscottrfile-system 	KERNFS		# /kern
951.71Sscottrfile-system 	NULLFS		# loopback file system
961.94Swrstudenfile-system 	OVERLAY		# overlay file system
971.71Sscottrfile-system 	PORTAL		# portal filesystem (still experimental)
981.71Sscottrfile-system 	PROCFS		# /proc
991.71Sscottrfile-system 	UMAPFS		# NULLFS + uid and gid remapping
1001.71Sscottrfile-system 	UNION		# union file system
1011.90Sfredbfile-system 	CODA		# Venus/Coda distributed file system
1021.55Sthorpej
1031.65Sscottr# File system options
1041.71Sscottroptions 	QUOTA		# UFS quotas
1051.75Sbouyer#options 	FFS_EI		# FFS Endian Independant support
1061.103Sfvdloptions 	SOFTDEP		# FFS soft updates support.
1071.71Sscottroptions 	NFSSERVER	# Network File System server
1081.71Sscottr#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1091.71Sscottr				# immutable) behave as system flags.
1101.92Sitojun
1111.7Sbriggs# Networking options
1121.71Sscottroptions 	GATEWAY		# packet forwarding
1131.71Sscottroptions 	INET		# IP + ICMP + TCP + UDP
1141.92Sitojunoptions 	INET6		# IPV6
1151.92Sitojun#options 	IPSEC		# IP security
1161.92Sitojun#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1171.92Sitojun#options 	IPSEC_DEBUG	# debug for IP security
1181.71Sscottr#options 	MROUTING	# IP multicast routing
1191.71Sscottroptions 	NS		# XNS
1201.71Sscottr#options 	NSIP		# XNS tunneling over IP
1211.71Sscottroptions 	ISO,TPIP	# OSI
1221.105Ssommerfe#options 	EON		# OSI tunneling over IP
1231.71Sscottroptions 	CCITT,LLC,HDLC	# X.25
1241.71Sscottroptions 	NETATALK	# AppleTalk networking protocols
1251.88Schristosoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1261.88Schristosoptions 	PPP_DEFLATE	# Deflate compression support for PPP
1271.88Schristosoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1281.88Schristosoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1291.111Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1301.71Sscottr
1311.71Sscottr# These options enable verbose messages for several subsystems.
1321.71Sscottr# Warning, these may compile large string tables into the kernel!
1331.71Sscottroptions 	SCSIVERBOSE	# human readable SCSI error messages
1341.1Sbriggs
1351.96Sscottr# wscons options
1361.96Sscottr#options 	WSEMUL_SUN		# sun terminal emulation
1371.96Sscottroptions 	WSEMUL_VT100		# VT100 / VT220 emulation
1381.96Sscottroptions 	WSDISPLAY_COMPAT_ITEFONT # use ite font (6x10)
1391.96Sscottr
1401.96Sscottr# rcons options; note that 1-bit and 8-bit displays are supported by default.
1411.96Sscottroptions 	RCONS_2BPP		# Support for 2-bit display
1421.96Sscottroptions 	RCONS_4BPP		# Support for 4-bit display
1431.96Sscottroptions 	RCONS_16BPP		# Support for 16-bit display
1441.96Sscottr
1451.9Sbriggs# Mac-specific options
1461.79Sscottr#options 	ALTXBUTTONS	# Map Opt-{1,2,3} to mouse buttons
1471.87Sbriggs#options 	DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
1481.79Sscottroptions 	GRF_COMPAT	# Include grf compatibility code
1491.77Sscottr#options 	MRG_ADB		# Use ROM-based ADB driver
1501.79Sscottroptions 	ZS_CONSOLE_ABORT
1511.84Sscottr
1521.93Sscottroptions 	NFS_BOOT_DHCP
1531.71Sscottr
1541.71Sscottr# Kernel root file system and dump configuration.
1551.55Sthorpejconfig		netbsd	root on ? type ?
1561.1Sbriggs
1571.71Sscottr#
1581.71Sscottr# Device configuration
1591.71Sscottr#
1601.71Sscottr
1611.71Sscottrmainbus0 at root
1621.71Sscottr
1631.71Sscottrfpu0 at mainbus?			# Floating-Point Coprocessor support
1641.71Sscottr
1651.71Sscottr
1661.71Sscottr# Basic Bus Support
1671.71Sscottr
1681.71Sscottr# On-board I/O bus support
1691.71Sscottrobio0 at mainbus?
1701.71Sscottr
1711.71Sscottr# NuBus support
1721.71Sscottrnubus0 at mainbus?
1731.71Sscottr
1741.71Sscottr
1751.71Sscottr# Console Devices
1761.71Sscottr
1771.71Sscottr# Apple Desktop Bus interface
1781.80Senderadb0	at obio?
1791.80Senderaed*	at adb?				# ADB event device
1801.96Sscottrakbd*	at adb?				# ADB keyboard
1811.96Sscottrams*	at adb?				# ADB mouse
1821.71Sscottr
1831.71Sscottr# Basic frame buffer support
1841.71Sscottrintvid0	at obio?			# Internal video hardware
1851.71Sscottrmacvid*	at nubus?			# NuBus video card
1861.71Sscottr
1871.71Sscottr# Device-independent frame buffer interface
1881.96Sscottrmacfb*	at intvid?
1891.96Sscottrmacfb*	at macvid?
1901.71Sscottr
1911.96Sscottr# Workstation Console devices
1921.99Sscottrwsdisplay* at macfb? console ?
1931.99Sscottrwskbd*	at akbd? console ?
1941.99Sscottrwsmouse* at ams?
1951.71Sscottr
1961.71Sscottr
1971.71Sscottr# Serial Devices
1981.71Sscottr
1991.71Sscottr# On-board serial interface
2001.71Sscottrzsc0	at obio?
2011.71Sscottrzstty*	at zsc? channel ?
2021.71Sscottr
2031.71Sscottr
2041.71Sscottr# SCSI Controllers and Devices
2051.71Sscottr
2061.71Sscottr# SCSI controllers
2071.71Sscottr# XXX - use only one of ncrscsi or sbc
2081.71Sscottrncrscsi0 at obio?			# SCSI NCR 5380
2091.71Sscottr#sbc0	at obio? flags 0x1		# MI SCSI NCR 5380
2101.71Sscottresp0	at obio?			# SCSI NCR 53C9x
2111.71Sscottresp1	at obio?			# SCSI NCR 53C9x
2121.71Sscottr
2131.71Sscottr# SCSI bus support
2141.71Sscottrscsibus* at scsi?
2151.71Sscottr
2161.71Sscottr# SCSI devices
2171.71Sscottrsd*	at scsibus? target ? lun ?	# SCSI disk drives
2181.71Sscottrst*	at scsibus? target ? lun ?	# SCSI tape drives
2191.71Sscottrcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
2201.71Sscottrch*	at scsibus? target ? lun ?	# SCSI autochangers
2211.71Sscottrse*	at scsibus? target ? lun ?	# SCSI ethernet
2221.71Sscottrss*	at scsibus? target ? lun ?	# SCSI scanners
2231.71Sscottruk*	at scsibus? target ? lun ?	# SCSI unknown
2241.84Sscottr
2251.84Sscottr
2261.84Sscottr# Miscellaneous mass storage devices
2271.84Sscottr
2281.84Sscottr# IWM floppy disk controller
2291.84Sscottriwm0	at obio?			# Sony driver (800K GCR)
2301.84Sscottrfd*	at iwm? drive ?
2311.71Sscottr
2321.71Sscottr
2331.71Sscottr# Network Interfaces
2341.71Sscottr
2351.71Sscottr# On-board Ethernet controllers
2361.71Sscottrsn*	at obio?			# SONIC-based (DP83932, DP83916)
2371.71Sscottrmc*	at obio?			# MACE-based
2381.71Sscottr
2391.71Sscottr# NuBus Ethernet controllers
2401.71Sscottrae*	at nubus?			# DP8390-based
2411.71Sscottrsn*	at nubus?			# SONIC-based (DP83932, DP83916)
2421.106Sbriggssm*	at nubus?			# SMC 91cxx-based
2431.71Sscottr
2441.106Sbriggsnsphy*	at mii? phy ?
2451.106Sbriggsukphy*	at mii? phy ?
2461.71Sscottr
2471.71Sscottr# Audio Devices
2481.71Sscottr
2491.71Sscottr# On-board audio hardware
2501.71Sscottrasc0	at obio?			# ASC/EASC audio
2511.71Sscottr
2521.71Sscottr# Pseudo-Devices
2531.71Sscottr
2541.71Sscottr# disk/mass storage pseudo-devices
2551.71Sscottrpseudo-device	ccd		4	# concatenated/striped disk devices
2561.119Soster#pseudo-device	raid		8	# RAIDframe disk driver
2571.98Ssimonb#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
2581.119Soster# Options to enable various other RAIDframe RAID types.
2591.119Soster# options	RF_INCLUDE_EVENODD=1
2601.119Soster# options	RF_INCLUDE_RAID5_RS=1
2611.119Soster# options	RF_INCLUDE_PARITYLOGGING=1
2621.119Soster# options	RF_INCLUDE_CHAINDECLUSTER=1
2631.119Soster# options	RF_INCLUDE_INTERDECLUSTER=1
2641.119Soster# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
2651.119Soster# options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
2661.71Sscottrpseudo-device	md		1	# memory disk device (ramdisk)
2671.90Sfredbpseudo-device	vcoda		1	# Venus/Coda distributed file system
2681.71Sscottrpseudo-device	vnd		4	# disk-like interface to files
2691.71Sscottr
2701.71Sscottr# network pseudo-devices
2711.71Sscottrpseudo-device	bpfilter	12	# Berkeley packet filter
2721.71Sscottrpseudo-device	ipfilter		# IP filter (firewall) and NAT
2731.71Sscottrpseudo-device	loop			# network loopback
2741.71Sscottrpseudo-device	ppp		2	# Point-to-Point Protocol
2751.118Smartinpseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
2761.71Sscottrpseudo-device	sl		2	# Serial Line IP
2771.71Sscottr#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
2781.71Sscottrpseudo-device	tun		2	# network tunneling over tty
2791.82Shwr#pseudo-device	gre		2	# generic L3 over IP tunnel
2801.92Sitojunpseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
2811.92Sitojun#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
2821.100Sitojun#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
2831.109Sbouyerpseudo-device	vlan			# IEEE 802.1q encapsulation
2841.116Satatatpseudo-device	bridge			# simple inter-network bridging
2851.71Sscottr
2861.71Sscottr# miscellaneous pseudo-devices
2871.96Sscottrpseudo-device	grf		2	# grf emulation for wscons
2881.96Sscottrpseudo-device	ite		1	# ite emulation for wscons
2891.108Sjdolecekpseudo-device	pty			# pseudo-terminals
2901.71Sscottr#pseudo-device	tb		1	# tablet line discipline
2911.71Sscottr
2921.101Sfredb# random number generator pseudo-device
2931.101Sfredbpseudo-device	rnd			# /dev/random and in-kernel generator
2941.71Sscottr#options 	RND_COM			# use "com" randomness as well (BROKEN)
295