MMTAROMNEW revision 1.39
11.39Sjmmv#	$NetBSD: MMTAROMNEW,v 1.39 2008/02/29 14:42:32 jmmv Exp $
21.1Sitojun#
31.1Sitojun#	GENERIC -- everything that's currently supported
41.1Sitojun#
51.1Sitojun
61.1Sitojuninclude "arch/mmeye/conf/std.mmeye"
71.15Satatat
81.15Satatat#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
91.1Sitojun
101.1Sitojun# Enable the hooks used for initializing the root memory-disk.
111.1Sitojun#options 	MEMORY_DISK_HOOKS
121.1Sitojun#options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
131.1Sitojun#options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
141.13Slukem#options 	MEMORY_DISK_ROOT_SIZE=3074	# size of memory disk, in blocks
151.1Sitojun
161.1Sitojunoptions 	ROMIMAGE
171.1Sitojun
181.1Sitojunmaxusers	32		# estimated number of users
191.1Sitojun
201.11Suchoptions		SH3
211.8Slukemoptions 	PCLOCK=33330000		# 33.33MHz
221.1Sitojunoptions 	MMEYE_NEW_INT
231.8Slukem#options 	MMEYE_NO_CACHE
241.8Slukemoptions 	INITTODR_ALWAYS_USE_RTC
251.1Sitojun
261.1Sitojun# This option allows you to force a serial console at the specified
271.1Sitojun# I/O address.   see console(4) for details.
281.8Slukem#options 	CONSDEVNAME="\"com\""
291.1Sitojun
301.1Sitojun# Standard system options
311.1Sitojun
321.1Sitojunoptions 	INSECURE	# disable kernel security levels
331.1Sitojun
341.1Sitojunoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
351.8Slukemoptions 	HZ=10		# clock interrupt generates every 1/10 sec
361.1Sitojun				# for Debug
371.1Sitojun#options 	NTP		# NTP phase/frequency locked loop
381.1Sitojun
391.1Sitojun#options 	KTRACE		# system call tracing via ktrace(1)
401.1Sitojun
411.1Sitojun#options 	SYSVMSG		# System V-like message queues
421.1Sitojun#options 	SYSVSEM		# System V-like semaphores
431.1Sitojun#options 	SYSVSHM		# System V-like memory sharing
441.1Sitojun#options 	SHMMAXPGS=1024	# 1024 pages is the default
451.1Sitojun
461.1Sitojun#options 	LKM		# loadable kernel modules
471.9Sjdolecek
481.20Slukemoptions 	USERCONF	# userconf(4) support
491.9Sjdolecek#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
501.24Satatat#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
511.1Sitojun
521.1Sitojun# Diagnostic/debugging support options
531.1Sitojun#options 	DIAGNOSTIC	# cheap kernel consistency checks
541.1Sitojun#options 	DEBUG		# expensive debugging checks/support
551.1Sitojun#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
561.1Sitojun#options 	DDB		# in-kernel debugger
571.1Sitojun#options 	KGDB		# remote debugger
581.7Slukem#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
591.1Sitojun#makeoptions	DEBUG="-g"	# compile full symbol table
601.8Slukem#options 	SYSCALL_DEBUG
611.1Sitojun
621.1Sitojun# Compatibility options
631.1Sitojunoptions 	COMPAT_43	# and 4.3BSD
641.6Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
651.19Stsutsuioptions 	BSDDISKLABEL_EI	# endian independent disklabel support
661.19Stsutsuioptions 	COMPAT_MMEYE_OLDLABEL	# old mmeye's disklabel support
671.26Schristosoptions		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
681.1Sitojun
691.1Sitojun# Executable format options
701.3Smsaitohoptions 	EXEC_COFF	# 32-bit COFF executables (sh-compiler)
711.1Sitojun
721.1Sitojun# File systems
731.1Sitojunfile-system 	FFS		# UFS
741.1Sitojun#file-system 	EXT2FS		# second extended file system (linux)
751.1Sitojun#file-system 	LFS		# log-structured file system
761.1Sitojun#file-system 	MFS		# memory file system
771.1Sitojun#file-system 	NFS		# Network File System client
781.1Sitojun#file-system 	CD9660		# ISO 9660 + Rock Ridge file system
791.1Sitojun#file-system 	MSDOSFS		# MS-DOS file system
801.1Sitojun#file-system 	FDESC		# /dev/fd
811.1Sitojun#file-system 	KERNFS		# /kern
821.1Sitojunfile-system 	NULLFS		# loopback file system
831.1Sitojun#file-system 	PORTAL		# portal filesystem (still experimental)
841.1Sitojunfile-system 	PROCFS		# /proc
851.1Sitojunfile-system 	UMAPFS		# NULLFS + uid and gid remapping
861.1Sitojun#file-system 	UNION		# union file system
871.32Schristosfile-system	PTYFS		# /dev/pts/N support
881.1Sitojun
891.1Sitojun# File system options
901.1Sitojun#options 	QUOTA		# UFS quotas
911.1Sitojun#options 	NFSSERVER	# Network File System server
921.33Stsutsuioptions 	FFS_NO_SNAPSHOT	# No FFS snapshot support
931.1Sitojun#options 	FIFO		# FIFOs; RECOMMENDED
941.1Sitojun#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
951.1Sitojun				# immutable) behave as system flags.
961.1Sitojun
971.1Sitojun# Networking options
981.1Sitojun#options 	GATEWAY		# packet forwarding
991.1Sitojun#options 	INET		# IP + ICMP + TCP + UDP
1001.1Sitojun#options 	MROUTING	# IP multicast routing
1011.25Smanu#options 	PIM		# Protocol Independent Multicast
1021.1Sitojun#options 	ISO,TPIP	# OSI
1031.1Sitojun#options 	EON		# OSI tunneling over IP
1041.1Sitojun#options 	NETATALK	# AppleTalk networking protocols
1051.1Sitojun#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1061.1Sitojun#options 	PPP_DEFLATE	# Deflate compression support for PPP
1071.1Sitojun#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1081.1Sitojun#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
1091.6Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1101.1Sitojun
1111.1Sitojun# These options enable verbose messages for several subsystems.
1121.1Sitojun# Warning, these may compile large string tables into the kernel!
1131.1Sitojunoptions 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1141.1Sitojun#options 	SCSIVERBOSE	# human readable SCSI error messages
1151.1Sitojun
1161.1Sitojun# Kernel root file system and dump configuration.
1171.1Sitojun#config		netbsd	root on ? type ?
1181.1Sitojun#config		netbsd	root on sd0a type ffs
1191.1Sitojun#config		netbsd	root on ? type nfs
1201.1Sitojunconfig		netbsd	root on wd0a type ffs
1211.1Sitojun
1221.1Sitojun#
1231.1Sitojun# Device configuration
1241.1Sitojun#
1251.1Sitojun
1261.1Sitojunmainbus0 at root
1271.1Sitojun
1281.1Sitojunshb* at mainbus?
1291.1Sitojun
1301.37Suwertc*	at shb?
1311.37Suwe
1321.18Sjdolecekcom0	at mainbus?
1331.18Sjdolecekcom1	at mainbus?
1341.1Sitojun
1351.18Sjdolecek# SH PCMCIA controllers
1361.18Sjdolecekmmeyepcmcia0	at mainbus?
1371.18Sjdolecekmmeyepcmcia1	at mainbus?
1381.1Sitojun
1391.1Sitojun# PCMCIA bus support
1401.18Sjdolecekpcmcia*	at mmeyepcmcia? controller ? socket ?
1411.1Sitojun
1421.1Sitojun# PCMCIA serial interfaces
1431.1Sitojun#com*	at pcmcia? function ?		# Modems and serial cards
1441.1Sitojun
1451.1Sitojun# SCSI Controllers and Devices
1461.1Sitojun
1471.1Sitojun# PCMCIA SCSI controllers
1481.1Sitojun#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
1491.1Sitojun
1501.1Sitojun# SCSI bus support
1511.1Sitojun#scsibus* at aic?
1521.1Sitojun
1531.1Sitojun# SCSI devices
1541.1Sitojun#sd*	at scsibus? target ? lun ?	# SCSI disk drives
1551.1Sitojun#st*	at scsibus? target ? lun ?	# SCSI tape drives
1561.1Sitojun#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
1571.1Sitojun#ch*	at scsibus? target ? lun ?	# SCSI autochangers
1581.1Sitojun#ss*	at scsibus? target ? lun ?	# SCSI scanners
1591.1Sitojun#uk*	at scsibus? target ? lun ?	# SCSI unknown
1601.1Sitojun
1611.1Sitojun
1621.1Sitojun# IDE and Related Devices
1631.1Sitojun
1641.1Sitojunwdc* at pcmcia? function ?
1651.1Sitojun
1661.23Slukem# ATA (IDE) bus support
1671.23Slukematabus* at ata?
1681.22Sbouyer
1691.1Sitojun# IDE drives
1701.22Sbouyerwd*	at atabus? drive ?
1711.1Sitojun
1721.1Sitojun# ATAPI bus support
1731.23Slukem#atapibus* at atapi?
1741.1Sitojun
1751.1Sitojun# ATAPI devices
1761.1Sitojun#cd*	at atapibus? drive ?		# ATAPI CD-ROM drives
1771.1Sitojun
1781.1Sitojun
1791.1Sitojun# Miscellaneous mass storage devices
1801.1Sitojun
1811.1Sitojun
1821.1Sitojun# Network Interfaces
1831.1Sitojun
1841.1Sitojun# PCMCIA network interfaces
1851.1Sitojun#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
1861.1Sitojun#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
1871.1Sitojun#sm*	at pcmcia? function ?		# Megahertz Ethernet
1881.1Sitojun
1891.1Sitojun# MII/PHY support
1901.1Sitojunexphy*	at mii? phy ?			# 3Com internal PHYs
1911.10Swizicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS189x
1921.1Sitojuninphy*	at mii? phy ?			# Intel 82555 PHYs
1931.1Sitojunlxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
1941.1Sitojunnsphy*	at mii? phy ?			# NS83840 PHYs
1951.1Sitojunqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
1961.1Sitojunsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
1971.18Sjdolecek#tlphy*	at mii? phy ?			# ThunderLAN PHYs
1981.1Sitojunukphy*	at mii? phy ?			# generic unknown PHYs
1991.1Sitojun
2001.1Sitojun
2011.1Sitojun# Pull in optional local configuration
2021.39Sjmmvcinclude "arch/mmeye/conf/GENERIC.local"
2031.1Sitojun
2041.1Sitojun
2051.1Sitojun# Pseudo-Devices
2061.1Sitojun
2071.1Sitojun# disk/mass storage pseudo-devices
2081.1Sitojun#pseudo-device	ccd		4	# concatenated/striped disk devices
2091.27Shannken#pseudo-device	fss		4	# file system snapshot device
2101.1Sitojun#pseudo-device	md		1	# memory disk device (ramdisk)
2111.35Scube#pseudo-device	vnd			# disk-like interface to files
2121.1Sitojun
2131.1Sitojun# network pseudo-devices
2141.35Scube#pseudo-device	bpfilter		# Berkeley packet filter
2151.1Sitojun#pseudo-device	ipfilter		# IP filter (firewall) and NAT
2161.1Sitojun#pseudo-device	loop			# network loopback
2171.35Scube#pseudo-device	ppp			# Point-to-Point Protocol
2181.35Scube#pseudo-device	sl			# Serial Line IP
2191.35Scube#pseudo-device	strip			# Starmode Radio IP (Metricom)
2201.35Scube#pseudo-device	tun			# network tunneling over tty
2211.1Sitojun
2221.1Sitojun# miscellaneous pseudo-devices
2231.4Sjdolecek#pseudo-device	pty			# pseudo-terminals
2241.16Slukempseudo-device	clockctl		# user control of clock subsystem
2251.1Sitojun
2261.1Sitojun# rnd is EXPERIMENTAL at this point.
2271.1Sitojun#pseudo-device	rnd			# /dev/random and in-kernel generator
2281.1Sitojun#options 	RND_COM			# use "com" randomness as well (BROKEN)
229