Home | History | Annotate | Line # | Download | only in conf
GENERIC32_IP2x revision 1.27
      1 #	$NetBSD: GENERIC32_IP2x,v 1.27 2005/01/28 03:19:50 rumble Exp $
      2 #
      3 # GENERIC32_IP2x machine description file
      4 # 
      5 # This machine description file is used to generate the default NetBSD
      6 # kernel.  The generic kernel does not include all options, subsystems
      7 # and device drivers, but should be useful for most applications.
      8 #
      9 # The machine description file can be customised for your specific
     10 # machine to reduce the kernel size and improve its performance.
     11 #
     12 # For further information on compiling NetBSD kernels, see the config(8)
     13 # man page.
     14 #
     15 # For further information on hardware support for this architecture, see
     16 # the intro(4) man page.  For further information about kernel options
     17 # for this architecture, see the options(4) man page.  For an explanation
     18 # of each device driver in this file see the section 4 man page for the
     19 # device.
     20 #
     21 #
     22 # Currently this config file supports Indigo R4k, Indigo2 and Indy
     23 # (IP20, IP22 and IP24, respectively).
     24 #
     25 
     26 include		"arch/sgimips/conf/std.sgimips"
     27 
     28 makeoptions	TEXTADDR=0x88069000	# entry point
     29 
     30 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     31 
     32 #ident		"GENERIC32-IP2x-$Revision: 1.27 $"
     33 
     34 maxusers	32
     35 
     36 # CPU related options
     37 options 	MIPS3		# MIPS3 support
     38 options		INDY_R4600_CACHE	# Include routines to handle special
     39 					# R4600 cache -- required for Indy.
     40 
     41 makeoptions	WANT_ECOFF="yes"	# Create an ECOFF kernel in addition
     42 					# to an ELF kernel -- required for
     43 					# netbooting Indigo (IP20) and some
     44 					# Indigo2 (IP22) machines
     45 
     46 #options	BLINK		# blinkenlitzen
     47 
     48 # Standard system options
     49 #options 	INSECURE	# disable kernel security levels
     50 
     51 #options 	NTP		# NTP phase/frequence locked loop
     52 options 	KTRACE		# system call tracing via ktrace(1)
     53 options 	SYSTRACE	# system call vetting via systrace(1)
     54 
     55 options 	SYSVMSG		# System V message queues
     56 options 	SYSVSEM		# System V semaphores
     57 #options 	SEMMNI=10	# number of semaphore identifiers
     58 #options 	SEMMNS=60	# number of semaphores in system
     59 #options 	SEMUME=10	# max number of undo entries per process
     60 #options 	SEMMNU=30	# number of undo structures in system
     61 options 	SYSVSHM		# System V shared memory
     62 #options 	SHMMAXPGS=1024	# 1024 pages is the default
     63 options 	P1003_1B_SEMAPHORE # p1003.1b semaphore support
     64 
     65 #options 	LKM		# loadable kernel modules (XXX: working?)
     66 
     67 options 	USERCONF	# userconf(4) support
     68 #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     69 options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     70 
     71 # Enable experimental buffer queue strategy for better responsiveness under 
     72 # high disk I/O load. Use it with caution - it's not proven to be stable yet.
     73 #options 	NEW_BUFQ_STRATEGY
     74 
     75 # Diagnostic/debugging support options
     76 #options 	DIAGNOSTIC	# expensive kernel consistency checks
     77 #options 	DEBUG		# expensive debugging checks/support
     78 #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     79 options 	DDB		# in-kernel debugger
     80 options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     81 #options 	KGDB		# remote debugger
     82 #options 	KGDB_DEV=0x2301		# KGDB port - this is Serial(1)
     83 #options 	KGDB_DEVRATE=19200	# KGDB Baud Rate
     84 #makeoptions	DEBUG="-g"	# compile full symbol table
     85 
     86 # Compatibility options
     87 options 	COMPAT_15	# NetBSD 1.5
     88 options		COMPAT_16	# NetBSD 1.6
     89 options		COMPAT_20	# NetBSD 2.0
     90 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     91 
     92 options 	COMPAT_IRIX	# binary compatibility with IRIX
     93 #options	COMPAT_LINUX	# binary compatibility with Linux
     94 #options	COMPAT_ULTRIX	# binary compatibility with Ultrix 
     95 options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     96 
     97 # File systems
     98 file-system 	FFS		# UFS
     99 file-system 	EXT2FS		# second extended file system (linux)
    100 file-system 	LFS		# log-structured file system
    101 file-system 	MFS		# memory file system
    102 file-system 	NFS		# Network File System client
    103 file-system 	NTFS		# Windows/NT file system (experimental)
    104 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    105 file-system 	MSDOSFS		# MS-DOS file system
    106 file-system 	FDESC		# /dev/fd
    107 file-system 	KERNFS		# /kern
    108 file-system 	NULLFS		# loopback file system
    109 file-system 	OVERLAY		# overlay file system
    110 file-system 	PORTAL		# portal filesystem (still experimental)
    111 file-system 	PROCFS		# /proc
    112 file-system 	UMAPFS		# NULLFS + uid and gid remapping
    113 file-system 	UNION		# union file system
    114 file-system	CODA		# Coda File System; also needs vcoda (below)
    115 
    116 # File system options
    117 options 	QUOTA		# UFS quotas
    118 #options 	FFS_EI		# FFS Endian Independent support
    119 options 	SOFTDEP		# FFS soft updates support.
    120 #options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    121 options 	NFSSERVER	# Network File System server
    122 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    123 				# immutable) behave as system flags.
    124 
    125 # Networking options
    126 #options 	GATEWAY		# packet forwarding
    127 options 	INET		# IP + ICMP + TCP + UDP
    128 options 	INET6		# IPV6
    129 #options 	IPSEC		# IP security
    130 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
    131 #options 	IPSEC_DEBUG	# debug for IP security
    132 #options 	MROUTING	# IP multicast routing
    133 #options 	PIM		# Protocol Independent Multicast
    134 options 	NS		# XNS
    135 #options 	NSIP		# XNS tunneling over IP
    136 options 	ISO,TPIP	# OSI
    137 #options 	EON		# OSI tunneling over IP
    138 options 	CCITT,LLC,HDLC	# X.25
    139 options 	NETATALK	# AppleTalk networking protocols
    140 options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    141 options 	PPP_DEFLATE	# Deflate compression support for PPP
    142 options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    143 options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    144 options 	IPFILTER_LOG	# ipmon(8) log support
    145 #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
    146 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    147 
    148 #options 	ALTQ		# Manipulate network interfaces' output queues
    149 #options 	ALTQ_BLUE	# Stochastic Fair Blue
    150 #options 	ALTQ_CBQ	# Class-Based Queueing
    151 #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    152 #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    153 #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    154 #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    155 #options 	ALTQ_LOCALQ	# Local queueing discipline
    156 #options 	ALTQ_PRIQ	# Priority Queueing
    157 #options 	ALTQ_RED	# Random Early Detection
    158 #options 	ALTQ_RIO	# RED with IN/OUT
    159 #options 	ALTQ_WFQ	# Weighted Fair Queueing
    160 
    161 # These options enable verbose messages for several subsystems.
    162 # Warning, these may compile large string tables into the kernel!
    163 options 	MIIVERBOSE	# verbose PHY autoconfig messages
    164 options 	SCSIVERBOSE	# human readable SCSI error messages
    165 
    166 options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
    167 
    168 #options 	MEMORY_DISK_HOOKS
    169 #options 	MEMORY_DISK_IS_ROOT
    170 #options 	MEMORY_DISK_SERVER=0
    171 #options 	MINIROOTSIZE=8192
    172 
    173 #options 	SCSI_DELAY=5
    174 
    175 #
    176 # wscons options
    177 #
    178 # builtin terminal emulations
    179 #options 	WSEMUL_SUN		# sun terminal emulation
    180 options 	WSEMUL_VT100		# VT100 / VT220 emulation
    181 # different kernel output - see dev/wscons/wsdisplayvar.h
    182 options 	WS_KERNEL_FG=WSCOL_GREEN
    183 #options 	WS_KERNEL_BG=WSCOL_BLACK
    184 # compatibility to other console drivers
    185 options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    186 # see dev/pckbc/wskbdmap_mfii.c for implemented layouts
    187 #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    188 # the following enables some functions to get mouse console support.
    189 # if you want a really secure system, it may be better not to enable them,
    190 # see wsmoused(8), section SECURITY CONSIDERATIONS for more info.
    191 #options 	WSDISPLAY_CHARFUNCS		# mouse console support
    192 
    193 
    194 # Kernel root file system and dump configuration.
    195 config		netbsd	root on ? type ?
    196 
    197 # Main bus and CPU
    198 mainbus0 	at root
    199 cpu0 		at mainbus?
    200 
    201 sd*     at scsibus? target ? lun ?	# SCSI disks
    202 st*     at scsibus? target ? lun ?	# SCSI tapes
    203 cd*     at scsibus? target ? lun ?	# SCSI CD-ROMs
    204 ch*     at scsibus? target ? lun ?	# SCSI changer devices
    205 ss*     at scsibus? target ? lun ?	# SCSI scanners
    206 ses*    at scsibus? target ? lun ?	# SCSI SES/SAF-TE devices
    207 uk*     at scsibus? target ? lun ?	# unknown SCSI
    208 
    209 # Personal Iris / Indigo R3k
    210 pic0		at mainbus0 addr 0x1fa00000
    211 gio0		at pic0
    212 
    213 # Indy / Indigo^2
    214 imc0 		at mainbus0 addr 0x1fa00000
    215 gio0 		at imc0
    216 eisa0 		at imc0
    217 int0		at mainbus0		# Interrupt controller
    218 
    219 hpc0 		at gio? addr 0x1fb80000
    220 hpc1 		at gio? addr 0x1fb00000
    221 hpc2 		at gio? addr 0x1f980000
    222 
    223 newport*	at gio? slot ?
    224 wsdisplay* 	at newport? console ?
    225 
    226 grtwo*		at gio? slot ?
    227 wsdisplay*	at grtwo? console ?
    228 
    229 # HPC devices
    230 sq* 		at hpc0 offset ?
    231 wdsc* 		at hpc0 offset ?
    232 dpclock*	at hpc0 offset ?	# IP12 / IP20
    233 dsclock*	at hpc0 offset ?	# IP22 / 24
    234 haltwo*         at hpc0 offset ?	# IP22 / 24
    235 pckbc*		at hpc0 offset ?
    236 
    237 pckbd*  	at pckbc?
    238 pms* 		at pckbc?
    239 wskbd* 		at pckbd? console ?
    240 wskbd*		at zskbd? console ?
    241 wsmouse* 	at pms? mux 0
    242 wsmouse*	at zsms? mux 0
    243 
    244 # I/O Controller -- IP22/24
    245 ioc0		at mainbus0 addr 0x1fbd9800
    246 
    247 #
    248 # As always, the zs chip is wired funny, so channel 1 is actually the
    249 # first serial port and channel 0 is the second.
    250 #
    251 zsc0 		at hpc0 offset ?
    252 zstty*		at zsc0 channel ?
    253 
    254 zsc1 		at hpc0 offset ?	# IP20 keyboard/mouse
    255 zskbd0		at zsc1 channel 0
    256 zsms0		at zsc1 channel 1
    257 
    258 scsibus*	at scsi?		# HPC SCSI
    259 audio*          at audiobus?
    260 
    261 # Pseudo-Devices
    262 
    263 # disk/mass storage pseudo-devices
    264 pseudo-device	ccd		4	# concatenated/striped disk devices
    265 #pseudo-device	cgd		4	# cryptographic disk devices
    266 #pseudo-device	raid		4	# RAIDframe disk driver
    267 #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    268 pseudo-device	md		1	# memory disk device (ramdisk)
    269 pseudo-device	vnd		4	# disk-like interface to files
    270 
    271 # network pseudo-devices
    272 pseudo-device	bpfilter	8	# Berkeley packet filter
    273 pseudo-device	ipfilter		# IP filter (firewall) and NAT
    274 pseudo-device	loop			# network loopback
    275 pseudo-device	ppp		2	# Point-to-Point Protocol
    276 pseudo-device	sl		2	# Serial Line IP
    277 pseudo-device	strip		2	# Starmode Radio IP (Metricom)
    278 pseudo-device	tun		2	# network tunneling over tty
    279 pseudo-device	tap			# virtual Ethernet
    280 pseudo-device	gre		2	# generic L3 over IP tunnel
    281 pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    282 #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    283 #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    284 pseudo-device	vlan			# IEEE 802.1q encapsulation
    285 pseudo-device	bridge			# simple inter-network bridging
    286 #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    287 #pseudo-device	pf			# PF packet filter
    288 #pseudo-device	pflog			# PF log if
    289 
    290 # miscellaneous pseudo-devices
    291 pseudo-device	pty			# pseudo-terminals
    292 pseudo-device	tb		1	# tablet line discipline
    293 pseudo-device	sequencer	1	# MIDI sequencer
    294 pseudo-device	rnd			# /dev/random and in-kernel generator
    295 pseudo-device	clockctl		# user control of clock subsystem
    296 pseudo-device	ksyms			# /dev/ksyms
    297 pseudo-device	wsmux                   # mouse & keyboard multiplexor
    298 pseudo-device	wsfont
    299 
    300 # a pseudo device needed for Coda	# also needs CODA (above)
    301 pseudo-device	vcoda		4	# coda minicache <-> venus comm.
    302 
    303 # pseudo devices used for IRIX binary compatibility
    304 pseudo-device	irix_kmem		# IRIX /dev/kmem
    305 pseudo-device	irix_usema		# IRIX /dev/usema
    306