Home | History | Annotate | Line # | Download | only in conf
VIPER revision 1.6
      1  1.6  christos #	$NetBSD: VIPER,v 1.6 2005/08/19 02:03:51 christos Exp $
      2  1.1     pooka #
      3  1.1     pooka #	Arcom Viper
      4  1.1     pooka #
      5  1.1     pooka 
      6  1.1     pooka include "arch/evbarm/conf/std.viper"
      7  1.1     pooka 
      8  1.1     pooka #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9  1.1     pooka #options 	MSGBUFSIZE=65536
     10  1.1     pooka #options 	KSTACK_CHECK_MAGIC
     11  1.1     pooka 
     12  1.1     pooka # estimated number of users
     13  1.1     pooka maxusers	32
     14  1.1     pooka 
     15  1.1     pooka # Standard system options
     16  1.1     pooka 
     17  1.1     pooka options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     18  1.1     pooka options 	NTP		# NTP phase/frequency locked loop
     19  1.1     pooka 
     20  1.1     pooka # CPU options
     21  1.1     pooka 
     22  1.2     pooka options 	CPU_XSCALE_PXA250 # XScale PXA255
     23  1.1     pooka makeoptions	CPUFLAGS="-mcpu=xscale"
     24  1.1     pooka #options 	CPU_XSCALE_CCLKCFG=xyz
     25  1.1     pooka 
     26  1.1     pooka # File systems
     27  1.1     pooka 
     28  1.1     pooka file-system	FFS		# UFS
     29  1.1     pooka #file-system	LFS		# log-structured file system
     30  1.1     pooka file-system	MFS		# memory file system
     31  1.1     pooka file-system	NFS		# Network file system
     32  1.1     pooka #file-system 	ADOSFS		# AmigaDOS-compatible file system
     33  1.1     pooka file-system 	EXT2FS		# second extended file system (linux)
     34  1.1     pooka #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     35  1.1     pooka file-system	MSDOSFS		# MS-DOS file system
     36  1.1     pooka #file-system	FDESC		# /dev/fd
     37  1.1     pooka #file-system    FILECORE        # Acorn filecore file system
     38  1.1     pooka file-system	KERNFS		# /kern
     39  1.1     pooka file-system	NULLFS		# loopback file system
     40  1.1     pooka #file-system	PORTAL		# portal filesystem (still experimental)
     41  1.1     pooka file-system	PROCFS		# /proc
     42  1.1     pooka #file-system	UMAPFS		# NULLFS + uid and gid remapping
     43  1.1     pooka file-system	UNION		# union file system
     44  1.1     pooka 
     45  1.1     pooka # File system options
     46  1.1     pooka #options 	QUOTA		# UFS quotas
     47  1.1     pooka #options 	FFS_EI		# FFS Endian Independant support
     48  1.1     pooka options 	NFSSERVER
     49  1.1     pooka options 	SOFTDEP
     50  1.1     pooka 
     51  1.1     pooka # Networking options
     52  1.1     pooka 
     53  1.1     pooka #options 	GATEWAY		# packet forwarding
     54  1.1     pooka options 	INET		# IP + ICMP + TCP + UDP
     55  1.1     pooka options 	INET6		# IPV6
     56  1.1     pooka #options 	IPSEC		# IP security
     57  1.1     pooka #options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
     58  1.3      tron #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
     59  1.1     pooka #options 	IPSEC_DEBUG	# debug for IP security
     60  1.1     pooka #options 	MROUTING	# IP multicast routing
     61  1.1     pooka #options 	NS		# XNS
     62  1.1     pooka #options 	NSIP		# XNS tunneling over IP
     63  1.1     pooka #options 	ISO,TPIP	# OSI
     64  1.1     pooka #options 	EON		# OSI tunneling over IP
     65  1.1     pooka #options 	CCITT,LLC,HDLC	# X.25
     66  1.1     pooka #options 	NETATALK	# AppleTalk networking
     67  1.1     pooka #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     68  1.1     pooka #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     69  1.1     pooka #options 	PPP_DEFLATE	# Deflate compression support for PPP
     70  1.1     pooka #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     71  1.1     pooka #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     72  1.1     pooka 
     73  1.1     pooka options 	NFS_BOOT_DHCP
     74  1.1     pooka options 	NFS_BOOT_BOOTPARAM
     75  1.1     pooka options 	NFS_BOOT_RWSIZE=1024
     76  1.1     pooka 
     77  1.1     pooka # Compatibility options
     78  1.1     pooka 
     79  1.1     pooka #options 	COMPAT_LINUX
     80  1.6  christos #options 	COMPAT_43	# 4.3BSD compatibility.
     81  1.6  christos options 	COMPAT_30	# NetBSD 3.0 compatibility.
     82  1.1     pooka #options 	COMPAT_20	# NetBSD 2.0
     83  1.1     pooka #options 	COMPAT_16	# NetBSD 1.6 compatibility.
     84  1.1     pooka #options 	COMPAT_15	# NetBSD 1.5 compatibility.
     85  1.1     pooka #options 	COMPAT_14	# NetBSD 1.4 compatibility.
     86  1.1     pooka #options 	COMPAT_13	# NetBSD 1.3 compatibility.
     87  1.1     pooka #options 	COMPAT_12	# NetBSD 1.2 compatibility.
     88  1.1     pooka #options 	COMPAT_11	# NetBSD 1.1 compatibility.
     89  1.1     pooka #options 	COMPAT_10	# NetBSD 1.0 compatibility.
     90  1.1     pooka #options 	COMPAT_09	# NetBSD 0.9 compatibility.
     91  1.1     pooka #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     92  1.1     pooka 
     93  1.1     pooka # Shared memory options
     94  1.1     pooka 
     95  1.1     pooka options 	SYSVMSG		# System V-like message queues
     96  1.1     pooka options 	SYSVSEM		# System V-like semaphores
     97  1.1     pooka options 	SEMMNI=10	# number of semaphore identifiers
     98  1.1     pooka options 	SEMMNS=60	# number of semaphores in system
     99  1.1     pooka options 	SEMUME=10	# max number of undo entries per process
    100  1.1     pooka options 	SEMMNU=30	# number of undo structures in system
    101  1.1     pooka options 	SYSVSHM		# System V-like memory sharing
    102  1.1     pooka options 	SHMMAXPGS=1024	# 1024 pages is the default
    103  1.1     pooka 
    104  1.1     pooka # Device options
    105  1.1     pooka 
    106  1.1     pooka #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    107  1.1     pooka #options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
    108  1.1     pooka #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    109  1.1     pooka 
    110  1.1     pooka # Console options.  The default console is speed is 115200 bps.
    111  1.1     pooka #options 	CONSPEED=9600		# Console speed
    112  1.1     pooka 
    113  1.1     pooka # Miscellaneous kernel options
    114  1.1     pooka options 	KTRACE		# system call tracing, a la ktrace(1)
    115  1.1     pooka options 	IRQSTATS	# manage IRQ statistics
    116  1.1     pooka #options 	LKM		# loadable kernel modules
    117  1.1     pooka #options 	KMEMSTATS	# kernel memory statistics
    118  1.1     pooka #options 	SCSIVERBOSE	# Verbose SCSI errors
    119  1.1     pooka #options 	PCIVERBOSE	# Verbose PCI descriptions
    120  1.1     pooka #options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    121  1.1     pooka #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    122  1.1     pooka #options 	DDB_KEYCODE=0x40
    123  1.1     pooka #options 	USERCONF	# userconf(4) support
    124  1.1     pooka #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    125  1.1     pooka 
    126  1.1     pooka # Development and Debugging options
    127  1.1     pooka 
    128  1.1     pooka #options 	PERFCTRS	# performance counters
    129  1.1     pooka options 	DIAGNOSTIC	# internally consistency checks
    130  1.1     pooka #options 	DEBUG
    131  1.1     pooka #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    132  1.1     pooka #options 	IPKDB		# remote kernel debugging
    133  1.1     pooka #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    134  1.1     pooka options 	DDB		# in-kernel debugger
    135  1.1     pooka options		DDB_ONPANIC=1
    136  1.1     pooka options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    137  1.1     pooka #makeoptions	DEBUG="-g"	# compile full symbol table
    138  1.1     pooka options 	SYMTAB_SPACE=450000
    139  1.1     pooka 
    140  1.1     pooka ##options 	PMAP_INCLUDE_PTE_SYNC
    141  1.1     pooka ##options 	LOCKDEBUG
    142  1.1     pooka 
    143  1.1     pooka config		netbsd		root on ? type ?
    144  1.1     pooka 
    145  1.1     pooka # The main bus device
    146  1.1     pooka mainbus0	at root
    147  1.1     pooka 
    148  1.1     pooka # The boot CPU
    149  1.1     pooka cpu0		at mainbus?
    150  1.1     pooka 
    151  1.1     pooka # peripherals
    152  1.1     pooka pxaip0		at mainbus0
    153  1.1     pooka 
    154  1.1     pooka # interrupt controller & gpio pins
    155  1.1     pooka pxaintc0	at pxaip0
    156  1.1     pooka pxagpio0	at pxaip0
    157  1.1     pooka 
    158  1.1     pooka # serial ports
    159  1.1     pooka options 	COM_PXA2X0
    160  1.1     pooka options 	FFUARTCONSOLE
    161  1.1     pooka com0	at pxaip0 addr 0x40100000 intr 22  # FFUART
    162  1.1     pooka com1	at pxaip0 addr 0x40200000 intr 21  # BTUART
    163  1.1     pooka com2	at pxaip0 addr 0x40700000 intr 20
    164  1.1     pooka 
    165  1.1     pooka # these two are not hanging off of pxaip, not really tested either
    166  1.1     pooka #com3	at pxaip0 addr 0x14300000	# COM5
    167  1.1     pooka #com4	at pxaip0 addr 0x14300010	# COM4
    168  1.1     pooka 
    169  1.1     pooka # SMC91C111 ethernet
    170  1.1     pooka sm0	at pxaip0 addr 0x08000300 intr 0
    171  1.1     pooka 
    172  1.1     pooka # MII/PHY support
    173  1.1     pooka sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    174  1.1     pooka 
    175  1.1     pooka # Pseudo-Devices
    176  1.1     pooka 
    177  1.1     pooka # disk/mass storage pseudo-devices
    178  1.1     pooka #pseudo-device	md		1	# memory disk device (ramdisk)
    179  1.1     pooka pseudo-device	vnd		4	# disk-like interface to files
    180  1.1     pooka #pseudo-device	fss		4	# file system snapshot device
    181  1.1     pooka 
    182  1.1     pooka # network pseudo-devices
    183  1.1     pooka pseudo-device	bpfilter	4	# Berkeley packet filter
    184  1.1     pooka pseudo-device	loop			# network loopback
    185  1.1     pooka pseudo-device	kttcp			# network loopback
    186  1.1     pooka 
    187  1.1     pooka # miscellaneous pseudo-devices
    188  1.1     pooka pseudo-device	pty			# pseudo-terminals
    189  1.1     pooka pseudo-device	rnd			# /dev/random and in-kernel generator
    190  1.1     pooka #options	RND_COM
    191  1.1     pooka pseudo-device	clockctl		# user control of clock subsystem
    192  1.1     pooka pseudo-device	ksyms			# /dev/ksyms
    193  1.1     pooka 
    194  1.1     pooka # data mover pseudo-devices
    195  1.1     pooka #pseudo-device	swdmover		# softare dmover(9) back-end
    196  1.1     pooka #pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
    197