GENERIC revision 1.31
11.31Scgd#	$NetBSD: GENERIC,v 1.31 1996/12/03 17:25:29 cgd Exp $
21.1Scgd#
31.1Scgd# Generic Alpha kernel.  Enough to get booted, etc., but not much more.
41.1Scgd
51.24Scgdinclude	"arch/alpha/conf/std.alpha"
61.1Scgd
71.1Scgdmaxusers 8
81.1Scgd
91.1Scgd# CPU Support
101.6Scgdoptions		DEC_3000_500	# Flamingo etc:	3000/[4-9]00*
111.6Scgdoptions		DEC_3000_300	# Pelican etc:	3000/300*
121.7Scgdoptions		DEC_2100_A50	# Avanti etc:	AlphaStation 400, 200, etc.
131.9Scgdoptions		DEC_KN20AA	# KN20AA:	AlphaStation 600
141.9Scgdoptions		DEC_AXPPCI_33	# NoName:	AXPpci33, etc.
151.30Scgdoptions		DEC_EB164	# EB164:	AlphaPC 164
161.9Scgd#options	DEC_2000_300	# "Jensen":	2000/300 (DECpc AXP 150)
171.1Scgd
181.1Scgd# needs to be set per system
191.1Scgdoptions		TIMEZONE="5*60"		# Minutes west of GMT (for param.c)
201.1Scgdoptions		DST=1			# Daylight savings rules (for param.c)
211.1Scgd
221.1Scgd# Standard system options
231.1Scgdoptions		DEBUG, DIAGNOSTIC	# Extra kernel debugging
241.1Scgdoptions		KTRACE			# System call tracing support
251.1Scgd
261.1Scgd# File system options
271.1Scgdoptions		FIFO		# POSIX fifo support (in all file systems)
281.1Scgdoptions		FFS		# Fast file system
291.1Scgdoptions		MFS		# Memory-based file system
301.9Scgdoptions		NFSSERVER	# Sun NFS-compatible file system server
311.1Scgdoptions		NFSCLIENT	# Sun NFS-compatible file system client
321.1Scgd
331.1Scgd# Networking options
341.1Scgdoptions		INET		# Internet protocol suite
351.1Scgd
361.1Scgd# 4.3BSD compatibility.  Should be optional, but necessary for now.
371.1Scgdoptions		COMPAT_43
381.1Scgd
391.9Scgd# Binary compatibility with previous versions of NetBSD.
401.19Scgd#options	COMPAT_09
411.9Scgdoptions		COMPAT_10
421.19Scgdoptions		COMPAT_11
431.21Scgdoptions		COMPAT_12
441.9Scgd
451.8Scgd# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK
461.8Scgd#options	COMPAT_OSF1
471.1Scgd
481.7Scgd# Loadable Kernel Modules
491.2Scgdoptions		LKM
501.5Scgd
511.5Scgd# Disable kernel security.
521.7Scgd#options	INSECURE
531.2Scgd
541.7Scgd# Misc. options
551.23Scgdoptions		EISAVERBOSE		# recognize "unknown" EISA devices
561.23Scgdoptions		PCIVERBOSE		# recognize "unknown" PCI devices
571.23Scgdoptions		TCVERBOSE		# recognize "unknown" TC devices
581.23Scgdoptions		UCONSOLE		# users can use TIOCCONS (for xconsole)
591.7Scgd
601.18Scgdconfig		netbsd	swap generic
611.18Scgd#config		netbsd	root on sd0 swap on sd0
621.18Scgd#config		netbsd	root nfs swap nfs
631.7Scgd
641.7Scgdmainbus0 at	root
651.7Scgdcpu*	at	mainbus0
661.1Scgd
671.10Scgd# TurboChannel host bus adapter support
681.10Scgdtcasic*	at	mainbus0
691.10Scgd
701.8Scgd# TurboChannel bus support
711.10Scgdtc*	at	tcasic?
721.8Scgd
731.8Scgd# TurboChannel devices
741.29Scgdioasic*	at	tc? slot ? offset ?
751.29Scgdmcclock* at	ioasic? offset ?
761.12Scgdle*	at	ioasic? offset ?
771.10Scgdscc0	at	ioasic? offset ?
781.10Scgdscc1	at	ioasic? offset ?
791.1Scgdtcds0	at	tc? slot ? offset ?
801.1Scgdesp0	at	tcds? slot ?
811.1Scgdesp1	at	tcds? slot ?
821.14Scgdcfb*	at	tc? slot ? offset ?
831.13Scgdsfb*	at	tc? slot ? offset ?
841.12Scgdle*	at	tc? slot ? offset ?
851.15Scgdfta*	at	tc? slot ? offset ?		# DEC DEFTA FDDI cards
861.1Scgd
871.8Scgd# PCI host bus adapter support
881.7Scgdapecs*	at	mainbus?
891.9Scgdcia*	at	mainbus?
901.9Scgdlca*	at	mainbus?
911.7Scgd
921.8Scgd# PCI bus support
931.7Scgdpci*	at	apecs?
941.9Scgdpci*	at	cia?
951.9Scgdpci*	at	lca?
961.9Scgdpci*	at	ppb?
971.7Scgd
981.8Scgd# PCI devices
991.20Scgd#ahc*	at	pci? dev ? function ?		# AHA-28xx SCSI (NOT 64-BIT)
1001.20Scgdde*	at	pci? dev ? function ?		# 21x4[012]-based Ethernet
1011.20Scgden*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
1021.20Scgdep*	at	pci? dev ? function ?		# 3COM 3c59x (untested)
1031.15Scgdfpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI cards
1041.20Scgdle*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
1051.20Scgdncr*	at	pci? dev ? function ?		# NCR 53c8xx SCSI
1061.20Scgdpceb*	at	pci? dev ? function ?		# Intel PCI-EISA brige
1071.28Scgdvga*	at	pci? dev ? function ?		# PCI VGA graphics
1081.20Scgdppb*	at	pci? dev ? function ?		# PCI-PCI bridges
1091.20Scgdsio*	at	pci? dev ? function ?		# Intel PCI-ISA bridge
1101.20Scgdtga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] graphics
1111.7Scgd
1121.9Scgd# ISA/EISA bus support
1131.9Scgdisa*	at	pceb?
1141.9Scgdeisa*	at	pceb?
1151.9Scgdisa*	at	sio?
1161.8Scgd
1171.8Scgd# ISA devices
1181.29Scgdmcclock* at	isa? port 0x70
1191.29Scgdpcppi*	at	isa?				# PC prog. periph. interface
1201.29Scgdpckbd*	at	pcppi?				# PC keyboard (kbd port)
1211.29Scgdpms*	at	pcppi?				# PS/2-style mouse (aux port)
1221.29Scgdcom*	at	isa? port 0x3f8 irq 4		# standard serial ports
1231.29Scgdcom*	at	isa? port 0x2f8 irq 3
1241.29Scgdlpt*	at	isa? port 0x3bc irq 7		# standard parallel port
1251.29Scgdvga*	at	isa?				# ISA (EISA: XXX) VGA
1261.29Scgd#wss*	at	isa? port 0x530 irq 9 drq 0	# Windows Sound System
1271.15Scgd
1281.15Scgd# EISA devices
1291.15Scgdfea*	at	eisa? slot ?			# DEC DEFEA FDDI cards
1301.7Scgd
1311.8Scgd# SCSI bus support
1321.7Scgdscsibus* at	esp?
1331.7Scgdscsibus* at	ncr?
1341.1Scgd
1351.8Scgd# SCSI devices
1361.31Scgdcd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
1371.31Scgdsd*	at	scsibus? target ? lun ?		# SCSI disk drives
1381.31Scgdst*	at	scsibus? target ? lun ?		# SCSI tape drives
1391.11Scgd
1401.11Scgd# Workstation Console attachments
1411.14Scgdwscons*	at	cfb?
1421.28Scgdwscons*	at	vga?
1431.13Scgdwscons*	at	sfb?
1441.11Scgdwscons*	at	tga?
1451.1Scgd
1461.19Scgdpseudo-device	bpfilter	16
1471.1Scgdpseudo-device	loop
1481.19Scgdpseudo-device	pty		64
1491.28Scgdpseudo-device	rd		1
1501.19Scgdpseudo-device	sl		4
1511.19Scgdpseudo-device	vnd		4
152