Home | History | Annotate | Line # | Download | only in conf
XLSATX revision 1.2
      1  1.2  matt #	$NetBSD: XLSATX,v 1.2 2011/02/20 07:48:33 matt Exp $
      2  1.2  matt 
      3  1.2  matt include 	"arch/evbmips/conf/std.rmixl"
      4  1.2  matt 
      5  1.2  matt #ident 		"XLSATX-$Revision: 1.2 $"
      6  1.2  matt 
      7  1.2  matt #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      8  1.2  matt 
      9  1.2  matt maxusers	32
     10  1.2  matt 
     11  1.2  matt #
     12  1.2  matt # MEMSIZE can be used to limit memory amount used
     13  1.2  matt #
     14  1.2  matt ##options		MEMSIZE=0x10000000		# 256MB 
     15  1.2  matt 
     16  1.2  matt #
     17  1.2  matt # MEMLIMIT can be used to limit memory address used
     18  1.2  matt #
     19  1.2  matt defparam opt_memsize.h MEMLIMIT
     20  1.2  matt ##options	MEMLIMIT=0x10000000			# 256MB 
     21  1.2  matt 
     22  1.2  matt options 	NOFPU		# No FPU
     23  1.2  matt #options 	FPEMUL		# emulate FPU insn
     24  1.2  matt 
     25  1.2  matt # Standard system options
     26  1.2  matt options 	KTRACE		# system call tracing support
     27  1.2  matt options 	SYSVMSG		# System V message queues
     28  1.2  matt options 	SYSVSEM		# System V semaphores
     29  1.2  matt options 	SYSVSHM		# System V shared memory
     30  1.2  matt #options 	SHMMAXPGS=1024	# 1024 pages is the default
     31  1.2  matt #options 	LKM		# loadable kernel modules
     32  1.2  matt options 	NTP		# network time protocol
     33  1.2  matt 
     34  1.2  matt # Debugging options
     35  1.2  matt options 	DIAGNOSTIC	# extra kernel sanity checking
     36  1.2  matt options 	DEBUG		# extra kernel debugging support
     37  1.2  matt #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     38  1.2  matt options 	MSGBUFSIZE=65536 # kernel dmesg buffer
     39  1.2  matt options 	USERCONF	# userconf(4) support
     40  1.2  matt #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     41  1.2  matt options 	DDB		# kernel dynamic debugger
     42  1.2  matt options		MIPS_DDB_WATCH	# enable T_WATCH (see IEU_DEFAUTURE[DBE])
     43  1.2  matt options 	DDB_HISTORY_SIZE=100 # enable history editing in DDB
     44  1.2  matt makeoptions 	DEBUG="-g"	# compile full symbol table
     45  1.2  matt options 	SYMTAB_SPACE=500000	# size for embedded symbol table
     46  1.2  matt #options	DDB_COMMANDONENTER="trace;show registers"
     47  1.2  matt options		DB_MAX_LINE=-1
     48  1.2  matt 
     49  1.2  matt # Compatibility options
     50  1.2  matt #options 	COMPAT_43	# compatibility with 4.3BSD binaries
     51  1.2  matt #options 	COMPAT_09	# NetBSD 0.9 binary compatibility
     52  1.2  matt #options 	COMPAT_10	# NetBSD 1.0 binary compatibility
     53  1.2  matt #options 	COMPAT_11	# NetBSD 1.1 binary compatibility
     54  1.2  matt #options 	COMPAT_12	# NetBSD 1.2 binary compatibility
     55  1.2  matt #options 	COMPAT_13	# NetBSD 1.3 binary compatibility
     56  1.2  matt #options 	COMPAT_14	# NetBSD 1.4 binary compatibility
     57  1.2  matt #options 	COMPAT_15	# NetBSD 1.5 binary compatibility
     58  1.2  matt options 	COMPAT_16	# NetBSD 1.6 binary compatibility
     59  1.2  matt options 	COMPAT_20	# NetBSD 2.0 binary compatibility
     60  1.2  matt options 	COMPAT_30	# NetBSD 3.0 compatibility.
     61  1.2  matt options 	COMPAT_40	# NetBSD 4.0 compatibility.
     62  1.2  matt #options 	EXEC_ECOFF	# exec ECOFF binaries
     63  1.2  matt #options 	COMPAT_ULTRIX	# binary compatibility with Ultrix
     64  1.2  matt options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     65  1.2  matt 
     66  1.2  matt # File systems
     67  1.2  matt file-system	FFS		# Berkeley Fast Filesystem
     68  1.2  matt file-system	MFS		# memory-based filesystem
     69  1.2  matt #file-system 	EXT2FS		# second extended file system (linux)
     70  1.2  matt file-system	NFS		# Sun NFS-compatible filesystem client
     71  1.2  matt file-system	KERNFS		# kernel data-structure filesystem
     72  1.2  matt #file-system	NULLFS		# NULL layered filesystem
     73  1.2  matt #file-system 	OVERLAY		# overlay file system
     74  1.2  matt #file-system	FDESC		# user file descriptor filesystem
     75  1.2  matt #file-system	UMAPFS		# uid/gid remapping filesystem
     76  1.2  matt #file-system	LFS		# Log-based filesystem (still experimental)
     77  1.2  matt #file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
     78  1.2  matt file-system	PROCFS		# /proc
     79  1.2  matt #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     80  1.2  matt file-system	TMPFS		# Efficient memory file system
     81  1.2  matt #file-system	UNION		# union file system
     82  1.2  matt #file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
     83  1.2  matt #file-system 	CODA		# Coda File System; also needs vcoda (below)
     84  1.2  matt file-system	PTYFS		# /dev/pts/N support
     85  1.2  matt 
     86  1.2  matt # File system options
     87  1.2  matt #options 	NFSSERVER	# Sun NFS-compatible filesystem server
     88  1.2  matt #options 	QUOTA		# FFS quotas
     89  1.2  matt #options 	FFS_EI		# FFS Endian Independant support
     90  1.2  matt #options 	SOFTDEP		# FFS soft updates support.
     91  1.2  matt options 	WAPBL		# File system journaling support - Experimental
     92  1.2  matt options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     93  1.2  matt #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     94  1.2  matt 				# immutable) behave as system flags.
     95  1.2  matt 
     96  1.2  matt # Networking options
     97  1.2  matt #options 	GATEWAY		# IP packet forwarding
     98  1.2  matt options 	INET		# Internet protocols
     99  1.2  matt #options 	INET6		# IPV6
    100  1.2  matt #options 	IPSEC		# IP security
    101  1.2  matt #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
    102  1.2  matt #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
    103  1.2  matt #options 	IPSEC_DEBUG	# debug for IP security
    104  1.2  matt #options 	MROUTING	# packet forwarding of multicast packets
    105  1.2  matt #options 	PIM		# Protocol Independent Multicast
    106  1.2  matt #options 	ISO,TPIP	# OSI networking
    107  1.2  matt #options 	EON		# OSI tunneling over IP
    108  1.2  matt #options 	NETATALK	# AppleTalk (over Ethernet) protocol
    109  1.2  matt #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    110  1.2  matt #options 	PPP_DEFLATE	# Deflate compression support for PPP
    111  1.2  matt #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    112  1.2  matt #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    113  1.2  matt #options 	IPFILTER_LOG	# ipmon(8) log support
    114  1.2  matt #options 	IPFILTER_LOOKUP	# ippool(8) support
    115  1.2  matt 
    116  1.2  matt # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    117  1.2  matt #options 	TCP_COMPAT_42
    118  1.2  matt 
    119  1.2  matt # These options enable verbose messages for several subsystems.
    120  1.2  matt # Warning, these may compile large string tables into the kernel!
    121  1.2  matt #options 	PCI_NETBSD_CONFIGURE	# NetBSD configures the PCI bus
    122  1.2  matt options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    123  1.2  matt #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    124  1.2  matt #options 	SCSIVERBOSE	# human readable SCSI error messages
    125  1.2  matt options 	MIIVERBOSE	# verbose PHY autoconfig messages
    126  1.2  matt 
    127  1.2  matt # Bitmask for enabling the PCI IDE channels in the southbridge.
    128  1.2  matt # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
    129  1.2  matt #
    130  1.2  matt # Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
    131  1.2  matt # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
    132  1.2  matt options 	PCI_NETBSD_ENABLE_IDE=0x1
    133  1.2  matt 
    134  1.2  matt options 	NFS_BOOT_DHCP
    135  1.2  matt 
    136  1.2  matt config	netbsd		root on ? type ?
    137  1.2  matt config	netbsd-wm0	root on wm0 type nfs
    138  1.2  matt config	netbsd-msk0	root on msk0 type nfs
    139  1.2  matt config	netbsd-sd0a	root on sd0a type ffs
    140  1.2  matt 
    141  1.2  matt 
    142  1.2  matt mainbus0 	at root
    143  1.2  matt cpunode*	at mainbus? node ?
    144  1.2  matt cpucore*	at cpunode? core ?
    145  1.2  matt cpu*		at cpucore? thread ?
    146  1.2  matt obio0		at cpunode?
    147  1.2  matt com0		at obio0	addr 0x14000 intr 9
    148  1.2  matt com1		at obio0	addr 0x15000 intr 10
    149  1.2  matt options		COM_REGMAP
    150  1.2  matt rmixl_pcix0	at obio0
    151  1.2  matt pci*		at rmixl_pcix0
    152  1.2  matt rmixl_pcie0	at obio0
    153  1.2  matt pci*		at rmixl_pcie0
    154  1.2  matt ppb*		at pci?
    155  1.2  matt pci*		at ppb?
    156  1.2  matt wm*		at pci? dev ? function ?	# Intel i82546EB Gig-E
    157  1.2  matt skc*		at pci? dev ? function ?
    158  1.2  matt sk*		at skc?
    159  1.2  matt mskc*		at pci? dev ? function ?
    160  1.2  matt msk*		at mskc?
    161  1.2  matt makphy*		at mii? phy ?			# Marvell 88E1000 PHYs
    162  1.2  matt ukphy*		at mii? phy ?			# unknown PHY
    163  1.2  matt rmixl_usbi0	at obio0	addr 0x25000 intr 31
    164  1.2  matt ohci0		at rmixl_usbi0	addr 0x24400 size 0x400 intr 0
    165  1.2  matt ohci1		at rmixl_usbi0	addr 0x24800 size 0x400 intr 1
    166  1.2  matt ehci0		at rmixl_usbi0	addr 0x24000 size 0x400 intr 2
    167  1.2  matt siisata*	at pci? dev ? function ?
    168  1.2  matt atabus*		at ata?
    169  1.2  matt wd*		at atabus? drive ? flags 0x0000
    170  1.2  matt 
    171  1.2  matt # USB
    172  1.2  matt usb*		at ohci?
    173  1.2  matt usb*		at ehci?
    174  1.2  matt uhub*		at usb?
    175  1.2  matt uhub*		at uhub? port ?
    176  1.2  matt umass*		at uhub? port ? configuration ? interface ?
    177  1.2  matt wd*		at umass?
    178  1.2  matt scsibus*	at umass? channel ?
    179  1.2  matt sd*		at scsibus? target ? lun ?
    180  1.2  matt 
    181  1.2  matt 
    182  1.2  matt # Pseudo-devices
    183  1.2  matt 
    184  1.2  matt # Disk/mass storage pseudo-devices
    185  1.2  matt #pseudo-device	ccd		4		# concatenated disk devices
    186  1.2  matt #pseudo-device	raid		4		# RAIDframe disk driver
    187  1.2  matt #options 	RAID_AUTOCONFIG			# auto-configuration of RAID
    188  1.2  matt #pseudo-device	fss		4		# file system snapshot device
    189  1.2  matt pseudo-device	vnd				# disk-like interface to files
    190  1.2  matt 
    191  1.2  matt # Network pseudo-devices
    192  1.2  matt pseudo-device	bpfilter			# Berkeley packet filter
    193  1.2  matt pseudo-device	ipfilter			# IP filter (firewall) and NAT
    194  1.2  matt pseudo-device	loop				# network loopback
    195  1.2  matt #pseudo-device	ppp				# Point-to-Point Protocol
    196  1.2  matt #pseudo-device	sl				# Serial Line IP
    197  1.2  matt #pseudo-device	strip				# Starmode Radio IP (Metricom)
    198  1.2  matt #pseudo-device	tun				# network tunneling over tty
    199  1.2  matt #pseudo-device	tap				# virtual Ethernet
    200  1.2  matt #pseudo-device	gre				# generic L3 over IP tunnel
    201  1.2  matt #pseudo-device	ipip		2		# RFC 2003 IP Encapsulation
    202  1.2  matt #pseudo-device	gif				# RFC1933 tunnel
    203  1.2  matt #pseudo-device	faith				# IPv[46] tcp relay translation
    204  1.2  matt #pseudo-device	stf				# 6to4 IPv6 over IPv4 encapsulation
    205  1.2  matt #pseudo-device	vlan				# IEEE 802.1q encapsulation
    206  1.2  matt #pseudo-device	bridge				# simple inter-network bridging
    207  1.2  matt pseudo-device	kttcp				# kernel ttcp
    208  1.2  matt 
    209  1.2  matt # Miscellaneous pseudo-devices
    210  1.2  matt pseudo-device	pty				# pseudo-terminals
    211  1.2  matt #pseudo-device	sequencer	1		# MIDI sequencer
    212  1.2  matt pseudo-device	rnd				# /dev/random & kernel generator
    213  1.2  matt pseudo-device	clockctl			# user control of clock subsystem
    214  1.2  matt pseudo-device	ksyms				# /dev/ksyms
    215  1.2  matt 
    216  1.2  matt # A pseudo device needed for Coda		# also needs CODA (above)
    217  1.2  matt #pseudo-device	vcoda		4		# coda minicache <-> venus comm.
    218