INSTALLSBC revision 1.21
11.21Schs#	$NetBSD: INSTALLSBC,v 1.21 2005/01/19 02:04:49 chs Exp $
21.1Stoddpw#
31.2Sfredb# INSTALLSBC
41.1Stoddpw
51.1Stoddpwinclude	"arch/mac68k/conf/std.mac68k"
61.8Satatat
71.8Satatat#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
81.1Stoddpw
91.3Slukemmakeoptions	COPTS="-Os"		# Optimise for space. Implies -O2
101.1Stoddpw
111.1Stoddpwmaxusers	8		# estimated number of users
121.1Stoddpw
131.1Stoddpw# Enable the hooks used for initializing the ram-disk.
141.1Stoddpwoptions 	MEMORY_DISK_HOOKS
151.1Stoddpwoptions 	MEMORY_DISK_IS_ROOT 	# Force root on ram-disk
161.6Slukemoptions 	MEMORY_DISK_ROOT_SIZE=5120	# 2.5 MB
171.1Stoddpw
181.1Stoddpw# CPU support.  At least one is REQUIRED.
191.1Stoddpwoptions 	M68040
201.1Stoddpwoptions 	M68030
211.1Stoddpwoptions 	M68020		# Note:  must have 68851 PMMU
221.1Stoddpw
231.1Stoddpw# CPU-related options.
241.1Stoddpwoptions 	FPSP
251.1Stoddpwoptions 	FPU_EMULATE
261.1Stoddpw
271.1Stoddpw# Standard system options
281.1Stoddpw
291.1Stoddpwoptions 	INSECURE	# disable kernel security levels
301.1Stoddpw
311.1Stoddpwoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
321.4Sjdolecek
331.13Slukemoptions 	USERCONF	# userconf(4) support
341.12Sabsoptions		PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
351.19Satatat#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
361.12Sabsoptions 	MALLOC_NOINLINE		# Not inlining MALLOC saves memory
371.1Stoddpw
381.1Stoddpw# Diagnostic/debugging support options - XXX remove these at some point
391.1Stoddpwoptions 	DIAGNOSTIC	# cheap kernel consistency checks
401.1Stoddpwoptions 	DDB		# in-kernel debugger
411.1Stoddpw#options 	ADB_DEBUG	# ADB debugging
421.1Stoddpw
431.1Stoddpw# Compatibility options
441.1Stoddpwoptions 	COMPAT_10	# NetBSD 1.0,
451.1Stoddpwoptions 	COMPAT_11	# NetBSD 1.1,
461.1Stoddpwoptions 	COMPAT_12	# NetBSD 1.2,
471.1Stoddpwoptions 	COMPAT_13	# NetBSD 1.3,
481.1Stoddpwoptions 	COMPAT_14	# NetBSD 1.4,
491.16Scloptions 	COMPAT_15	# NetBSD 1.5,
501.16Scloptions 	COMPAT_16	# NetBSD 1.6,
511.1Stoddpwoptions 	COMPAT_43	# and 4.3BSD
521.20Schristosoptions		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
531.1Stoddpw
541.1Stoddpw# File systems
551.1Stoddpwfile-system 	FFS		# UFS
561.1Stoddpwfile-system 	NFS		# Network File System client
571.1Stoddpwfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
581.1Stoddpwfile-system 	MSDOSFS		# MS-DOS file system
591.1Stoddpwfile-system 	KERNFS		# /kern
601.1Stoddpw
611.1Stoddpw# Filesystem options
621.1Stoddpw#options 	NFS_V2_ONLY	# Exclude NFS3 and NQNFS code to save space
631.12Sabsoptions 	VNODE_OP_NOINLINE	# Not inlining vnode op calls saves mem
641.1Stoddpw
651.1Stoddpw# Networking options
661.1Stoddpwoptions 	INET		# IP + ICMP + TCP + UDP
671.1Stoddpw
681.1Stoddpw# These options enable verbose messages for several subsystems.
691.1Stoddpw# Warning, these may compile large string tables into the kernel!
701.1Stoddpwoptions 	SCSIVERBOSE	# human readable SCSI error messages
711.1Stoddpw
721.1Stoddpw# wscons options
731.1Stoddpw#options 	WSEMUL_SUN		# sun terminal emulation
741.1Stoddpwoptions 	WSEMUL_VT100		# VT100 / VT220 emulation
751.1Stoddpwoptions 	WSDISPLAY_COMPAT_ITEFONT # use ite font (6x10)
761.1Stoddpw
771.1Stoddpw# rcons options; note that 1-bit and 8-bit displays are supported by default.
781.1Stoddpwoptions 	RCONS_2BPP		# Support for 2-bit display
791.1Stoddpwoptions 	RCONS_4BPP		# Support for 4-bit display
801.1Stoddpwoptions 	RCONS_16BPP		# Support for 16-bit display
811.1Stoddpw
821.1Stoddpw# Mac-specific options
831.1Stoddpw#options 	DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
841.1Stoddpw#options 	MRG_ADB		# Use ROM-based ADB driver
851.1Stoddpwoptions 	ZS_CONSOLE_ABORT
861.1Stoddpw
871.1Stoddpwoptions 	NFS_BOOT_DHCP
881.1Stoddpw
891.1Stoddpw# Kernel root file system and dump configuration.
901.1Stoddpwconfig		netbsd	root on ? type ?
911.1Stoddpw
921.1Stoddpw#
931.1Stoddpw# Device configuration
941.1Stoddpw#
951.1Stoddpw
961.1Stoddpwmainbus0 at root
971.1Stoddpw
981.1Stoddpwfpu0 at mainbus?			# Floating-Point Coprocessor support
991.1Stoddpw
1001.1Stoddpw
1011.1Stoddpw# Basic Bus Support
1021.1Stoddpw
1031.1Stoddpw# On-board I/O bus support
1041.1Stoddpwobio0 at mainbus?
1051.1Stoddpw
1061.1Stoddpw# NuBus support
1071.1Stoddpwnubus0 at mainbus?
1081.1Stoddpw
1091.1Stoddpw
1101.1Stoddpw# Console Devices
1111.1Stoddpw
1121.1Stoddpw# Apple Desktop Bus interface
1131.1Stoddpwadb0	at obio?
1141.1Stoddpwaed*	at adb?				# ADB event device
1151.1Stoddpwakbd*	at adb?				# ADB keyboard
1161.1Stoddpwams*	at adb?				# ADB mouse
1171.1Stoddpw
1181.1Stoddpw# Basic frame buffer support
1191.1Stoddpwintvid0	at obio?			# Internal video hardware
1201.1Stoddpwmacvid*	at nubus?			# NuBus video card
1211.1Stoddpw
1221.1Stoddpw# Device-independent frame buffer interface
1231.1Stoddpwmacfb*	at intvid?
1241.1Stoddpwmacfb*	at macvid?
1251.1Stoddpw
1261.1Stoddpw# Workstation Console devices
1271.1Stoddpwwsdisplay0 at macfb? console ?
1281.1Stoddpwwskbd0	at akbd? console ?
1291.1Stoddpwwsmouse0 at ams?
1301.1Stoddpw
1311.1Stoddpw
1321.1Stoddpw# Serial Devices
1331.1Stoddpw
1341.1Stoddpw# On-board serial interface
1351.1Stoddpwzsc0	at obio?
1361.1Stoddpwzstty*	at zsc? channel ?
1371.1Stoddpw
1381.1Stoddpw
1391.1Stoddpw# SCSI Controllers and Devices
1401.1Stoddpw
1411.1Stoddpw# SCSI controllers
1421.1Stoddpw# XXX - use only one of ncrscsi or sbc
1431.21Schs#ncrscsi0 at obio? addr 0		# SCSI NCR 5380
1441.21Schssbc0	at obio? addr 0 flags 0x1	# MI SCSI NCR 5380
1451.21Schsesp0	at obio? addr 0			# SCSI NCR 53C9x
1461.21Schsesp1	at obio? addr 1			# SCSI NCR 53C9x
1471.1Stoddpw
1481.1Stoddpw# SCSI bus support
1491.1Stoddpwscsibus* at scsi?
1501.1Stoddpw
1511.1Stoddpw# SCSI devices
1521.1Stoddpwsd*	at scsibus? target ? lun ?	# SCSI disk drives
1531.1Stoddpwcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
1541.1Stoddpwst*	at scsibus? target ? lun ?	# SCSI tape drives
1551.9Sshiba
1561.9Sshiba# IDE controller and devices
1571.9Sshibawdc*	at obio? flags 0x1000
1581.18Slukematabus* at ata?
1591.17Sbouyerwd*	at atabus? drive ?
1601.1Stoddpw
1611.1Stoddpw
1621.1Stoddpw# Miscellaneous mass storage devices
1631.1Stoddpw
1641.1Stoddpw# IWM floppy disk controller
1651.1Stoddpwiwm0	at obio?			# Sony driver (800K GCR)
1661.1Stoddpwfd*	at iwm? drive ?
1671.1Stoddpw
1681.1Stoddpw
1691.1Stoddpw# Network Interfaces
1701.1Stoddpw
1711.1Stoddpw# On-board Ethernet controllers
1721.1Stoddpwsn*	at obio?			# SONIC-based (DP83932, DP83916)
1731.1Stoddpwmc*	at obio?			# MACE-based
1741.1Stoddpw
1751.1Stoddpw# NuBus Ethernet controllers
1761.1Stoddpwae*	at nubus?			# DP8390-based
1771.1Stoddpwsn*	at nubus?			# SONIC-based (DP83932, DP83916)
1781.1Stoddpwsm*	at nubus?			# SMC-based
1791.10Sitojunnetdock*	at nubus?		# Asante NetDock, Newer Ether MicroDock
1801.1Stoddpw
1811.1Stoddpwnsphy*	at mii? phy ?
1821.1Stoddpwukphy*	at mii? phy ?
1831.1Stoddpw
1841.1Stoddpw# Audio Devices
1851.1Stoddpw
1861.1Stoddpw# On-board audio hardware
1871.1Stoddpwasc0	at obio?			# ASC/EASC audio
1881.1Stoddpw
1891.1Stoddpw# Pseudo-Devices
1901.1Stoddpw
1911.1Stoddpw# disk/mass storage pseudo-devices
1921.1Stoddpwpseudo-device	md		1	# memory disk device (ramdisk)
1931.1Stoddpw
1941.1Stoddpw# network pseudo-devices
1951.1Stoddpwpseudo-device	loop 		1 	# network loopback
1961.1Stoddpwpseudo-device	ppp		1 	# Point-to-Point Protocol
1971.1Stoddpwpseudo-device	sl		1 	# Serial Line IP
1981.1Stoddpw
1991.1Stoddpw# miscellaneous pseudo-devices
2001.11Sscottrpseudo-device	bpfilter	8	# Berkeley packet filter
2011.1Stoddpwpseudo-device	pty		2	# pseudo-terminals (Sysinst needs two)
2021.15Sitojun
2031.15Sitojunpseudo-device	rnd			# /dev/random and in-kernel generator
204