GDIUM revision 1.17 1 # $NetBSD: GDIUM,v 1.17 2012/10/17 14:48:11 apb Exp $
2 #
3 # GENERIC 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 include "arch/evbmips/conf/std.gdium"
22
23 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24
25 #ident "GDIUM-$Revision: 1.17 $"
26
27 maxusers 16
28
29 makeoptions CPUFLAGS="-mips3 -mdivide-breaks" # CPU codegen options
30 options LOONGSON2 # IDT LOONGSON2
31 # Standard system options
32 options DDB # in-kernel debugger
33 #options DDB_ONPANIC=0 # don't enter debugger on panic
34 options DDB_HISTORY_SIZE=512 # enable history editing in DDB
35 #options KGDB # remote debugger
36 options DIAGNOSTIC # extra kernel debugging checks
37 #options DEBUG # extra kernel debugging support
38 makeoptions DEBUG="-g"
39 options KTRACE # system call tracing support
40 options MSGBUFSIZE=8192 # dmesg buffer size
41
42 ## UVM options.
43 #options UVM_PAGE_TRKOWN
44 #options UVMHIST
45 #options UVMHIST_PRINT # Loud!
46
47 #options SCSIVERBOSE # human readable SCSI error messages
48 #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
49 #options PCMCIADEBUG
50 #options PCMCIACISDEBUG
51
52 #options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
53 #options RTC_OFFSET=-540 # JST-9
54 #options RTC_OFFSET=480 # PST8
55 # In NO RTC_OFFSET , inherit RTC_OFFSET
56 # from Windows CE.
57 options NTP # network time protocol
58
59 #options WINCE_DEFAULT_SETTING # Debugging use
60
61 #options SYSCALL_DEBUG # for debug
62 #options HPCMIPS_L1CACHE_DISABLE # disable L1 cache for debug
63 options USERCONF # userconf(4) support
64 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
65 options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
66
67 # Filesystem options
68 file-system FFS # fast filesystem with user and group quotas
69 file-system MFS # memory-based filesystem
70 file-system NFS # Sun NFS-compatible filesystem (client)
71 #file-system LFS # Log-based filesystem (still experimental)
72 file-system CD9660 # ISO 9660 + Rock Ridge file system
73 file-system MSDOSFS # MS-DOS file system
74 #file-system FDESC # /dev/fd
75 file-system KERNFS # /kern (kernel informational filesystem)
76 #file-system NULLFS # loopback file system
77 #file-system OVERLAY # overlay file system
78 file-system PROCFS # /proc
79 #file-system UMAPFS # NULLFS + uid and gid remapping
80 file-system UNION
81 file-system PTYFS # /dev/pts/N support
82 #file-system TMPFS # Efficient memory file-system
83 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
84
85 options NFSSERVER # Sun NFS-compatible filesystem (server)
86 options WAPBL # File system journaling support
87 #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
88 #options QUOTA # legacy UFS quotas
89 #options QUOTA2 # new, in-filesystem UFS quotas
90 #options FFS_NO_SNAPSHOT # No FFS snapshot support
91
92 # Networking options
93 #options GATEWAY # IP packet forwarding
94 options INET # IP + ICMP + TCP + UDP
95 options INET6 # IPV6
96 #options IPSEC # IP security
97 #options IPSEC_ESP # IP security (encryption part; define w/ IPSEC)
98 #options IPSEC_NAT_T # IPsec NAT traversal (NAT-T)
99 #options IPSEC_DEBUG # debug for IP security
100 #options MROUTING # Multicast routing support
101 #options PIM # Protocol Independent Multicast
102 #options ISO # OSI networking
103 #options TPIP # TPIP
104 #options EON # OSI tunneling over IP
105 options PFIL_HOOKS # pfil(9) packet filter hooks
106 options IPFILTER_LOG # ipmon(8) log support
107 options IPFILTER_LOOKUP # ippool(8) support
108 options IPFILTER_COMPAT # Compat for IP-Filter
109 #options IPFILTER_DEFAULT_BLOCK # block all packets by default
110
111 #options ALTQ # Manipulate network interfaces' output queues
112 #options ALTQ_BLUE # Stochastic Fair Blue
113 #options ALTQ_CBQ # Class-Based Queueing
114 #options ALTQ_CDNR # Diffserv Traffic Conditioner
115 #options ALTQ_FIFOQ # First-In First-Out Queue
116 #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
117 #options ALTQ_HFSC # Hierarchical Fair Service Curve
118 #options ALTQ_LOCALQ # Local queueing discipline
119 #options ALTQ_PRIQ # Priority Queueing
120 #options ALTQ_RED # Random Early Detection
121 #options ALTQ_RIO # RED with IN/OUT
122 #options ALTQ_WFQ # Weighted Fair Queueing
123
124 # NetBSD backwards compatibility
125 options COMPAT_43
126 options COMPAT_16
127 options COMPAT_20
128 options COMPAT_30 # NetBSD 3.0 compatibility.
129 options COMPAT_40 # NetBSD 4.0 compatibility.
130 options COMPAT_50 # NetBSD 5.0 compatibility.
131 options COMPAT_60 # NetBSD 6.0 compatibility.
132 options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
133
134
135 #options NFS_BOOT_DHCP
136 options NFS_BOOT_BOOTP
137 #options NFS_BOOT_BOOTPARAM
138
139 # compile options
140 #makeoptions DEFGP="-G 10"
141
142 config netbsd root on ? type ?
143
144 # WS console uses SUN or VT100 terminal emulation
145 options WSEMUL_VT100
146 options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
147 #options WSDISPLAY_DEFAULTSCREENS=4
148 options FONT_GALLANT12x22
149 # compatibility to other console drivers
150 options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
151 #
152 # Hpckbd will set key board layout appropriately. You can use option
153 # 'PCKBD_LAYOUT' to overrite the default layout.
154 #
155 #options PCKBD_LAYOUT="(KB_US | KB_SWAPCTRLCAPS | KB_MACHDEP)"
156
157 mainbus0 at root
158 cpu0 at mainbus0
159 bonito0 at mainbus0
160 pci0 at bonito0
161 voyager0 at pci0 dev ? function ?
162 voyagerfb0 at voyager0
163 iic* at voyager0
164 strtc* at iic? addr 0x68
165 options STRTC_NO_USERRAM
166 lmtemp* at iic? addr 0x48
167 #stvii* at iic? addr 0x40
168 #genfb0 at pci0 dev ? function ?
169 wsdisplay0 at wsemuldisplaydev?
170 ehci* at pci0 dev ? function ?
171 #options EHCI_DEBUG
172 ohci* at pci0 dev ? function ?
173 #options OHCI_DEBUG, USB_DEBUG, UHUB_DEBUG
174
175 ral* at pci0 dev ? function ? # RL2561S 802.11b/g
176 rtk* at pci0 dev ? function ? # RTL8139 100/10 Ethernet
177 # MII/PHY support
178 ukphy* at mii? phy ? # generic unknown PHYs
179
180 # USB Hubs
181 usb* at ehci?
182 usb* at ohci?
183 uhub* at usb?
184 uhub* at uhub? port ?
185
186 # USB HID device
187 uhidev* at uhub? port ? configuration ? interface ?
188
189 # USB Mice
190 ums* at uhidev? reportid ?
191 wsmouse* at ums? mux 0
192
193 # USB Keyboards
194 ukbd* at uhidev? reportid ?
195 wskbd* at ukbd? console ? mux 1
196
197 # USB Generic HID devices
198 uhid* at uhidev? reportid ?
199
200 # USB serial adapter
201 uftdi* at uhub? port ? configuration ?
202
203 # USB Printer
204 ulpt* at uhub? port ? configuration ? interface ?
205
206 # USB Modem
207 umodem* at uhub? port ? configuration ?
208 ucom* at umodem?
209
210 # Option N.V. Wireless WAN modems
211 uhso* at uhub? port ? configuration ?
212
213 # USB Mass Storage
214 umass* at uhub? port ? configuration ? interface ?
215 scsibus* at umass? channel ?
216 sd* at scsibus? target ? lun ? # SCSI disk drives
217 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
218
219 # FTDI FT8U100AX serial adapter
220 uftdi* at uhub? port ?
221 ucom* at uftdi? portno ?
222
223 uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
224 ucom* at uplcom? portno ?
225
226 umct* at uhub? port ? # MCT USB-RS232 serial adapter
227 ucom* at umct? portno ?
228
229 # USB Generic driver
230 ugen* at uhub? port ?
231
232 #
233 # accept filters
234 pseudo-device accf_data # "dataready" accept filter
235 pseudo-device accf_http # "httpready" accept filter
236
237 pseudo-device loop 1 # network loopback
238 pseudo-device ppp # serial-line IP ports
239 pseudo-device pppoe # PPP over Ethernet (RFC 2516)
240 pseudo-device pty # pseudo-terminals
241 pseudo-device bpfilter # packet filter ports
242 #pseudo-device carp # Common Address Redundancy Protocol
243 pseudo-device ipfilter # IP filter, NAT
244
245 pseudo-device vnd # virtual disk ick
246 #options VND_COMPRESSION # compressed vnd(4)
247 #pseudo-device ccd 4 # concatenated disks
248 pseudo-device fss # file system snapshot device
249 #pseudo-device cgd 4 # cryptographic disks
250 pseudo-device clockctl # user control of clock subsystem
251
252 pseudo-device wsmux # mouse & keyboard multiplexor
253 #pseudo-device md # memory disk device (ramdisk)
254
255 #pseudo-device raid 8 # RAIDframe disk driver
256 #options RAID_AUTOCONFIG # auto-configuration of RAID components
257 # Options to enable various other RAIDframe RAID types.
258 # options RF_INCLUDE_EVENODD=1
259 # options RF_INCLUDE_RAID5_RS=1
260 # options RF_INCLUDE_PARITYLOGGING=1
261 # options RF_INCLUDE_CHAINDECLUSTER=1
262 # options RF_INCLUDE_INTERDECLUSTER=1
263 # options RF_INCLUDE_PARITY_DECLUSTERING=1
264 # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
265
266 # for IPv6
267 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
268 #pseudo-device faith # IPv[46] tcp relay translation i/f
269 pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
270
271 ## IEEE 802.1Q Virtual LAN encapsulation, see vlan(4).
272 pseudo-device vlan
273
274 ## Simple inter-network traffic bridging
275 pseudo-device bridge
276 #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
277 pseudo-device agr # IEEE 802.3ad link aggregation
278 pseudo-device ksyms # /dev/ksyms
279 #pseudo-device pf # PF packet filter
280 #pseudo-device pflog # PF log if
281
282 # Veriexec
283 #
284 # a pseudo device needed for veriexec
285 #pseudo-device veriexec 1
286 #
287 # Uncomment the fingerprint methods below that are desired. Note that
288 # removing fingerprint methods will have almost no impact on the kernel
289 # code size.
290 #
291 #options VERIFIED_EXEC_FP_RMD160
292 #options VERIFIED_EXEC_FP_SHA256
293 #options VERIFIED_EXEC_FP_SHA384
294 #options VERIFIED_EXEC_FP_SHA512
295 #options VERIFIED_EXEC_FP_SHA1
296 #options VERIFIED_EXEC_FP_MD5
297