ZYXELKX revision 1.1 1 1.1 matt include "arch/evbmips/conf/std.rasoc"
2 1.1 matt
3 1.1 matt options SYMTAB_SPACE=450000 # size for embedded symbol table
4 1.1 matt
5 1.1 matt options RALINK_CONSOLE_EARLY
6 1.1 matt options MT7620
7 1.1 matt options RALINK_ETH_NUM_SW_PARTITIONS=5
8 1.1 matt options CONSPEED=57600
9 1.1 matt
10 1.1 matt maxusers 8
11 1.1 matt
12 1.1 matt # Size reduction options
13 1.1 matt #options VNODE_OP_NOINLINE
14 1.1 matt #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
15 1.1 matt #options SOSEND_NO_LOAN
16 1.1 matt
17 1.1 matt # Standard system options
18 1.1 matt
19 1.1 matt options INSECURE # disable kernel security levels - X needs this
20 1.1 matt
21 1.1 matt options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
22 1.1 matt options NTP # NTP phase/frequency locked loop
23 1.1 matt
24 1.1 matt #options KTRACE # system call tracing via ktrace(1)
25 1.1 matt
26 1.1 matt #options SYSVMSG # System V-like message queues
27 1.1 matt #options SYSVSEM # System V-like semaphores
28 1.1 matt #options SYSVSHM # System V-like memory sharing
29 1.1 matt #options SHMMAXPGS=2048 # 2048 pages is the default
30 1.1 matt
31 1.1 matt #options NMBCLUSTERS=1024
32 1.1 matt #options MCLSHIFT=12 # 4k mbuf clusters (increases pool max's to 4k as well)
33 1.1 matt
34 1.1 matt #options USERCONF # userconf(4) support
35 1.1 matt #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
36 1.1 matt
37 1.1 matt # Diagnostic/debugging support options
38 1.1 matt options DIAGNOSTIC # expensive kernel consistency checks
39 1.1 matt #options LOCKDEBUG
40 1.1 matt #options KSTACK_CHECK_MAGIC
41 1.1 matt options DEBUG # expensive debugging checks/support
42 1.1 matt options KMEMSTATS # kernel memory statistics (vmstat -m)
43 1.1 matt options DDB # in-kernel debugger
44 1.1 matt options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic'
45 1.1 matt #options DDB_HISTORY_SIZE=512 # enable history editing in DDB
46 1.1 matt #options DDB_COMMANDONENTER="w/b 0x90000128 0 ; bt" # disable watchdog & drop history on enter
47 1.1 matt #options KGDB # remote debugger
48 1.1 matt #options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=9600
49 1.1 matt #makeoptions DEBUG="-g2" # compile full symbol table
50 1.1 matt #makeoptions COPTS="-Os" # Optimise for space.
51 1.1 matt
52 1.1 matt #makeoptions PROF="-p" # build profiling in
53 1.1 matt #options GPROF
54 1.1 matt
55 1.1 matt # Compatibility options
56 1.1 matt #options COMPAT_NOMID # NetBSD 0.8, 386BSD, and BSDI
57 1.1 matt #options COMPAT_09 # NetBSD 0.9
58 1.1 matt #options COMPAT_10 # NetBSD 1.0
59 1.1 matt #options COMPAT_11 # NetBSD 1.1
60 1.1 matt #options COMPAT_12 # NetBSD 1.2, 386BSD, and BSDI
61 1.1 matt #options COMPAT_13 # NetBSD 1.3, 386BSD, and BSDI
62 1.1 matt #options COMPAT_14 # NetBSD 1.4
63 1.1 matt #options COMPAT_15 # NetBSD 1.5
64 1.1 matt #options COMPAT_16 # NetBSD 1.6
65 1.1 matt #options COMPAT_20 # NetBSD 2.0
66 1.1 matt #options COMPAT_30 # NetBSD 3.0 compatibility.
67 1.1 matt #options COMPAT_40 # NetBSD 4.0
68 1.1 matt options COMPAT_50 # NetBSD 5.0 compatibility.
69 1.1 matt options COMPAT_60 # NetBSD 6.0 compatibility.
70 1.1 matt #options COMPAT_43 # 4.3BSD, 386BSD, and BSDI
71 1.1 matt #options COMPAT_386BSD_MBRPART # recognize old partition ID
72 1.1 matt #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
73 1.1 matt
74 1.1 matt #options COMPAT_SVR4 # binary compatibility with SVR4
75 1.1 matt #options COMPAT_IBCS2 # binary compatibility with SCO and ISC
76 1.1 matt #options COMPAT_LINUX # binary compatibility with Linux
77 1.1 matt #options COMPAT_FREEBSD # binary compatibility with FreeBSD
78 1.1 matt #options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
79 1.1 matt
80 1.1 matt # File systems
81 1.1 matt file-system FFS # UFS
82 1.1 matt #file-system EXT2FS # second extended file system (linux)
83 1.1 matt #file-system LFS # log-structured file system
84 1.1 matt file-system MFS # memory file system
85 1.1 matt file-system NFS # Network File System client
86 1.1 matt #file-system CD9660 # ISO 9660 + Rock Ridge file system
87 1.1 matt file-system MSDOSFS # MS-DOS file system
88 1.1 matt #file-system FDESC # /dev/fd
89 1.1 matt file-system KERNFS # /kern
90 1.1 matt #file-system NULLFS # loopback file system
91 1.1 matt #file-system PORTAL # portal filesystem (still experimental)
92 1.1 matt file-system PROCFS # /proc
93 1.1 matt #file-system UMAPFS # NULLFS + uid and gid remapping
94 1.1 matt #file-system UNION # union file system
95 1.1 matt #file-system SMBFS # experimental - CIFS; also needs nsmb (below)
96 1.1 matt #file-system PTYFS # /dev/pts/N support
97 1.1 matt file-system TMPFS # Efficient memory file-system
98 1.1 matt
99 1.1 matt # File system options
100 1.1 matt #options QUOTA # UFS quotas
101 1.1 matt #options FFS_EI # FFS Endian Independant support
102 1.1 matt #options NFSSERVER # Network File System server
103 1.1 matt options FFS_NO_SNAPSHOT # No FF snapshot support
104 1.1 matt #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and immutable) behave as system flags.
105 1.1 matt
106 1.1 matt # Networking options
107 1.1 matt options GATEWAY # packet forwarding
108 1.1 matt options INET # IP + ICMP + TCP + UDP
109 1.1 matt options MROUTING # IP multicast routing
110 1.1 matt #options INET6 # IPV6
111 1.1 matt #options IPSEC # IP security
112 1.1 matt #options IPSEC_DEBUG # debug for IP security
113 1.1 matt #options PIM # Protocol Independent Multicast
114 1.1 matt #options NETATALK # AppleTalk networking protocols
115 1.1 matt #options PPP_BSDCOMP # BSD-Compress compression support for PPP
116 1.1 matt #options PPP_DEFLATE # Deflate compression support for PPP
117 1.1 matt #options PPP_FILTER # Active filter support for PPP (requires bpf)
118 1.1 matt #options IPFILTER_LOG # ipmon(8) log support
119 1.1 matt #options IPFILTER_LOOKUP # ippool(8) support
120 1.1 matt #options IPFILTER_DEFAULT_BLOCK # block all packets by default
121 1.1 matt #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
122 1.1 matt
123 1.1 matt #options ALTQ # Manipulate network interfaces' output queues
124 1.1 matt #options ALTQ_BLUE # Stochastic Fair Blue
125 1.1 matt #options ALTQ_CBQ # Class-Based Queueing
126 1.1 matt #options ALTQ_CDNR # Diffserv Traffic Conditioner
127 1.1 matt #options ALTQ_FIFOQ # First-In First-Out Queue
128 1.1 matt #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
129 1.1 matt #options ALTQ_HFSC # Hierarchical Fair Service Curve
130 1.1 matt #options ALTQ_LOCALQ # Local queueing discipline
131 1.1 matt #options ALTQ_PRIQ # Priority Queueing
132 1.1 matt #options ALTQ_RED # Random Early Detection
133 1.1 matt #options ALTQ_RIO # RED with IN/OUT
134 1.1 matt #options ALTQ_WFQ # Weighted Fair Queueing
135 1.1 matt
136 1.1 matt # These options enable verbose messages for several subsystems.
137 1.1 matt # Warning, these may compile large string tables into the kernel!
138 1.1 matt #options EISAVERBOSE # verbose EISA device autoconfig messages
139 1.1 matt #options PCIVERBOSE # verbose PCI device autoconfig messages
140 1.1 matt #options PCI_CONFIG_DUMP # verbosely dump PCI config space
141 1.1 matt #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
142 1.1 matt #options SCSIVERBOSE # human readable SCSI error messages
143 1.1 matt #options USBVERBOSE # verbose USB device autoconfig messages
144 1.1 matt
145 1.1 matt # Options for necessary to use MD
146 1.1 matt #options MEMORY_DISK_HOOKS
147 1.1 matt #options MEMORY_DISK_IS_ROOT # force root on memory disk
148 1.1 matt #options MEMORY_DISK_SERVER=0 # no userspace memory disk support
149 1.1 matt #options MEMORY_DISK_ROOT_SIZE=8192 # embed the FS into the system for now
150 1.1 matt #options MEMORY_RBFLAGS=0 # keep the kernel from forcing single user mode
151 1.1 matt
152 1.1 matt # Options for NFS root boot
153 1.1 matt options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM,NFS_BOOT_BOOTSTATIC
154 1.1 matt #options NFS_BOOTSTATIC_MYIP="\"192.168.0.1\""
155 1.1 matt #options NFS_BOOTSTATIC_GWIP="\"192.168.0.1\""
156 1.1 matt #options NFS_BOOTSTATIC_MASK="\"255.255.255.0\""
157 1.1 matt #options NFS_BOOTSTATIC_SERVADDR="\"192.168.0.5\""
158 1.1 matt #options NFS_BOOTSTATIC_SERVER="\"192.168.0.5:/home/andersen/nfs/mbr1400\""
159 1.1 matt
160 1.1 matt # Need more mbufs for IPsec VPN
161 1.1 matt #options NMBCLUSTERS=4096
162 1.1 matt
163 1.1 matt # rt3052 dev board root on embedded NFS mount disk
164 1.1 matt config netbsd root on ? type ?
165 1.1 matt config netbsd-sd0a root on sd0a type ffs dumps none
166 1.1 matt config netbsd-reth0 root on reth0 type nfs dumps none
167 1.1 matt
168 1.1 matt mainbus0 at root
169 1.1 matt cpu0 at mainbus?
170 1.1 matt com0 at mainbus?
171 1.1 matt reth* at mainbus? flags 1
172 1.1 matt rwdog0 at mainbus?
173 1.1 matt options RA_WDOG_DEFAULT_PERIOD=10
174 1.1 matt #options RA_WDOG_DEFAULT_MODE=WDOG_MODE_DISARMED
175 1.1 matt options RA_WDOG_DEFAULT_MODE=WDOG_MODE_KTICKLE
176 1.1 matt
177 1.1 matt # PCI/PCIe support
178 1.1 matt rpci0 at mainbus?
179 1.1 matt pci* at rpci?
180 1.1 matt
181 1.1 matt # USB support on rusb0
182 1.1 matt ehci* at mainbus?
183 1.1 matt usb* at ehci?
184 1.1 matt
185 1.1 matt # USB support on rusb0
186 1.1 matt ohci* at mainbus?
187 1.1 matt usb* at ohci?
188 1.1 matt
189 1.1 matt # GPIO support
190 1.1 matt rgpio0 at mainbus?
191 1.1 matt gpio* at rgpio?
192 1.1 matt
193 1.1 matt # I2C support
194 1.1 matt ri2c0 at mainbus?
195 1.1 matt iic* at ri2c?
196 1.1 matt
197 1.1 matt # NOR Flash
198 1.1 matt #options NOR_VERBOSE
199 1.1 matt #cfi0 at mainbus0
200 1.1 matt #nor0 at cfi0
201 1.1 matt #flash0 at nor0 offset 0x00000000 size 0x00040000
202 1.1 matt #flash1 at nor0 offset 0x00040000 size 0x00020000
203 1.1 matt #flash2 at nor0 offset 0x00060000 size 0x00020000
204 1.1 matt #flash3 at nor0 offset 0x00080000 size 0x00120000 # kernel
205 1.1 matt #flash4 at nor0 offset 0x001a0000 size 0x006e0000 # filesystem
206 1.1 matt #flash5 at nor0 offset 0x00880000 size 0x01760000 # upgrade
207 1.1 matt #flash6 at nor0 offset 0x01fe0000 size 0x00020000
208 1.1 matt
209 1.1 matt # USB Hubs
210 1.1 matt uhub* at usb?
211 1.1 matt uhub* at uhub? port ?
212 1.1 matt
213 1.1 matt # USB Mass Storage
214 1.1 matt umass* at uhub? port ?
215 1.1 matt scsibus* at scsi?
216 1.1 matt sd* at scsibus? target ? lun ?
217 1.1 matt
218 1.1 matt # USB Ethernet adapters
219 1.1 matt #aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
220 1.1 matt #axe* at uhub? port ? # ASIX AX88172 10/100 based adapters
221 1.1 matt
222 1.1 matt # USB Generic driver
223 1.1 matt ugen* at uhub? port ?
224 1.1 matt
225 1.1 matt # PHY Support
226 1.1 matt ukphy* at mii? phy ? # generic unknown PHYs
227 1.1 matt #arphy* at mii? phy ? # Atheros AR8316 switch
228 1.1 matt
229 1.1 matt # Pseudo-Devices
230 1.1 matt
231 1.1 matt # disk/mass storage pseudo-devices
232 1.1 matt
233 1.1 matt # network pseudo-devices
234 1.1 matt pseudo-device bpfilter # Berkeley packet filter
235 1.1 matt pseudo-device bridge # simple inter-network bridging
236 1.1 matt pseudo-device loop # network loopback
237 1.1 matt pseudo-device tap # virtual Ethernet
238 1.1 matt pseudo-device pf # PF packet filter
239 1.1 matt pseudo-device pflog # PF log if
240 1.1 matt pseudo-device pppoe # PPPoE protocol
241 1.1 matt pseudo-device vlan # 802.1q
242 1.1 matt
243 1.1 matt # miscellaneous pseudo-devices
244 1.1 matt pseudo-device pty # pseudo-terminals
245 1.1 matt pseudo-device clockctl # /dev/clockctl - user control of clock subsystem
246 1.1 matt pseudo-device ksyms # /dev/ksyms - kernel symbols
247