GENERIC revision 1.34 1 # $NetBSD: GENERIC,v 1.34 2024/01/29 18:27:14 christos Exp $
2 #
3
4 include "arch/mvmeppc/conf/std.mvmeppc"
5
6 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
7
8 ident "GENERIC-$Revision: 1.34 $"
9
10 maxusers 8
11
12 # Which board to support
13 options SUPPORT_MVME160X
14 options PIC_I8259
15 #options PIC_PREPIVR
16
17 # Standard system options
18
19 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
20
21 options KTRACE # system call tracing via ktrace(1)
22
23 options SYSVMSG # System V-like message queues
24 options SYSVSEM # System V-like semaphores
25 options SYSVSHM # System V-like memory sharing
26
27 options USERCONF # userconf(4) support
28 options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
29 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
30
31 # Diagnostic/debugging support options
32 options DIAGNOSTIC # cheap kernel consistency checks
33 options DEBUG # expensive debugging checks/support
34 options DDB # in-kernel debugger
35 pseudo-device ksyms
36 #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
37 #makeoptions DEBUG="-g"
38
39 # File systems
40 file-system FFS # UFS
41 #file-system EXT2FS # second extended file system (linux)
42 #file-system LFS # log-structured file system
43 file-system MFS # memory file system
44 file-system NFS # Network File System client
45 #file-system NTFS # Windows/NT file system (experimental)
46 #file-system CD9660 # ISO 9660 + Rock Ridge file system
47 #file-system MSDOSFS # MS-DOS file system
48 #file-system FDESC # /dev/fd
49 #file-system KERNFS # /kern
50 #file-system NULLFS # loopback file system
51 #file-system OVERLAY # overlay file system
52 ##file-system PROCFS # /proc
53 #file-system UMAPFS # NULLFS + uid and gid remapping
54 #file-system UNION # union file system
55 #file-system CODA # Coda File System; also needs vcoda (below)
56 file-system PTYFS # /dev/pts/N support
57 file-system TMPFS # Efficient memory file-system
58
59 # File system options
60 #options FFS_EI # FFS Endian Independent support
61 options FFS_NO_SNAPSHOT # No FFS snapshot support
62 #options QUOTA # legacy UFS quotas
63 #options QUOTA2 # new, in-filesystem UFS quotas
64 options UFS_DIRHASH # UFS Large Directory Hashing
65 #options UFS_EXTATTR # Extended attribute support for UFS1
66 options WAPBL # File system journaling support
67 #options DISKLABEL_EI # disklabel Endian Independent support
68 #options NFSSERVER # Network File System server
69
70 # Networking options
71 #options GATEWAY # packet forwarding
72 options INET # IP + ICMP + TCP + UDP
73 #options INET6 # IPv6
74 #options IPSEC # IP security
75 #options IPSEC_DEBUG # debug for IP security
76 #options MROUTING # IP multicast routing
77 #options PIM # Protocol Independent Multicast
78 #options NETATALK # AppleTalk networking protocols
79 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
80 #options PPP_DEFLATE # Deflate compression support for PPP
81 #options PPP_FILTER # Active filter support for PPP (requires bpf)
82 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
83
84 # These options enable verbose messages for several subsystems.
85 # Warning, these may compile large string tables into the kernel!
86 #options MIIVERBOSE # verbose PHY autoconfig messages
87 #options PCIVERBOSE # verbose PCI device autoconfig messages
88 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
89 #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
90 #options SCSIVERBOSE # human readable SCSI error messages
91 #options USBVERBOSE # verbose USB device autoconfig messages
92
93 #options NFS_BOOT_BOOTP
94 #options NFS_BOOT_BOOTPARAM
95 options NFS_BOOT_DHCP
96
97 #
98 # wscons options
99 #
100 # builtin terminal emulations
101 #options WSEMUL_VT100 # VT100 / VT220 emulation
102 #options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
103 # different kernel output - see dev/wscons/wsdisplayvar.h
104 #options WS_KERNEL_FG=WSCOL_GREEN
105 #options WS_KERNEL_BG=WSCOL_BLACK
106 # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
107 #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
108 # allocate a number of virtual screens at autoconfiguration time
109 #options WSDISPLAY_DEFAULTSCREENS=4
110 # use a large software cursor that doesn't blink
111 #options PCDISPLAY_SOFTCURSOR
112
113 # Kernel root file system and dump configuration.
114 config netbsd root on ? type ?
115 #config netbsd root on tlp0 type nfs
116 #config netbsd root on le0 type nfs
117
118
119 #
120 # Device configuration
121 #
122
123 mainbus0 at root
124 cpu0 at mainbus0
125
126
127 # Basic Bus Support
128
129 # PCI bus support
130 pci0 at mainbus0 bus ?
131 pci* at pchb? bus ?
132 pci* at ppb? bus ?
133
134 #options PCI_NETBSD_CONFIGURE
135
136 # PCI bridges
137 pchb* at pci? dev ? function ? # PCI-Host bridges
138 ppb* at pci? dev ? function ? # PCI-PCI bridges
139 pcib* at pci? dev ? function ? # PCI-ISA bridges
140
141 # ISA bus support
142 isa* at pcib? # ISA on PCI-ISA bridge
143
144 # Console Devices
145
146 # wscons
147 #pckbc0 at isa? # pc keyboard controller
148 #pckbd* at pckbc? # PC keyboard
149 #pms* at pckbc? # PS/2 mouse for wsmouse
150 #vga* at pci?
151 #wsdisplay* at vga? console ?
152 #wskbd* at pckbd? console ?
153 #wsmouse* at pms? mux 0
154
155
156 # Serial Devices
157
158 # ISA serial interfaces
159 com0 at isa? port 0x3f8 irq 4 # standard PC serial ports
160 com1 at isa? port 0x2f8 irq 3
161
162 # TODO: 85230 SIO x2
163
164
165 # Parallel Printer Interfaces
166
167 # ISA parallel printer interfaces
168 lpt0 at isa? port 0x3bc irq 7 # standard PC parallel ports
169
170
171 # Real-time clocks
172
173 mkclock0 at isa? port 0x74 # MK48T18 NVRAM/RTC
174
175
176 # SCSI Controllers and Devices
177
178 # PCI SCSI controllers
179 siop* at pci? dev ? function ? # Symbios 53c8xx SCSI
180
181
182 # SCSI bus support
183 scsibus* at siop?
184
185 # SCSI devices
186 sd* at scsibus? target ? lun ? # SCSI disk drives
187 #st* at scsibus? target ? lun ? # SCSI tape drives
188 #cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
189 #ch* at scsibus? target ? lun ? # SCSI autochangers
190 #ss* at scsibus? target ? lun ? # SCSI scanners
191 #uk* at scsibus? target ? lun ? # SCSI unknown
192
193
194 # Network Interfaces
195
196 # PCI network interfaces
197 tlp* at pci? dev ? function ? # DECchip 21x4x and clones
198
199 # MII/PHY support
200 ukphy* at mii? phy ? # generic unknown PHYs
201
202
203 # Pseudo-Devices
204
205 # disk/mass storage pseudo-devices
206 #pseudo-device ccd # concatenated/striped disk devices
207 #pseudo-device cgd # cryptographic disk devices
208 #pseudo-device raid # RAIDframe disk driver
209 #options RAID_AUTOCONFIG # auto-configuration of RAID components
210 # Options to enable various other RAIDframe RAID types.
211 # options RF_INCLUDE_EVENODD=1
212 # options RF_INCLUDE_RAID5_RS=1
213 # options RF_INCLUDE_PARITYLOGGING=1
214 # options RF_INCLUDE_CHAINDECLUSTER=1
215 # options RF_INCLUDE_INTERDECLUSTER=1
216 # options RF_INCLUDE_PARITY_DECLUSTERING=1
217 # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
218 #pseudo-device fss # file system snapshot device
219 #pseudo-device md # memory disk device (ramdisk)
220 #pseudo-device vnd # disk-like interface to files
221
222 # network pseudo-devices
223 pseudo-device loop # network loopback
224 #pseudo-device bpfilter # Berkeley packet filter
225 #pseudo-device npf # NPF packet filter
226 #pseudo-device ppp # Point-to-Point Protocol
227 #pseudo-device pppoe # PPP over Ethernet (RFC 2516)
228 #pseudo-device sl # Serial Line IP
229 #pseudo-device tun # network tunneling over tty
230 #pseudo-device tap # virtual Ethernet
231 #pseudo-device gre # generic L3 over IP tunnel
232 #pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
233 #pseudo-device faith # IPv[46] tcp relay translation i/f
234 #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
235 #pseudo-device vlan # IEEE 802.1q encapsulation
236 #pseudo-device bridge # simple inter-network bridging
237 #pseudo-device vether # Virtual Ethernet for bridge
238
239 #
240 # accept filters
241 pseudo-device accf_data # "dataready" accept filter
242 pseudo-device accf_http # "httpready" accept filter
243
244 # miscellaneous pseudo-devices
245 pseudo-device pty # pseudo-terminals
246 #pseudo-device sequencer # MIDI sequencer
247 #options RND_COM # use "com" randomness as well
248 pseudo-device clockctl # user control of clock subsystem
249 pseudo-device swwdog # software watchdog timer -- swwdog(4)
250
251 # a pseudo device needed for Coda # also needs CODA (above)
252 #pseudo-device vcoda # coda minicache <-> venus comm.
253
254 # wscons pseudo-devices
255 #pseudo-device wsmux # mouse & keyboard multiplexor
256 #pseudo-device wsfont
257
258 # Pull in optional local configuration - always at end
259 cinclude "arch/mvmeppc/conf/GENERIC.local"
260