RAMDISK revision 1.1
11.1Scgd#	$NetBSD: RAMDISK,v 1.1 1996/09/15 17:23:12 cgd Exp $
21.1Scgd#
31.1Scgd# Generic Alpha kernel.  Enough to get booted, etc., but not much more.
41.1Scgd
51.1Scgdinclude	"std.alpha"
61.1Scgd
71.1Scgdmaxusers 8
81.1Scgd
91.1Scgd# CPU Support
101.1Scgdoptions		DEC_3000_500	# Flamingo etc:	3000/[4-9]00*
111.1Scgdoptions		DEC_3000_300	# Pelican etc:	3000/300*
121.1Scgdoptions		DEC_2100_A50	# Avanti etc:	AlphaStation 400, 200, etc.
131.1Scgdoptions		DEC_KN20AA	# KN20AA:	AlphaStation 600
141.1Scgdoptions		DEC_AXPPCI_33	# NoName:	AXPpci33, etc.
151.1Scgd#options	DEC_2000_300	# "Jensen":	2000/300 (DECpc AXP 150)
161.1Scgd
171.1Scgd# Enable the hooks used for initializing the ram-disk.
181.1Scgdoptions		RAMDISK_HOOKS
191.1Scgdoptions		MINIROOTSIZE=8192	# 4 Megabytes!
201.1Scgd
211.1Scgd# needs to be set per system
221.1Scgdoptions		TIMEZONE="5*60"		# Minutes west of GMT (for param.c)
231.1Scgdoptions		DST=1			# Daylight savings rules (for param.c)
241.1Scgd
251.1Scgd# Standard system options
261.1Scgdoptions		SWAPPAGER, VNODEPAGER, DEVPAGER # Paging (mandatory)
271.1Scgdoptions		DEBUG, DIAGNOSTIC	# Extra kernel debugging
281.1Scgdoptions		KTRACE			# System call tracing support
291.1Scgd
301.1Scgd# File system options
311.1Scgdoptions		FIFO		# POSIX fifo support (in all file systems)
321.1Scgdoptions		FFS		# Fast file system
331.1Scgdoptions		MFS		# Memory-based file system
341.1Scgdoptions		NFSSERVER	# Sun NFS-compatible file system server
351.1Scgdoptions		NFSCLIENT	# Sun NFS-compatible file system client
361.1Scgd
371.1Scgd# Networking options
381.1Scgdoptions		INET		# Internet protocol suite
391.1Scgd
401.1Scgd# 4.3BSD compatibility.  Should be optional, but necessary for now.
411.1Scgdoptions		COMPAT_43
421.1Scgd
431.1Scgd# Binary compatibility with previous versions of NetBSD.
441.1Scgd#options	COMPAT_09
451.1Scgdoptions		COMPAT_10
461.1Scgdoptions		COMPAT_11
471.1Scgdoptions		COMPAT_12
481.1Scgd
491.1Scgd# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK
501.1Scgd#options	COMPAT_OSF1
511.1Scgd
521.1Scgd# Loadable Kernel Modules
531.1Scgdoptions		LKM
541.1Scgd
551.1Scgd# Disable kernel security.
561.1Scgd#options	INSECURE
571.1Scgd
581.1Scgd# Misc. options
591.1Scgdoptions		PCIVERBOSE	# recognize "unknown" PCI devices
601.1Scgd
611.1Scgdconfig		netbsd	root on rd0
621.1Scgd#config		netbsd	root on sd0 swap on sd0
631.1Scgd#config		netbsd	root nfs swap nfs
641.1Scgd
651.1Scgdmainbus0 at	root
661.1Scgdcpu*	at	mainbus0
671.1Scgd
681.1Scgd# TurboChannel host bus adapter support
691.1Scgdtcasic*	at	mainbus0
701.1Scgd
711.1Scgd# TurboChannel bus support
721.1Scgdtc*	at	tcasic?
731.1Scgd
741.1Scgd# TurboChannel devices
751.1Scgdioasic0	at	tc? slot ? offset ?
761.1Scgdmcclock0 at	ioasic? offset ?
771.1Scgdle*	at	ioasic? offset ?
781.1Scgdscc0	at	ioasic? offset ?
791.1Scgdscc1	at	ioasic? offset ?
801.1Scgdtcds0	at	tc? slot ? offset ?
811.1Scgdesp0	at	tcds? slot ?
821.1Scgdesp1	at	tcds? slot ?
831.1Scgdcfb*	at	tc? slot ? offset ?
841.1Scgdsfb*	at	tc? slot ? offset ?
851.1Scgdle*	at	tc? slot ? offset ?
861.1Scgdfta*	at	tc? slot ? offset ?		# DEC DEFTA FDDI cards
871.1Scgd
881.1Scgd# PCI host bus adapter support
891.1Scgdapecs*	at	mainbus?
901.1Scgdcia*	at	mainbus?
911.1Scgdlca*	at	mainbus?
921.1Scgd
931.1Scgd# PCI bus support
941.1Scgdpci*	at	apecs?
951.1Scgdpci*	at	cia?
961.1Scgdpci*	at	lca?
971.1Scgdpci*	at	ppb?
981.1Scgd
991.1Scgd# PCI devices
1001.1Scgd#ahc*	at	pci? dev ? function ?		# AHA-28xx SCSI (NOT 64-BIT)
1011.1Scgdde*	at	pci? dev ? function ?		# 21x4[012]-based Ethernet
1021.1Scgden*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
1031.1Scgdep*	at	pci? dev ? function ?		# 3COM 3c59x (untested)
1041.1Scgdfpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI cards
1051.1Scgdle*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
1061.1Scgdncr*	at	pci? dev ? function ?		# NCR 53c8xx SCSI
1071.1Scgdpceb*	at	pci? dev ? function ?		# Intel PCI-EISA brige
1081.1Scgdpcivga*	at	pci? dev ? function ?		# PCI VGA graphics
1091.1Scgdppb*	at	pci? dev ? function ?		# PCI-PCI bridges
1101.1Scgdsio*	at	pci? dev ? function ?		# Intel PCI-ISA bridge
1111.1Scgdtga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] graphics
1121.1Scgd
1131.1Scgd# ISA/EISA bus support
1141.1Scgdisa*	at	pceb?
1151.1Scgdeisa*	at	pceb?
1161.1Scgdisa*	at	sio?
1171.1Scgd
1181.1Scgd# ISA devices
1191.1Scgdmcclock0 at	isa? port 0x70
1201.1Scgdpckbd0	at	isa? port 0x60 irq 1		# PC-ish ISA keyboard
1211.1Scgdpms0	at	isa? port 0x60 irq 12		# PS/2 auxiliary
1221.1Scgdcom0	at	isa? port 0x3f8 irq 4		# standard serial ports
1231.1Scgdcom1	at	isa? port 0x2f8 irq 3
1241.1Scgdlpt0	at	isa? port 0x3bc irq 7		# standard parallel port
1251.1Scgd#wss0	at	isa? port 0x530 irq 9 drq 0	# Windows Sound System
1261.1Scgd
1271.1Scgd# EISA devices
1281.1Scgdfea*	at	eisa? slot ?			# DEC DEFEA FDDI cards
1291.1Scgd
1301.1Scgd# SCSI bus support
1311.1Scgdscsibus* at	esp?
1321.1Scgdscsibus* at	ncr?
1331.1Scgd
1341.1Scgd# SCSI devices
1351.1Scgdsd*	at	scsibus? target ? lun ?
1361.1Scgdst*	at	scsibus? target ? lun ?
1371.1Scgdcd*	at	scsibus? target ? lun ?
1381.1Scgd
1391.1Scgd# Workstation Console attachments
1401.1Scgdwscons*	at	cfb?
1411.1Scgdwscons*	at	pcivga?
1421.1Scgdwscons*	at	sfb?
1431.1Scgdwscons*	at	tga?
1441.1Scgd
1451.1Scgdpseudo-device	bpfilter	16
1461.1Scgdpseudo-device	loop
1471.1Scgdpseudo-device	pty		64
1481.1Scgdpseudo-device	sl		4
1491.1Scgdpseudo-device	vnd		4
1501.1Scgdpseudo-device	rd		1
151