WGT624V3 revision 1.33
1#	$NetBSD: WGT624V3,v 1.33 2022/08/07 02:52:25 simonb Exp $
2
3include 	"arch/evbmips/conf/std.atheros"
4
5#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
6
7#ident 		"WGT624V3-$Revision: 1.33 $"
8
9maxusers	32
10
11makeoptions	COPTS="-Os"		# Optimise for space. Implies -O2
12makeoptions	ATH_MACHINE_HAL=ap51
13
14options 	MIPS32
15options 	NOFPU		# No FPU
16options 	FPEMUL		# emulate FPU insn
17options		WISOC_AR5315	# WiSoC select
18options		COM_ARBUS_BAUD=9600
19
20# Options for necessary to use MD
21#options 	MEMORY_DISK_HOOKS
22#options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
23#options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
24#options 	MEMORY_DISK_ROOT_SIZE=6144	# size of memory disk, in blocks
25#options 	MEMORY_DISK_ROOT_SIZE=16384	# size of memory disk, in blocks
26#options		MEMORY_DISK_ROOT_SIZE=7300
27
28# Size reduction options
29options 	VNODE_OP_NOINLINE
30options		PIPE_SOCKETPAIR
31options		SOSEND_NO_LOAN
32
33# Standard system options
34#options 	KTRACE		# system call tracing support
35#options 	SYSVMSG		# System V message queues
36#options 	SYSVSEM		# System V semaphores
37#options 	SYSVSHM		# System V shared memory
38options 	NTP		# network time protocol
39
40# Debugging options
41options 	DIAGNOSTIC	# extra kernel sanity checking
42#options 	DEBUG		# extra kernel debugging support
43#options 	USERCONF	# userconf(4) support
44#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
45options 	DDB		# kernel dynamic debugger
46options 	DDB_HISTORY_SIZE=100 # enable history editing in DDB
47makeoptions 	DEBUG="-g"	# compile full symbol table
48makeoptions	COPY_SYMTAB=1	# size for embedded symbol table
49
50# Compatibility options
51
52include         "conf/compat_netbsd50.config"
53
54#options 	EXEC_ECOFF	# exec ECOFF binaries
55#options 	COMPAT_ULTRIX	# binary compatibility with Ultrix
56
57# File systems
58file-system	FFS		# Berkeley Fast Filesystem
59file-system	MFS		# memory-based filesystem
60#file-system 	EXT2FS		# second extended file system (linux)
61file-system	NFS		# Sun NFS-compatible filesystem client
62#file-system	KERNFS		# kernel data-structure filesystem
63#file-system	NULLFS		# NULL layered filesystem
64#file-system 	OVERLAY		# overlay file system
65#file-system	FDESC		# user file descriptor filesystem
66#file-system	UMAPFS		# uid/gid remapping filesystem
67#file-system	LFS		# Log-based filesystem (still experimental)
68#file-system	PROCFS		# /proc
69#file-system	CD9660		# ISO 9660 + Rock Ridge file system
70#file-system	UNION		# union file system
71#file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
72#file-system 	CODA		# Coda File System; also needs vcoda (below)
73#file-system	PTYFS		# /dev/pts/N support
74
75# File system options
76#options 	FFS_EI		# FFS Endian Independent support
77options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
78#options 	QUOTA		# legacy UFS quotas
79#options 	QUOTA2		# new, in-filesystem UFS quotas
80#options 	UFS_DIRHASH	# UFS Large Directory Hashing
81#options 	UFS_EXTATTR	# Extended attribute support for UFS1
82options 	WAPBL		# File system journaling support
83#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
84				# immutable) behave as system flags.
85#options 	NFSSERVER	# Network File System server
86
87# Alternate buffer queue strategies for better responsiveness under high
88# disk I/O load.
89#options 	BUFQ_READPRIO
90options 	BUFQ_PRIOCSCAN
91
92# Networking options
93#options 	GATEWAY		# IP packet forwarding
94options 	INET		# Internet protocols
95#options 	INET6		# IPV6
96#options 	IPSEC		# IP security
97#options 	IPSEC_DEBUG	# debug for IP security
98#options 	MROUTING	# packet forwarding of multicast packets
99#options 	PIM		# Protocol Independent Multicast
100#options 	NETATALK	# AppleTalk (over Ethernet) protocol
101#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
102#options 	PPP_DEFLATE	# Deflate compression support for PPP
103#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
104
105# JIT compiler for bpfilter
106#options	SLJIT
107#options	BPFJIT
108
109# These options enable verbose messages for several subsystems.
110# Warning, these may compile large string tables into the kernel!
111options 	MIIVERBOSE	# verbose PHY autoconfig messages
112
113# Bitmask for enabling the PCI IDE channels in the southbridge.
114# Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
115#
116# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
117# channels for you (thus causing the NetBSD `pciide' driver to ignore them).
118#options 	PCI_NETBSD_ENABLE_IDE=0x1
119
120options 	NFS_BOOT_DHCP
121options		NFS_V2_ONLY
122
123#config		netbsd	root on ? type ?
124config		netbsd	root on ae0 type nfs
125
126
127mainbus0 	at root
128cpu0 		at mainbus?
129wdog0		at mainbus?
130arbus0		at mainbus?
131
132com*		at arbus? addr ?
133ae*		at arbus? addr ?
134ath*		at arbus? addr ?
135athflash*	at arbus? addr ?
136argpio*		at arbus? addr ?
137gpio*		at argpio?
138
139# no RTC!  so fake with a stub (required to prevent evbmips panic)
140
141
142# MII/PHY support
143mvphy*		at mii? phy ?
144
145
146# Pseudo-devices
147
148# Disk/mass storage pseudo-devices
149#pseudo-device	ccd				# concatenated disk devices
150#pseudo-device	raid				# RAIDframe disk driver
151#pseudo-device	fss				# file system snapshot device
152#pseudo-device	md				# memory disk device (ramdisk)
153#pseudo-device	vnd				# disk-like interface to files
154
155# Network pseudo-devices
156pseudo-device	bpfilter			# Berkeley packet filter
157#pseudo-device	npf			# NPF packet filter
158pseudo-device	loop				# network loopback
159#pseudo-device	ppp				# Point-to-Point Protocol
160#pseudo-device	sl				# Serial Line IP
161#pseudo-device	tun				# network tunneling over tty
162#pseudo-device	tap				# virtual Ethernet
163#pseudo-device	gre				# generic L3 over IP tunnel
164#pseudo-device	ipip				# RFC 2003 IP Encapsulation
165#pseudo-device	gif				# RFC1933 tunnel
166#pseudo-device	faith				# IPv[46] tcp relay translation
167#pseudo-device	stf				# 6to4 IPv6 over IPv4 encapsulation
168#pseudo-device	vlan				# IEEE 802.1q encapsulation
169#pseudo-device	bridge				# simple inter-network bridging
170#pseudo-device	vether				# Virtual Ethernet for bridge
171
172# Miscellaneous pseudo-devices
173pseudo-device	pty				# pseudo-terminals
174pseudo-device	clockctl			# user control of clock subsystem
175pseudo-device	ksyms				# /dev/ksyms
176
177# A pseudo device needed for Coda		# also needs CODA (above)
178#pseudo-device	vcoda				# coda minicache <-> venus comm.
179