Home | History | Annotate | Line # | Download | only in conf
IQ80321 revision 1.8
      1 #	$NetBSD: IQ80321,v 1.8 2002/08/07 03:40:01 thorpej Exp $
      2 #
      3 #	IQ80321 -- Intel IQ80321 Evaluation Board Kernel
      4 #
      5 
      6 include	"arch/evbarm/conf/std.iq80321"
      7 
      8 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9 
     10 # estimated number of users
     11 
     12 maxusers	32
     13 
     14 # Standard system options
     15 
     16 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     17 #options 	NTP		# NTP phase/frequency locked loop
     18 
     19 # CPU options
     20 
     21 # For XScale systems
     22 options 	CPU_XSCALE_80321	# Support the XScale core
     23 makeoptions	COPTS="-O2 -mcpu=xscale"
     24 
     25 # Architecture options
     26 
     27 # File systems
     28 
     29 file-system	FFS		# UFS
     30 #file-system	LFS		# log-structured file system
     31 file-system	MFS		# memory file system
     32 file-system	NFS		# Network file system
     33 #file-system 	ADOSFS		# AmigaDOS-compatible file system
     34 #file-system 	EXT2FS		# second extended file system (linux)
     35 #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     36 #file-system	MSDOSFS		# MS-DOS file system
     37 file-system	FDESC		# /dev/fd
     38 file-system	KERNFS		# /kern
     39 file-system	NULLFS		# loopback file system
     40 #file-system	PORTAL		# portal filesystem (still experimental)
     41 file-system	PROCFS		# /proc
     42 #file-system	UMAPFS		# NULLFS + uid and gid remapping
     43 #file-system	UNION		# union file system
     44 
     45 # File system options
     46 #options 	QUOTA		# UFS quotas
     47 #options 	FFS_EI		# FFS Endian Independant support
     48 options 	NFSSERVER
     49 options 	SOFTDEP
     50 
     51 # Networking options
     52 
     53 #options 	GATEWAY		# packet forwarding
     54 options 	INET		# IP + ICMP + TCP + UDP
     55 options 	INET6		# IPV6
     56 #options 	IPSEC		# IP security
     57 #options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
     58 #options 	IPSEC_DEBUG	# debug for IP security
     59 #options 	MROUTING	# IP multicast routing
     60 #options 	NS		# XNS
     61 #options 	NSIP		# XNS tunneling over IP
     62 #options 	ISO,TPIP	# OSI
     63 #options 	EON		# OSI tunneling over IP
     64 #options 	CCITT,LLC,HDLC	# X.25
     65 #options 	NETATALK	# AppleTalk networking
     66 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     67 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     68 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     69 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     70 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     71 
     72 options 	NFS_BOOT_BOOTP
     73 options 	NFS_BOOT_DHCP
     74 #options 	NFS_BOOT_BOOTPARAM
     75 
     76 # Compatibility options
     77 
     78 #options 	COMPAT_43	# 4.3BSD compatibility.
     79 options 	COMPAT_15	# NetBSD 1.5 compatibility.
     80 options 	COMPAT_14	# NetBSD 1.4 compatibility.
     81 #options 	COMPAT_13	# NetBSD 1.3 compatibility.
     82 #options 	COMPAT_12	# NetBSD 1.2 compatibility.
     83 #options 	COMPAT_11	# NetBSD 1.1 compatibility.
     84 #options 	COMPAT_10	# NetBSD 1.0 compatibility.
     85 #options 	COMPAT_09	# NetBSD 0.9 compatibility.
     86 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     87 
     88 # Shared memory options
     89 
     90 options 	SYSVMSG		# System V-like message queues
     91 options 	SYSVSEM		# System V-like semaphores
     92 #options 	SEMMNI=10	# number of semaphore identifiers
     93 #options 	SEMMNS=60	# number of semaphores in system
     94 #options 	SEMUME=10	# max number of undo entries per process
     95 #options 	SEMMNU=30	# number of undo structures in system
     96 options 	SYSVSHM		# System V-like memory sharing
     97 options 	SHMMAXPGS=1024	# 1024 pages is the default
     98 
     99 # Device options
    100 
    101 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    102 #options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
    103 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    104 
    105 # Console options.  The default console is speed is 115200 baud.
    106 #options 	CONSPEED=9600		# Console speed
    107 
    108 # Miscellaneous kernel options
    109 options 	KTRACE		# system call tracing, a la ktrace(1)
    110 options 	IRQSTATS	# manage IRQ statistics
    111 #options 	LKM		# loadable kernel modules
    112 #options 	KMEMSTATS	# kernel memory statistics
    113 #options 	SCSIVERBOSE	# Verbose SCSI errors
    114 options 	PCIVERBOSE	# Verbose PCI descriptions
    115 options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    116 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    117 #options 	DDB_KEYCODE=0x40
    118 #options 	USERCONF	# userconf(4) support
    119 #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    120 
    121 # Development and Debugging options
    122 
    123 options 	DIAGNOSTIC	# internally consistency checks
    124 #options 	DEBUG
    125 #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    126 #options 	IPKDB		# remote kernel debugging
    127 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    128 options 	DDB		# in-kernel debugger
    129 options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    130 makeoptions	DEBUG="-g"	# compile full symbol table
    131 options 	SYMTAB_SPACE=200000
    132 
    133 config		netbsd		root on ? type ?
    134 config		netbsd-wm0	root on wm0 type nfs
    135 
    136 # The main bus device
    137 mainbus0	at root
    138 
    139 # The boot cpu
    140 cpu0		at mainbus?
    141 
    142 # On-board device support
    143 obio*		at mainbus?
    144 com*		at obio? addr ?		# on-board TI 165C50 UART
    145 
    146 # i80321 I/O Processor peripheral support
    147 iopxs*		at mainbus?
    148 
    149 iopwdog*	at iopxs?		# Watchdog timer
    150 pci0		at iopxs? bus ?		# PCI/PCI-X support
    151 
    152 # PCI-PCI bridges
    153 ppb*		at pci? dev ? function ?
    154 pci*		at ppb? bus ?
    155 
    156 #
    157 # Networking devices
    158 #
    159 
    160 # PCI network devices
    161 fxp*		at pci? dev ? function ?	# Intel i8255x 10/100 Ethernet
    162 wm*		at pci? dev ? function ?	# Intel i82544 Gig-E
    163 
    164 # MII/PHY support
    165 inphy*		at mii? phy ?			# Intel i82555 10/100 PHYs
    166 makphy*		at mii? phy ?			# Marvell 88E1000 PHYs
    167 ukphy*		at mii? phy ?			# Generic IEEE 802.3u PHYs
    168 
    169 # Pseudo-Devices
    170 
    171 # disk/mass storage pseudo-devices
    172 #pseudo-device	md		1	# memory disk device (ramdisk)
    173 pseudo-device	vnd		4	# disk-like interface to files
    174 
    175 # network pseudo-devices
    176 pseudo-device	bpfilter	4	# Berkeley packet filter
    177 pseudo-device	loop			# network loopback
    178 
    179 # miscellaneous pseudo-devices
    180 pseudo-device	pty			# pseudo-terminals
    181 pseudo-device	rnd			# /dev/random and in-kernel generator
    182 pseudo-device	clockctl		# user control of clock subsystem
    183