Home | History | Annotate | Line # | Download | only in conf
      1 #	$NetBSD: NC,v 1.78 2020/04/18 11:00:37 skrll Exp $
      2 #
      3 #	NC - with wscons
      4 #
      5 
      6 include	"arch/acorn32/conf/std.acorn32"
      7 
      8 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9 
     10 # estimated number of users
     11 
     12 maxusers	16
     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 #options 	CPU_SA110	# Support the SA110 core
     21 #options 	CPU_ARM6	# Support the ARM6 core
     22 options 	CPU_ARM7	# Support the ARM7 core
     23 #options 	CPU_ARM8	# Support the ARM8 core
     24 #options 	ARM6_LATE_ABORT	# ARM6XX late abort support
     25 
     26 # File systems
     27 
     28 #file-system	FFS		# UFS
     29 #file-system	LFS		# log-structured file system
     30 file-system	MFS		# memory file system
     31 file-system	NFS		# Network file system
     32 #file-system 	ADOSFS		# AmigaDOS-compatible file system
     33 #file-system 	EXT2FS		# second extended file system (linux)
     34 #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     35 #file-system	MSDOSFS		# MS-DOS file system
     36 #file-system	FDESC		# /dev/fd
     37 #file-system	FILECORE	# Acorn filecore file system
     38 file-system	KERNFS		# /kern
     39 #file-system	NULLFS		# loopback file system
     40 file-system	PROCFS		# /proc
     41 #file-system	UMAPFS		# NULLFS + uid and gid remapping
     42 #file-system	UNION		# union file system
     43 file-system	PTYFS		# /dev/pts/N support
     44 
     45 # File system options
     46 #options 	QUOTA		# legacy UFS quotas
     47 #options 	QUOTA2		# new, in-filesystem UFS quotas
     48 #options 	NFSSERVER
     49 
     50 # Networking options
     51 
     52 #options 	GATEWAY		# packet forwarding
     53 options 	INET6		# IPV6
     54 #options 	IPSEC		# IP security
     55 #options 	IPSEC_DEBUG	# debug for IP security
     56 options 	INET		# IP + ICMP + TCP + UDP
     57 #options 	MROUTING	# IP multicast routing
     58 #options 	PIM		# Protocol Independent Multicast
     59 #options 	NETATALK	# AppleTalk networking
     60 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     61 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     62 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     63 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     64 
     65 # Compatibility options
     66 
     67 include 	"conf/compat_netbsd14.config"
     68 
     69 # Shared memory options
     70 
     71 options 	SYSVMSG		# System V-like message queues
     72 options 	SYSVSEM		# System V-like semaphores
     73 options 	SYSVSHM		# System V-like memory sharing
     74 
     75 # Device options
     76 
     77 options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
     78 #options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
     79 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
     80 
     81 # Miscellaneous kernel options
     82 options 	KTRACE		# system call tracing, a la ktrace(1)
     83 options 	IRQSTATS	# manage IRQ statistics
     84 options 	USERCONF	# userconf(4) support
     85 #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     86 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     87 
     88 # Development and Debugging options
     89 
     90 #options 	ARM700BUGTRACK	# track the ARM700 swi bug
     91 #options 	PORTMASTER	# Enable PortMaster only options
     92 options 	DIAGNOSTIC	# internal consistency checks
     93 #options 	UVMHIST		# kernhist for uvm/pmap subsystems
     94 options 	DDB		# in-kernel debugger
     95 pseudo-device	ksyms
     96 options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
     97 #makeoptions	DEBUG="-g"	# compile full symbol table
     98 
     99 config		netbsd	root on ne0 type nfs
    100 options 	NFS_BOOT_DHCP
    101 #options 	NFS_BOOTPARAM
    102 
    103 # serial console ... the conaddr is hardcoded as the pioc address + 4*com offset
    104 # this really be fixed some day
    105 #options 	COMCONSOLE,CONADDR="0x210000+4*0x3f8",CONUNIT=0,CONSPEED=9600
    106 
    107 # The main bus device
    108 mainbus0 at root
    109 
    110 # The boot CPU
    111 cpu0 at mainbus?
    112 
    113 # The IOMD
    114 iomd0	at mainbus?
    115 
    116 # system clock via IOMD
    117 clock*	at iomd?
    118 
    119 # IIC bus device
    120 iomdiic* at iomd?
    121 iic0 at iomdiic?
    122 
    123 # RTC device via IIC bus
    124 pcfrtc*	at iic? addr 0x50
    125 
    126 # VIDC device
    127 vidc0		at mainbus?
    128 
    129 # WSCONS
    130 # ws console uses DUMB, SUN or VT100 terminal emulation
    131 #options 	WSEMUL_NODUMB
    132 #options 	WSEMUL_SUN
    133 options 	WSEMUL_VT100
    134 
    135 #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    136 
    137 #options 	FONT_BOLD8x16
    138 #options 	FONT_GALLANT12x22	# Very nice font
    139 #options 	FONT_LUCIDA16x29
    140 #options 	FONT_OMRON12x20		# looks funny
    141 #options 	FONT_QVSS8x15		# broken ?
    142 #options 	FONT_SONY12x25		# looks like VT220 font
    143 #options 	FONT_SONY8x16		# not tested
    144 options 	FONT_VT220L8x8		# 8x8 font as in Arch. cons
    145 #options 	FONT_VT220L8x16		# 8x(2x8) font as in Arch. cons
    146 #options 	FONT_VT220L8x10		# not tested
    147 #options 	FONT_VT220L8x20		# not tested
    148 
    149 vidcvideo0	at vidc?		# wscons driver for VIDC
    150 wsdisplay*	at vidcvideo? console ?	# display itself
    151 
    152 iomdkbc*	at iomd?		# IOMD keyboard/mouse interface
    153 
    154 pckbd*		at iomdkbc? slot ?	# PS/2 keyboard
    155 options 	PCKBD_LAYOUT=KB_UK
    156 wskbd*		at pckbd?
    157 
    158 pms*		at iomdkbc? slot ?	# PS/2 mouse
    159 wsmouse*	at pms?
    160 
    161 #qms*		at iomd?		# ws quadmouse driver
    162 #wsmouse*	at qms?			# wsmouse on ws quadmouse
    163 
    164 pseudo-device	wsmux
    165 
    166 
    167 # Peripheral IO Controller
    168 pioc0	at mainbus? base 0x00210000
    169 
    170 # IDE disk controller
    171 #wdc*	at pioc? offset 0x0170 irq -1
    172 
    173 # ATA (IDE) bus support
    174 #atabus* at ata?
    175 
    176 #wd*	at atabus? drive ?
    177 #atapibus* at atapi?
    178 #cd*	at atapibus? drive ?
    179 #sd*	at atapibus? drive ?
    180 
    181 # Floppy disk controller
    182 #fdc*	at pioc? offset 0x03f0 irq 12 dack 0x2000
    183 #fd0	at fdc? drive ?
    184 
    185 # Serial ports
    186 #com*	at pioc? offset 0x03f8 irq 10
    187 
    188 # Parallel ports
    189 lpt*	at pioc? offset 0x0278 irq 0	# Old driver
    190 #atppc*	at pioc? offset 0x0278 irq 0	# New driver
    191 #ppbus*	at atppc?
    192 #lpt*	at ppbus?		# Parallel printer
    193 #plip*	at ppbus?		# Parallel line IP
    194 
    195 # Audio device
    196 vidcaudio0	at vidc?
    197 audio*		at vidcaudio0
    198 
    199 spkr*	at audio?		# PC speaker (synthesized)
    200 
    201 # Podule bus device
    202 podulebus0	at root
    203 
    204 #sec*	at podulebus?			# Acorn SCSI card
    205 #scsibus* at sec?
    206 
    207 #cosc*	at podulebus?			# MCS Connect32 SCSI II card
    208 #scsibus* at cosc?
    209 
    210 #ptsc*	at podulebus?			# Power-Tec SCSI II card
    211 #scsibus* at ptsc?
    212 
    213 #csc*	at podulebus?			# Cumana SCSI II card
    214 #scsibus* at csc?
    215 
    216 #oak*	at podulebus?			# Oak SCSI I card
    217 #scsibus* at oak?
    218 
    219 #csa*	at podulebus?			# Cumana SCSI I adapter
    220 #scsibus* at csa?
    221 
    222 #hcsc*	at podulebus0 slot ?	# HCCS 8-bit SCSI interface
    223 #scsibus* at hcsc?
    224 
    225 #sd*	at scsibus? target ? lun ?	# SCSI disk drives
    226 #st*	at scsibus? target ? lun ?	# SCSI tape drives
    227 #cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    228 #ch*	at scsibus? target ? lun ?	# SCSI auto-changers
    229 #uk*	at scsibus? target ? lun ?	# SCSI unknown device
    230 #ss*	at scsibus? target ? lun ?	# SCSI scanner
    231 
    232 #icside*	at podulebus?			# ICS IDE card
    233 
    234 #rapide*	at podulebus?			# Yellowstone RapIDE card
    235 
    236 #simide*	at podulebus?			# Simtec IDE card
    237 
    238 #amps*	at podulebus?			# Atomwide Multi-Port Serial card
    239 #com*	at amps?
    240 
    241 #ei*	at podulebus?			# Ether1 podules
    242 #ea*	at podulebus?			# Ether3 podules
    243 #eb0	at podulebus?			# EtherB network slot cards
    244 ne*	at podulebus?			# NE2000 clone cards
    245 
    246 pseudo-device	loop			# network loopback
    247 #pseudo-device	bpfilter		# packet filter
    248 #pseudo-device	sl			# CSLIP
    249 #pseudo-device	ppp			# PPP
    250 #pseudo-device	tun			# network tunneling over tty
    251 #pseudo-device	npf			# NPF packet filter
    252 pseudo-device	pty			# pseudo-terminals
    253 pseudo-device	vnd			# disk-like interface to files
    254 #pseudo-device	ccd			# concatenated disk devices
    255 #pseudo-device	fss			# file system snapshot device
    256 pseudo-device	md			# Ramdisk driver
    257 pseudo-device	clockctl		# user control of clock subsystem
    258 pseudo-device	drvctl			# user control of drive subsystem
    259 
    260 # If the standard modes don't work for your monitor, you can specify
    261 # a RISC-OS-format monitor definition file and a list of modes here.
    262 
    263 #makeoptions	MONITOR="Taxan875+LR"
    264 #makeoptions	MONITOR="AKF60"
    265 #makeoptions	MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"
    266