DISKLESS revision 1.36
11.36Sjdolecek# $NetBSD: DISKLESS,v 1.36 2002/01/27 13:23:27 jdolecek Exp $
21.3Sgwr
31.28Sgwr# DISKLESS - Root and swap on NFS
41.28Sgwr# Desktop machines only (3/50, 3/60, 3/110)
51.28Sgwr#
61.10Sgwr# Includes devices needed to run as an X-terminal
71.1Sgwr
81.14Sjtcinclude "arch/sun3/conf/std.sun3"
91.1Sgwr
101.26Sgwr# Machines to be supported by this kernel
111.6Sgwroptions 	FPU_EMULATE
121.7Sgwroptions 	HAVECACHE		# Sun3/260 VAC
131.1Sgwr
141.1Sgwr# Needs to be set per system.  i.e change these as you see fit
151.20Sgwrmaxusers	2
161.9Sgwr
171.1Sgwr# Standard system options
181.28Sgwr#options 	KTRACE		# system call tracing
191.28Sgwr#options 	SYSVMSG		# System V message queues
201.28Sgwr#options 	SYSVSEM		# System V semaphores
211.28Sgwr#options 	SYSVSHM		# System V shared memory
221.20Sgwr#options 	SHMMAXPGS=1024	# 1024 pages is the default
231.20Sgwr#options 	LKM		# loadable kernel modules
241.20Sgwr#options 	INSECURE	# disable kernel security level
251.20Sgwr#options 	UCONSOLE	# Allow non-root TIOCCONS
261.36Sjdolecek#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
271.15Sthorpej
281.20Sgwr# Which kernel debugger?  Uncomment either this:
291.28Sgwr#options 	DDB
301.18Sgwr# ... or these for KGDB (gdb remote target)
311.35Slukem#makeoptions	DEBUG="-g"	# debugging symbols for gdb
321.20Sgwr#options 	KGDB
331.34Slukem#options 	KGDB_DEV=0x0C01	# ttya=0C00 ttyb=0C01
341.20Sgwr
351.20Sgwr# Other debugging options
361.21Slukem#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
371.20Sgwr#options 	DEBUG		# kernel debugging code
381.20Sgwr#options 	DIAGNOSTIC	# extra kernel sanity checking
391.20Sgwr#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
401.20Sgwr#options 	PMAP_DEBUG
411.20Sgwr
421.32Swiz# Compatibility options
431.28Sgwr#options 	COMPAT_SUNOS	# can run SunOS 4.1.1 executables
441.28Sgwr#options 	COMPAT_43	# and 4.3BSD and ...
451.28Sgwr#options 	COMPAT_10	# NetBSD 1.0
461.28Sgwr#options 	COMPAT_11	# NetBSD 1.1
471.28Sgwr#options 	COMPAT_12	# NetBSD 1.2
481.22Skleinkoptions 	COMPAT_13	# NetBSD 1.3
491.29Saugustssoptions 	COMPAT_14	# NetBSD 1.4
501.28Sgwr#options 	COMPAT_LINUX	# can run Linux/m68k executables
511.33Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
521.1Sgwr
531.1Sgwr# Filesystem options
541.20Sgwr#file-system	FFS		# Berkeley Fast Filesystem
551.20Sgwrfile-system	NFS		# Sun NFS client support
561.20Sgwr#file-system	CD9660		# ISO 9660 + Rock Ridge file system
571.28Sgwr#file-system	FDESC		# /dev/fd/*
581.28Sgwr#file-system	KERNFS		# /kern
591.28Sgwr#file-system	NULLFS		# loopback file system
601.28Sgwr#file-system	PROCFS		# /proc
611.20Sgwr#file-system	UNION		# union file system
621.20Sgwr#file-system	MFS		# memory-based filesystem
631.17Sthorpej
641.20Sgwr#options 	NFSSERVER	# nfs server support
651.20Sgwr#options 	QUOTA		# FFS quotas
661.28Sgwr#options 	FFS_EI		# FFS Endian Independant support
671.1Sgwr
681.1Sgwr# Networking options
691.15Sthorpejoptions 	INET		# IP prototol stack support
701.20Sgwr#options 	GATEWAY		# IP packet forwarding
711.20Sgwr#options 	ISO,TPIP	# OSI networking
721.20Sgwr#options 	EON		# OSI tunneling over IP
731.20Sgwr#options 	CCITT,LLC,HDLC	# X.25
741.20Sgwr#options 	PFIL_HOOKS	# pfil(9) packet filter hooks.
751.33Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
761.20Sgwr
771.20Sgwr# Work-around for root on slow servers (insurance...)
781.6Sgwroptions 	NFS_BOOT_RWSIZE=1024
791.24Sgwroptions 	NFS_BOOT_BOOTPARAM
801.1Sgwr
811.17Sthorpejconfig		netbsd root on ? type nfs
821.1Sgwr
831.25Sgwr# On-board I/O space (required)
841.25Sgwrinclude "arch/sun3/conf/obio.sun3"
851.25Sgwr
861.25Sgwr# On-board memory (optional)
871.25Sgwr# See frame-buffers
881.25Sgwrobmem0 at mainbus?
891.25Sgwr
901.25Sgwr# VME bus support (optional)
911.28Sgwr# (none on desktop machines)
921.25Sgwr
931.11Sgwr#
941.12Sgwr# Serial ports
951.12Sgwr#
961.19Slukemzstty0	at zsc1 channel 0	# ttya
971.19Slukemzstty1	at zsc1 channel 1	# ttyb
981.12Sgwr
991.19Slukemkbd0	at zsc0 channel 0	# keyboard
1001.19Slukemms0	at zsc0 channel 1	# mouse
1011.12Sgwr
1021.12Sgwr#
1031.11Sgwr# Network devices
1041.11Sgwr#
1051.1Sgwr
1061.11Sgwr# Intel Ethernet (onboard, or VME)
1071.28Sgwr#ie0 at obio0 addr 0x0C0000 ipl 3
1081.35Slukem#ie1 at vme2 addr 0xe88000 ipl 3 vect 0x75
1091.6Sgwr
1101.11Sgwr# Lance Ethernet (only onboard)
1111.25Sgwrle0 at obio0 addr 0x120000 ipl 3
1121.23Sgwr
1131.25Sgwr# All Sun3 machines with an "le" (3/50, 3/60) should be
1141.25Sgwr# presumed to have the old, buggy LANCE chip. (Rev. C)
1151.25Sgwroptions 	LANCE_REVC_BUG
1161.25Sgwr
1171.11Sgwr#
1181.11Sgwr# Frame buffer devices
1191.11Sgwr#
1201.11Sgwr
1211.26Sgwrinclude "arch/sun3/conf/bw2.sun3"
1221.26Sgwrinclude "arch/sun3/conf/cg4.sun3"
1231.11Sgwr
1241.11Sgwr# 3/60 P4 accelerated 8-bit color frame buffer
1251.26Sgwr# cgsix0 at obmem0 addr 0xff000000
1261.11Sgwr
1271.11Sgwr# 3/60 P4 24-bit color frame buffer
1281.26Sgwr# cgeight0 at obmem0 addr 0xff300000
1291.11Sgwr
1301.25Sgwr# Sun-3 color board, or CG5 8-bit frame buffer (VME A24/D16).
1311.28Sgwr# cgtwo0 at vme2 addr 0x400000 ipl 4 vect 0xA8
1321.11Sgwr
1331.25Sgwr# Support for the CG9 24-bit frame buffer (VME A32/D32).
1341.25Sgwr# cgnine0 at vme5 addr 0x08000000 ipl 4 vect 0xAA
1351.11Sgwr
1361.11Sgwr# Misc.
1371.20Sgwrpseudo-device	loop		1	# network loopback
1381.20Sgwrpseudo-device	bpfilter	8	# packet filter
1391.20Sgwrpseudo-device	sl		2	# CSLIP
1401.20Sgwrpseudo-device	ppp		2	# PPP
1411.20Sgwrpseudo-device	tun		2	# network tunneling over tty
1421.28Sgwr#pseudo-device	gre		2	# generic L3 over IP tunnel
1431.20Sgwr#pseudo-device	ipfilter		# ip filter
1441.6Sgwr
1451.30Sjdolecekpseudo-device	pty			# pseudo-terminals
146