OFWGENCFG revision 1.2
11.2Slukem#	$NetBSD: OFWGENCFG,v 1.2 2002/04/02 05:30:49 lukem Exp $
21.1Sthorpej#
31.1Sthorpej#	OFWGENCFG: 'generic' configuration for Open Firmware boards.
41.1Sthorpej#
51.1Sthorpej#	Uses all 'generic' drivers (except for 'ofrom', which is
61.1Sthorpej#	close enough to generic).
71.1Sthorpej#
81.1Sthorpej
91.1Sthorpejinclude	"arch/shark/conf/std.arm32"
101.1Sthorpejinclude "arch/shark/conf/std.ofwgencfg"
111.1Sthorpej
121.1Sthorpej# estimated number of users
131.1Sthorpej
141.1Sthorpejmaxusers	32
151.1Sthorpej
161.1Sthorpej# Standard system options
171.1Sthorpej
181.1Sthorpejoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
191.1Sthorpej#options 	NTP		# NTP phase/frequency locked loop
201.1Sthorpej
211.1Sthorpej# CPU options
221.1Sthorpej
231.1Sthorpejoptions 	CPU_SA110	# Support the SA110 core
241.1Sthorpejmakeoptions	COPTS="-O2 -march=armv4 -mtune=strongarm"
251.1Sthorpej
261.1Sthorpej# Architecture options
271.1Sthorpej
281.1Sthorpejoptions 	OFWGENCFG	# Enable Open Firmware bits specific to GENERIC configuration
291.1Sthorpej
301.1Sthorpej# FPA options
311.1Sthorpej
321.1Sthorpej#options 	ARMFPE		# ARM Ltd FPE
331.1Sthorpej
341.1Sthorpej# File systems
351.1Sthorpej
361.1Sthorpejfile-system	FFS		# UFS
371.1Sthorpej#file-system	LFS		# log-structured file system
381.1Sthorpejfile-system	MFS		# memory file system
391.1Sthorpejfile-system	NFS
401.1Sthorpej#file-system 	ADOSFS		# AmigaDOS-compatible file system
411.1Sthorpej#file-system 	EXT2FS		# second extended file system (linux)
421.1Sthorpej#file-system	CD9660		# ISO 9660 + Rock Ridge file system
431.1Sthorpej#file-system	MSDOSFS		# MS-DOS file system
441.1Sthorpej#file-system	FDESC		# /dev/fd
451.1Sthorpej#file-system	FILECORE	# Acorn filecore file system
461.1Sthorpejfile-system	KERNFS		# /kern
471.1Sthorpej#file-system	NULLFS		# loopback file system
481.1Sthorpej#file-system	PORTAL		# portal filesystem (still experimental)
491.1Sthorpej#file-system	PROCFS		# /proc
501.1Sthorpej#file-system	UMAPFS		# NULLFS + uid and gid remapping
511.1Sthorpej#file-system	UNION		# union file system
521.1Sthorpej
531.1Sthorpej# File system options
541.1Sthorpej#options 	QUOTA		# UFS quotas
551.1Sthorpej#options 	NFSSERVER
561.1Sthorpejoptions 	NFS_BOOT_DHCP	# NFS booting via DHCP
571.1Sthorpejoptions 	NFS_BOOT_RWSIZE=1024	# OFW driver can't cope with more
581.1Sthorpej
591.1Sthorpej# Networking options
601.1Sthorpej
611.1Sthorpej#options 	GATEWAY		# packet forwarding
621.1Sthorpejoptions 	INET		# IP + ICMP + TCP + UDP
631.1Sthorpej#options 	MROUTING	# IP multicast routing
641.1Sthorpej#options 	NS		# XNS
651.1Sthorpej#options 	NSIP		# XNS tunneling over IP
661.1Sthorpej#options 	ISO,TPIP	# OSI
671.1Sthorpej#options 	EON		# OSI tunneling over IP
681.1Sthorpej#options 	CCITT,LLC,HDLC	# X.25
691.1Sthorpej#options 	PFIL_HOOKS	# pfil(9) packet filter hooks (Required
701.1Sthorpej				# if you enable the pseudo-device ipl).
711.1Sthorpej#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
721.1Sthorpej
731.1Sthorpej# Compatibility options
741.1Sthorpej
751.1Sthorpejoptions 	COMPAT_43	# 4.3BSD compatibility.
761.1Sthorpejoptions 	COMPAT_12	# NetBSD 1.2 compatibility.
771.1Sthorpej#options 	COMPAT_11	# NetBSD 1.1 compatibility.
781.1Sthorpej#options 	COMPAT_10	# NetBSD 1.0 compatibility.
791.1Sthorpej#options 	COMPAT_09	# NetBSD 0.9 compatibility.
801.1Sthorpej#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
811.1Sthorpej
821.1Sthorpej# Shared memory options
831.1Sthorpej
841.1Sthorpejoptions 	SYSVMSG		# System V-like message queues
851.1Sthorpejoptions 	SYSVSEM		# System V-like semaphores
861.1Sthorpejoptions 	SYSVSHM		# System V-like memory sharing
871.1Sthorpejoptions 	SHMMAXPGS=1024	# 1024 pages is the default
881.1Sthorpej
891.1Sthorpej# Device options
901.1Sthorpej
911.1Sthorpej#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
921.2Slukem#options 	MEMORY_DISK_ROOT_SIZE=0	# Size in KBytes
931.1Sthorpej
941.1Sthorpej# Miscellaneous kernel options
951.1Sthorpejoptions 	KTRACE		# system call tracing, a la ktrace(1)
961.1Sthorpejoptions 	IRQSTATS	# manage IRQ statistics
971.1Sthorpej#options 	LKM		# loadable kernel modules
981.1Sthorpejoptions 	KMEMSTATS	# kernel memory statistics
991.1Sthorpej#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
1001.1Sthorpej
1011.1Sthorpej# Development and Debugging options
1021.1Sthorpej
1031.1Sthorpej#options 	ARM700BUGTRACK	# track the ARM700 swi bug
1041.1Sthorpej#options 	PORTMASTER	# Enable PortMaster only options
1051.1Sthorpejoptions 	DIAGNOSTIC	# internally consistency checks
1061.1Sthorpej#options 	IPKDB		# remote kernel debugging
1071.1Sthorpejoptions 	DDB		# in-kernel debugger
1081.1Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
1091.1Sthorpej
1101.1Sthorpejconfig		netbsd	root on ofnet0 type nfs
1111.1Sthorpej#config		netbsd	root nfs swap nfs
1121.1Sthorpej
1131.1Sthorpej# The main bus device
1141.1Sthorpejmainbus0 at root
1151.1Sthorpej
1161.1Sthorpej# The boot cpu
1171.1Sthorpejcpu0 at mainbus?
1181.1Sthorpej
1191.1Sthorpej# Open Firmware devices
1201.1Sthorpejofbus*		at root
1211.1Sthorpejofbus*		at ofbus?
1221.1Sthorpejofdisk*		at ofbus?
1231.1Sthorpejofnet*		at ofbus?
1241.1Sthorpejofcons*		at ofbus?
1251.1Sthorpejofrtc*		at ofbus?
1261.1Sthorpejofrom*		at ofbus?
1271.1Sthorpej
1281.1Sthorpejpseudo-device	loop	1		# network loopback
1291.1Sthorpejpseudo-device	bpfilter 8		# packet filter
1301.1Sthorpej#pseudo-device	sl	2		# CSLIP
1311.1Sthorpej#pseudo-device	ppp	2		# PPP
1321.1Sthorpej#pseudo-device	tun	2		# network tunneling over tty
1331.1Sthorpej#pseudo-device	ipfilter 1		# ip filter
1341.1Sthorpej
1351.1Sthorpejpseudo-device	pty			# pseudo-terminals
1361.1Sthorpej#pseudo-device	tb	1		# tablet line discipline
1371.1Sthorpejpseudo-device	vnd	4		# disk-like interface to files
1381.1Sthorpej#pseudo-device	ccd	2		# concatenated disk devices
1391.1Sthorpejpseudo-device	rnd			# /dev/random and /dev/urandom
1401.1Sthorpej
1411.1Sthorpej#pseudo-device	md	1		# Ramdisk driver
142