WALNUT revision 1.76 1 1.76 simonb # $NetBSD: WALNUT,v 1.76 2022/08/07 02:52:25 simonb Exp $
2 1.1 scw #
3 1.1 scw # GENERIC -- everything that's currently supported
4 1.1 scw #
5 1.1 scw
6 1.72 mrg include "arch/evbppc/conf/std.walnut"
7 1.1 scw
8 1.1 scw #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9 1.1 scw
10 1.1 scw #ident "WALNUT"
11 1.1 scw
12 1.1 scw maxusers 32
13 1.1 scw
14 1.1 scw #options UVMHIST
15 1.1 scw #options UVMHIST_PRINT
16 1.1 scw
17 1.1 scw # Options for necessary to use MD
18 1.1 scw #options MEMORY_DISK_HOOKS
19 1.1 scw #options MEMORY_DISK_IS_ROOT # force root on memory disk
20 1.1 scw #options MEMORY_DISK_SERVER=0 # no userspace memory disk support
21 1.1 scw #options MEMORY_DISK_ROOT_SIZE=16384 # size of memory disk, in blocks
22 1.1 scw
23 1.1 scw
24 1.1 scw #options INSECURE # disable kernel security levels
25 1.1 scw #options NTP # NTP phase/frequency locked loop
26 1.1 scw options KTRACE # system call tracing via ktrace(1)
27 1.1 scw
28 1.1 scw options SYSVMSG # System V message queues
29 1.1 scw options SYSVSEM # System V semaphores
30 1.1 scw options SYSVSHM # System V shared memory
31 1.1 scw
32 1.1 scw options USERCONF # userconf(4) support
33 1.1 scw #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
34 1.12 atatat #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
35 1.1 scw
36 1.1 scw # Diagnostic/debugging support options
37 1.1 scw #options DIAGNOSTIC # cheap kernel consistency checks
38 1.1 scw #options DEBUG # expensive debugging checks/support
39 1.1 scw options DDB # in-kernel debugger
40 1.1 scw options DDB_HISTORY_SIZE=512 # enable history editing in DDB
41 1.1 scw options TRAP_PANICWAIT
42 1.69 joerg makeoptions COPY_SYMTAB=1 # size for embedded symbol table
43 1.1 scw
44 1.1 scw makeoptions DEBUG="-g" # compile full symbol table
45 1.1 scw
46 1.1 scw # Compatibility options
47 1.72 mrg include "conf/compat_netbsd13.config"
48 1.1 scw #options COMPAT_386BSD_MBRPART # recognize old partition ID
49 1.1 scw
50 1.1 scw # File systems
51 1.1 scw file-system FFS # UFS
52 1.1 scw file-system EXT2FS # second extended file system (linux)
53 1.1 scw file-system LFS # log-structured file system
54 1.1 scw file-system MFS # memory file system
55 1.1 scw file-system NFS # Network File System client
56 1.1 scw file-system CD9660 # ISO 9660 + Rock Ridge file system
57 1.1 scw file-system MSDOSFS # MS-DOS file system
58 1.1 scw file-system FDESC # /dev/fd
59 1.1 scw file-system KERNFS # /kern
60 1.1 scw file-system NULLFS # loopback file system
61 1.1 scw file-system OVERLAY # overlay file system
62 1.42 pooka file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
63 1.1 scw file-system PROCFS # /proc
64 1.58 matt file-system TMPFS # efficient memory file system
65 1.1 scw file-system UMAPFS # NULLFS + uid and gid remapping
66 1.1 scw file-system UNION # union file system
67 1.25 christos file-system PTYFS # /dev/pts/N support
68 1.1 scw
69 1.1 scw # File system options
70 1.76 simonb options FFS_EI # FFS Endian Independent support
71 1.76 simonb #options FFS_NO_SNAPSHOT # No FFS snapshot support
72 1.50 bouyer options QUOTA # legacy UFS quotas
73 1.50 bouyer options QUOTA2 # new, in-filesystem UFS quotas
74 1.76 simonb options UFS_DIRHASH # UFS Large Directory Hashing
75 1.76 simonb options UFS_EXTATTR # Extended attribute support for UFS1
76 1.56 dholland options WAPBL # File system journaling support
77 1.76 simonb options LFS_DIRHASH # LFS version of UFS_DIRHASH - experimental
78 1.1 scw options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
79 1.1 scw # immutable) behave as system flags.
80 1.76 simonb options NFSSERVER # Network File System server
81 1.1 scw
82 1.1 scw options NFS_BOOT_DHCP # Support DHCP NFS root
83 1.1 scw
84 1.1 scw # Networking options
85 1.1 scw #options GATEWAY # packet forwarding
86 1.1 scw options INET # IP + ICMP + TCP + UDP
87 1.1 scw options INET6 # IPV6
88 1.1 scw #options IPSEC # IP security
89 1.1 scw #options IPSEC_DEBUG # debug for IP security
90 1.1 scw #options MROUTING # IP multicast routing
91 1.13 manu #options PIM # Protocol Independent Multicast
92 1.1 scw #options NETATALK # AppleTalk networking protocols
93 1.1 scw options PPP_BSDCOMP # BSD-Compress compression support for PPP
94 1.1 scw options PPP_DEFLATE # Deflate compression support for PPP
95 1.1 scw options PPP_FILTER # Active filter support for PPP (requires bpf)
96 1.1 scw #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
97 1.1 scw
98 1.1 scw # These options enable verbose messages for several subsystems.
99 1.1 scw # Warning, these may compile large string tables into the kernel!
100 1.1 scw options PCIVERBOSE # verbose PCI device autoconfig messages
101 1.1 scw options MIIVERBOSE # verbose PHY autoconfig messages
102 1.1 scw #options PCI_CONFIG_DUMP # verbosely dump PCI config space
103 1.1 scw options SCSIVERBOSE # human readable SCSI error messages
104 1.1 scw options PCI_NETBSD_CONFIGURE # Do not rely on BIOS/whatever to configure PCI devices
105 1.1 scw #options PCI_CONFIGURE_VERBOSE # Show PCI config information
106 1.1 scw
107 1.1 scw # wscons options
108 1.1 scw #options WSEMUL_SUN # sun terminal emulation
109 1.1 scw #options WSEMUL_VT100 # VT100 / VT220 emulation
110 1.59 abs #options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
111 1.1 scw
112 1.1 scw # Kernel root file system and dump configuration.
113 1.1 scw config netbsd root on ? type ?
114 1.1 scw
115 1.1 scw #
116 1.1 scw # Device configuration
117 1.1 scw #
118 1.1 scw
119 1.1 scw plb0 at root # Processor Local Bus
120 1.1 scw
121 1.1 scw cpu0 at plb?
122 1.1 scw
123 1.44 kiyohara ecc0 at plb? irq 17 # On-chip ECC controller
124 1.1 scw
125 1.1 scw opb* at plb? # On-chip Peripheral Bus
126 1.1 scw
127 1.1 scw wdog* at opb? # Watchdog timer
128 1.1 scw
129 1.1 scw com* at opb? addr ? irq ? # UARTs
130 1.1 scw
131 1.1 scw emac0 at opb? addr ? irq ? # Ethernet Media Access Controller
132 1.1 scw options EMAC_EVENT_COUNTERS
133 1.1 scw
134 1.1 scw pchb0 at plb? # PCI-Host bridges
135 1.1 scw
136 1.1 scw pci* at pchb?
137 1.1 scw ppb* at pci? dev ? function ? # PCI-PCI bridges
138 1.1 scw
139 1.1 scw ep* at pci? dev ? function ? # 3Com 3c59x
140 1.1 scw epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
141 1.1 scw ex* at pci? dev ? function ? # 3Com 90x[B]
142 1.1 scw fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
143 1.1 scw ne* at pci? dev ? function ? # NE2000-compatible Ethernet
144 1.1 scw rtk* at pci? dev ? function ? # Realtek 8129/8139
145 1.1 scw sip* at pci? dev ? function ? # SiS 900/7016 Ethernet
146 1.1 scw tlp* at pci? dev ? function ? # DECchip 21x4x and clones
147 1.1 scw adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
148 1.1 scw adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
149 1.1 scw ahc* at pci? dev ? function ? # Adaptec 294x, aic78x0 SCSI
150 1.1 scw bha* at pci? dev ? function ? # BusLogic 9xx SCSI
151 1.1 scw isp* at pci? dev ? function ? # Qlogic ISP 10x0/2xx0 SCSI/Fibre Chan
152 1.1 scw siop* at pci? dev ? function ? # NCR 53c8xx SCSI
153 1.1 scw pcscp* at pci? dev ? function ? # AMD Am53c974 PCscsi-PCI SCSI
154 1.8 bouyer pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
155 1.8 bouyer acardide* at pci? dev ? function ? # Acard IDE controllers
156 1.8 bouyer aceride* at pci? dev ? function ? # Acer Lab IDE controllers
157 1.11 thorpej artsata* at pci? dev ? function ? # Intel i31244 SATA controller
158 1.8 bouyer cmdide* at pci? dev ? function ? # CMD tech IDE controllers
159 1.8 bouyer cypide* at pci? dev ? function ? # Cypress IDE controllers
160 1.8 bouyer hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
161 1.8 bouyer optiide* at pci? dev ? function ? # Opti IDE controllers
162 1.8 bouyer pdcide* at pci? dev ? function ? # Promise IDE controllers
163 1.15 bouyer pdcsata* at pci? dev ? function ? # Promise SATA150 controllers
164 1.9 thorpej satalink* at pci? dev ? function ? # SiI SATALink controllers
165 1.8 bouyer siside* at pci? dev ? function ? # SiS IDE controllers
166 1.8 bouyer slide* at pci? dev ? function ? # Symphony Labs IDE controllers
167 1.8 bouyer viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers
168 1.1 scw #cbb* at pci? dev ? function ? # PCI-CardBus bridge
169 1.1 scw
170 1.1 scw exphy* at mii? phy ? # 3Com internal PHYs
171 1.1 scw icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
172 1.1 scw inphy* at mii? phy ? # Intel 82555 PHYs
173 1.1 scw iophy* at mii? phy ? # Intel 82553 PHYs
174 1.1 scw lxtphy* at mii? phy ? # Level One LXT-970 PHYs
175 1.1 scw nsphy* at mii? phy ? # NS83840 PHYs
176 1.1 scw nsphyter* at mii? phy ? # NS83843 PHYs
177 1.1 scw qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
178 1.1 scw sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
179 1.1 scw tlphy* at mii? phy ? # ThunderLAN PHYs
180 1.1 scw tqphy* at mii? phy ? # TDK Semiconductor PHYs
181 1.1 scw ukphy* at mii? phy ? # generic unknown PHYs
182 1.1 scw
183 1.1 scw # PCI serial interfaces
184 1.1 scw #cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
185 1.1 scw #cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards
186 1.1 scw
187 1.1 scw #cardslot* at cbb?
188 1.1 scw #cardbus* at cardslot?
189 1.1 scw #pcmcia* at cardslot?
190 1.1 scw
191 1.1 scw #com* at pcmcia? function ? # Modems and serial cards
192 1.1 scw #wdc* at pcmcia? function ? # PCMCIA IDE controllers
193 1.1 scw #ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
194 1.1 scw #mbe* at pcmcia? function ? # MB8696x based Ethernet
195 1.1 scw #ne* at pcmcia? function ? # NE2000-compatible Ethernet
196 1.26 drochner #ex* at cardbus? function ? # 3Com 3C575TX
197 1.26 drochner #tlp* at cardbus? function ? # DECchip 21143
198 1.26 drochner #rtk* at cardbus? function ? # Realtek 8129/8139
199 1.1 scw
200 1.1 scw scsibus* at adv?
201 1.1 scw scsibus* at adw?
202 1.1 scw scsibus* at ahc?
203 1.1 scw scsibus* at bha?
204 1.1 scw scsibus* at isp?
205 1.1 scw scsibus* at pcscp?
206 1.1 scw scsibus* at siop?
207 1.1 scw
208 1.1 scw sd* at scsibus? target ? lun ? # SCSI disks
209 1.1 scw st* at scsibus? target ? lun ? # SCSI tape drives
210 1.1 scw cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
211 1.1 scw ch* at scsibus? target ? lun ? # SCSI autochangers
212 1.1 scw ss* at scsibus? target ? lun ? # SCSI scanners
213 1.1 scw uk* at scsibus? target ? lun ? # SCSI unknown
214 1.1 scw
215 1.10 thorpej atabus* at ata? channel ?
216 1.7 bouyer wd* at atabus? drive ? flags 0x0000
217 1.1 scw
218 1.7 bouyer atapibus* at atabus?
219 1.1 scw
220 1.1 scw cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
221 1.1 scw sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
222 1.1 scw uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
223 1.1 scw
224 1.1 scw pbus* at plb? # off-chip Peripheral BUS
225 1.1 scw
226 1.6 scw ds1743rtc0 at pbus? addr ? # RTC
227 1.1 scw
228 1.1 scw #pckbc0 at pbus?
229 1.1 scw #pckbd* at pckbc?
230 1.1 scw #wskbd* at pckbd? console ?
231 1.1 scw #pms* at pckbc?
232 1.1 scw #wsmouse* at pms? mux 0
233 1.1 scw
234 1.1 scw #vga* at pci? dev ? function ?
235 1.1 scw #wsdisplay* at vga? console ?
236 1.1 scw
237 1.29 cube pseudo-device vnd # disk-like interface to files
238 1.63 christos pseudo-device ccd # concatenated/striped disk devices
239 1.63 christos #pseudo-device cgd # cryptographic disk devices
240 1.64 christos pseudo-device raid # RAIDframe disk driver
241 1.1 scw options RAID_AUTOCONFIG # auto-configuration of RAID components
242 1.47 pooka #pseudo-device fss # file system snapshot device
243 1.1 scw pseudo-device loop # network loopback
244 1.28 rpaulo pseudo-device bpfilter # packet filter
245 1.74 maxv pseudo-device npf # NPF packet filter
246 1.29 cube pseudo-device ppp # Point-to-Point Protocol
247 1.29 cube pseudo-device sl # Serial Line IP
248 1.29 cube pseudo-device tun # network tunneling over tty
249 1.29 cube #pseudo-device gre # generic L3 over IP tunnel
250 1.29 cube pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
251 1.29 cube #pseudo-device faith # IPv[46] tcp relay translation i/f
252 1.30 pavel pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
253 1.1 scw pseudo-device vlan # IEEE 802.1q encapsulation
254 1.1 scw pseudo-device pty # pseudo-terminals
255 1.1 scw #pseudo-device wsmux # ick
256 1.1 scw pseudo-device clockctl # user control of clock subsystem
257 1.32 simonb pseudo-device ksyms # /dev/ksyms
258 1.1 scw pseudo-device kttcp # kernel ttcp
259 1.42 pooka pseudo-device putter # for puffs and pud
260