INSTALL revision 1.45
11.45Sjym#	$NetBSD: INSTALL,v 1.45 2009/02/06 18:34:19 jym Exp $
21.1Ssakamoto#
31.1Ssakamoto# First try for BEBOX config file
41.1Ssakamoto#
51.1Ssakamoto
61.1Ssakamotoinclude "arch/bebox/conf/std.bebox"
71.21Satatat
81.21Satatat#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
91.1Ssakamoto
101.1Ssakamotomaxusers	32
111.7Sabs
121.14Slukemmakeoptions	COPTS="-Os"		# Optimise for space. Implies -O2
131.1Ssakamoto
141.1Ssakamoto# Enable the hooks used for initializing the root memory-disk.
151.45Sjymoptions 	MEMORY_DISK_HOOKS
161.45Sjymoptions 	MEMORY_DISK_IS_ROOT	# force root on memory disk
171.45Sjymoptions 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
181.45Sjymoptions 	MEMORY_DISK_ROOT_SIZE=3074	# size of memory disk, in blocks
191.1Ssakamoto
201.1Ssakamoto#options 	IPKDBUSERHACK	# Allow access to mapped memory via kgdb
211.1Ssakamoto#options 	DEBUG_BY_TOOLS	# Allow debugging from toolsnet
221.1Ssakamoto# HMAC key to be used for debugging sessions
231.1Ssakamoto#options 	IPKDBKEY="\"HMAC pass phrase text\""
241.1Ssakamoto#options 	IPKDBSECURE	# Allow debugging even when securelevel > 0
251.14Slukem#makeoptions	DEBUG="-g"
261.1Ssakamoto
271.1Ssakamoto#options 	DEBUG
281.1Ssakamoto#options 	DIAGNOSTIC
291.1Ssakamoto#options 	TRAP_PANICWAIT
301.1Ssakamoto#options 	DDB
311.1Ssakamoto#options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
321.1Ssakamoto#options 	KTRACE
331.23Slukemoptions 	USERCONF		# userconf(4) support
341.19Sgmcgarryoptions		PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
351.27Satatat#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
361.1Ssakamoto
371.12Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
381.1Ssakamoto#options 	COMPAT_43
391.1Ssakamoto#options 	COMPAT_09
401.1Ssakamotooptions 	COMPAT_10
411.1Ssakamotooptions 	COMPAT_12
421.1Ssakamotooptions 	COMPAT_13
431.4Saugustssoptions 	COMPAT_14
441.39Smanuoptions 	COMPAT_15
451.31Ssimonboptions 	COMPAT_16
461.31Ssimonboptions 	COMPAT_20
471.32Schristosoptions 	COMPAT_30	# NetBSD 3.0 compatibility.
481.43Stsutsuioptions 	COMPAT_40	# NetBSD 4.0 compatibility.
491.28Schristosoptions 	COMPAT_386BSD_MBRPART	# recognize old partition ID
501.28Schristosoptions		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
511.1Ssakamoto
521.8Sabs# File systems
531.1Ssakamotofile-system 	FFS
541.1Ssakamotofile-system	EXT2FS
551.1Ssakamotofile-system 	MFS
561.1Ssakamotofile-system 	NFS
571.1Ssakamotofile-system 	CD9660
581.1Ssakamotofile-system 	MSDOSFS
591.1Ssakamoto#file-system 	FDESC
601.1Ssakamotofile-system 	KERNFS
611.1Ssakamoto#file-system 	NULLFS
621.1Ssakamoto#file-system 	PORTAL
631.1Ssakamoto#file-system 	PROCFS
641.1Ssakamoto#file-system 	UMAPFS
651.1Ssakamoto#file-system 	UNION
661.33Schristosfile-system	PTYFS		# /dev/pts/N support
671.1Ssakamoto
681.8Sabs# Filesystem options
691.41Syamt#options 	NFS_V2_ONLY	# Exclude NFS3 code to save space
701.34Stsutsuioptions 	FFS_NO_SNAPSHOT	# No FFS snapshot support
711.44Ssimonboptions 	WAPBL		# File system journaling support - Experimental
721.8Sabs
731.1Ssakamoto#options 	NFSSERVER
741.1Ssakamoto
751.1Ssakamotooptions 	INET
761.1Ssakamoto
771.8Sabs#options 	NFS_BOOT_BOOTPARAM
781.12Sabs
791.12Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
801.1Ssakamoto
811.1Ssakamotoconfig		netbsd	root on ? type ffs
821.1Ssakamoto
831.37Scube#pseudo-device	vnd		
841.29Shannken#pseudo-device	fss		4	# file system snapshot device
851.1Ssakamotopseudo-device	md		1
861.1Ssakamotopseudo-device	loop
871.36Srpaulo#pseudo-device	bpfilter		# packet filter
881.9Sabspseudo-device	pty		2	# pseudo-terminals (Sysinst needs two)
891.1Ssakamoto
901.1Ssakamoto#
911.1Ssakamoto# device
921.1Ssakamoto#
931.1Ssakamotooptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
941.1Ssakamoto
951.1Ssakamotooptions 	PCIVERBOSE	# verbose PCI device messages
961.5Scgd#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
971.1Ssakamoto
981.1Ssakamotomainbus0 at root
991.1Ssakamoto
1001.13Smattcpu*	at mainbus0
1011.1Ssakamotopci0	at mainbus0 bus ?
1021.1Ssakamoto
1031.1Ssakamotoppb*	at pci? dev ? function ?	# PCI-PCI bridges
1041.1Ssakamotopci*	at ppb? bus ?
1051.1Ssakamotopchb*	at pci? dev ? function ?	# PCI-Host bridges
1061.1Ssakamotopcib*	at pci? dev ? function ?	# PCI-ISA bridges
1071.1Ssakamoto
1081.1Ssakamotoisa*	at pcib?			# ISA on PCI-ISA bridge
1091.1Ssakamoto
1101.38Sgdamoremcclock0 at isa? port 0x70		# generic time-of-day clock
1111.38Sgdamore
1121.1Ssakamotocom0	at isa? port 0x3f8 irq 4	# standard PC serial ports
1131.1Ssakamotocom1	at isa? port 0x2f8 irq 3
1141.1Ssakamoto#com2	at isa? port 0x380 irq 16
1151.1Ssakamoto#com3	at isa? port 0x388 irq 17
1161.14Slukem
1171.1Ssakamotolpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
1181.1Ssakamoto#lpt1	at isa? port 0x278
1191.1Ssakamoto#lpt2	at isa? port 0x3bc
1201.1Ssakamoto
1211.1Ssakamoto#lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
1221.1Ssakamoto#lms1	at isa? port 0x238 irq 5
1231.1Ssakamoto#mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
1241.1Ssakamoto#mms1	at isa? port 0x238 irq 5
1251.1Ssakamoto
1261.11Stsutsui#siop*	at pci? dev ? function ?	# NCR 538XX SCSI controllers
1271.11Stsutsui#scsibus* at siop?
1281.1Ssakamoto
1291.1Ssakamoto#sd*	at scsibus? target ? lun ?	# SCSI disk drives
1301.1Ssakamoto#st*	at scsibus? target ? lun ?	# SCSI tape drives
1311.1Ssakamoto#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
1321.1Ssakamoto#ch*	at scsibus? target ? lun ?	# SCSI autochangers
1331.1Ssakamoto#ss*	at scsibus? target ? lun ?	# SCSI scanners
1341.1Ssakamoto#uk*	at scsibus? target ? lun ?	# SCSI unknown
1351.1Ssakamoto
1361.1Ssakamotofdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
1371.1Ssakamoto#fdc1	at isa? port 0x370 irq ? drq ?
1381.1Ssakamotofd0	at fdc? drive 1
1391.1Ssakamoto#fd*	at fdc? drive ?
1401.1Ssakamoto
1411.1Ssakamotowdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
1421.26Slukematabus* at ata?
1431.25Sbouyerwd*	at atabus? drive ?
1441.1Ssakamoto
1451.1Ssakamotone0	at isa? port 0x300 irq 5	# NE[12]000 ethernet cards
1461.1Ssakamoto#ipkdbif0 at ne?
1471.1Ssakamoto
1481.1Ssakamoto#wss0	at isa? port 0x530 irq 10 drq 0	# Windows Sound System
1491.1Ssakamoto#spkr0	at pckbd? port 0x61
1501.1Ssakamoto
1511.1Ssakamoto# Joystick driver. Probe is a little strange; add only if you have one.
1521.1Ssakamoto#joy0	at isa? port 0x201
1531.24Sitojun
1541.24Sitojunpseudo-device	rnd			# /dev/random and in-kernel generator
155