OPENBLOCKS266 revision 1.64 1 1.64 christos # $NetBSD: OPENBLOCKS266,v 1.64 2013/04/27 21:43:24 christos Exp $
2 1.1 shige #
3 1.1 shige # GENERIC -- everything that's currently supported
4 1.1 shige #
5 1.1 shige
6 1.48 kiyohara include "arch/evbppc/conf/std.obs266"
7 1.1 shige
8 1.1 shige #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9 1.1 shige
10 1.64 christos #ident "OPENBLOCKS266-$Revision: 1.64 $"
11 1.1 shige
12 1.1 shige maxusers 32
13 1.1 shige
14 1.1 shige
15 1.25 shige #
16 1.25 shige # Standard system options
17 1.25 shige #
18 1.25 shige
19 1.25 shige #options INSECURE # disable kernel security levels
20 1.25 shige #options NTP # NTP phase/frequency locked loop
21 1.25 shige #options KTRACE # system call tracing via ktrace(1)
22 1.25 shige
23 1.25 shige options SYSVMSG # System V message queues
24 1.25 shige options SYSVSEM # System V semaphores
25 1.25 shige options SYSVSHM # System V shared memory
26 1.1 shige
27 1.25 shige #options USERCONF # userconf(4) support
28 1.25 shige #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
29 1.9 atatat #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
30 1.25 shige
31 1.25 shige #options UVMHIST
32 1.25 shige #options UVMHIST_PRINT
33 1.1 shige
34 1.25 shige
35 1.25 shige #
36 1.1 shige # Diagnostic/debugging support options
37 1.25 shige #
38 1.25 shige
39 1.25 shige #options DIAGNOSTIC # cheap kernel consistency checks
40 1.25 shige options DEBUG # expensive debugging checks/support
41 1.25 shige #options KMEMSTATS # kernel memory statistics (vmstat -m)
42 1.25 shige options DDB # in-kernel debugger
43 1.1 shige options DDB_HISTORY_SIZE=512 # enable history editing in DDB
44 1.1 shige options TRAP_PANICWAIT
45 1.55 matt options SYMTAB_SPACE=666000 # size for embedded symbol table
46 1.1 shige
47 1.25 shige makeoptions DEBUG="-g" # compile full symbol table
48 1.1 shige
49 1.25 shige
50 1.25 shige #
51 1.1 shige # Compatibility options
52 1.25 shige #
53 1.25 shige
54 1.25 shige #options COMPAT_09 # NetBSD 0.9,
55 1.25 shige #options COMPAT_10 # NetBSD 1.0,
56 1.25 shige #options COMPAT_11 # NetBSD 1.1,
57 1.25 shige #options COMPAT_12 # NetBSD 1.2,
58 1.25 shige options COMPAT_13 # NetBSD 1.3,
59 1.25 shige options COMPAT_14 # NetBSD 1.4,
60 1.36 manu options COMPAT_15 # NetBSD 1.5,
61 1.25 shige options COMPAT_16 # NetBSD 1.6,
62 1.25 shige options COMPAT_20 # NetBSD 2.0,
63 1.39 tsutsui options COMPAT_30 # NetBSD 3.0,
64 1.45 kiyohara options COMPAT_40 # NetBSD 4.0,
65 1.45 kiyohara options COMPAT_50 # NetBSD 5.0 compatibility.
66 1.60 apb options COMPAT_60 # NetBSD 6.0 compatibility.
67 1.25 shige options COMPAT_43 # and 4.3BSD
68 1.25 shige #options COMPAT_386BSD_MBRPART # recognize old partition ID
69 1.25 shige options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
70 1.25 shige
71 1.1 shige
72 1.25 shige #
73 1.1 shige # File systems
74 1.25 shige #
75 1.25 shige
76 1.1 shige file-system FFS # UFS
77 1.1 shige file-system EXT2FS # second extended file system (linux)
78 1.1 shige file-system LFS # log-structured file system
79 1.1 shige file-system MFS # memory file system
80 1.1 shige file-system NFS # Network File System client
81 1.1 shige file-system CD9660 # ISO 9660 + Rock Ridge file system
82 1.1 shige file-system MSDOSFS # MS-DOS file system
83 1.1 shige file-system FDESC # /dev/fd
84 1.1 shige file-system KERNFS # /kern
85 1.1 shige file-system NULLFS # loopback file system
86 1.1 shige file-system OVERLAY # overlay file system
87 1.44 pooka file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
88 1.1 shige file-system PROCFS # /proc
89 1.1 shige file-system UMAPFS # NULLFS + uid and gid remapping
90 1.1 shige file-system UNION # union file system
91 1.24 christos file-system PTYFS # /dev/pts/N support
92 1.40 kiyohara file-system TMPFS # Efficient memory file-system
93 1.25 shige #file-system NTFS # Windows NT file system (experimental)
94 1.25 shige
95 1.1 shige
96 1.25 shige #
97 1.1 shige # File system options
98 1.25 shige #
99 1.1 shige
100 1.52 bouyer options QUOTA # legacy UFS quotas
101 1.52 bouyer options QUOTA2 # new, in-filesystem UFS quotas
102 1.56 wiz options FFS_EI # FFS Endian Independent support
103 1.58 dholland options WAPBL # File system journaling support
104 1.25 shige options NFSSERVER # Network File System server
105 1.27 tsutsui #options FFS_NO_SNAPSHOT # No FFS snapshot support
106 1.25 shige options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
107 1.25 shige # immutable) behave as system flags.
108 1.25 shige options NFS_BOOT_DHCP # Support DHCP NFS root
109 1.1 shige
110 1.25 shige
111 1.25 shige #
112 1.1 shige # Networking options
113 1.25 shige #
114 1.25 shige
115 1.1 shige options GATEWAY # packet forwarding
116 1.1 shige options INET # IP + ICMP + TCP + UDP
117 1.47 kiyohara options INET6 # IPv6
118 1.1 shige #options IPSEC # IP security
119 1.19 tron #options IPSEC_NAT_T # IPsec NAT traversal (NAT-T)
120 1.1 shige #options IPSEC_DEBUG # debug for IP security
121 1.1 shige #options MROUTING # IP multicast routing
122 1.10 manu #options PIM # Protocol Independent Multicast
123 1.1 shige #options DIRECTED_BROADCAST # allow broadcasts through routers
124 1.1 shige #options NETATALK # AppleTalk networking protocols
125 1.1 shige options PPP_BSDCOMP # BSD-Compress compression support for PPP
126 1.1 shige options PPP_DEFLATE # Deflate compression support for PPP
127 1.1 shige options PPP_FILTER # Active filter support for PPP (requires bpf)
128 1.1 shige options PFIL_HOOKS # pfil(9) packet filter hooks
129 1.1 shige options IPFILTER_LOG # ipmon(8) log support
130 1.34 christos options IPFILTER_LOOKUP # ippool(8) support
131 1.25 shige #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
132 1.1 shige #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
133 1.1 shige
134 1.1 shige
135 1.25 shige #
136 1.25 shige # Kernel root file system and dump configuration.
137 1.25 shige #
138 1.1 shige
139 1.1 shige config netbsd root on ? type ?
140 1.1 shige
141 1.25 shige
142 1.1 shige #
143 1.1 shige # Device configuration
144 1.1 shige #
145 1.1 shige
146 1.1 shige plb0 at root # Processor Local Bus
147 1.25 shige cpu0 at plb? # CPU
148 1.46 kiyohara ecc0 at plb? irq 17 # On-chip ECC controller
149 1.25 shige pchb0 at plb? # PCI-Host bridges
150 1.1 shige
151 1.25 shige # On-chip Peripheral Bus support
152 1.1 shige opb* at plb? # On-chip Peripheral Bus
153 1.1 shige wdog* at opb? # Watchdog timer
154 1.1 shige com* at opb? addr ? irq ? # UARTs
155 1.1 shige emac0 at opb? addr ? irq ? # Ethernet Media Access Controller
156 1.1 shige options EMAC_EVENT_COUNTERS
157 1.3 shige gpiic0 at opb? addr ? irq ? # On-chip IIC controller
158 1.3 shige iic0 at gpiic? # I2C bus
159 1.3 shige xrtc0 at iic? addr 0x6f # RTC
160 1.30 shige opbgpio0 at opb? addr ? irq ? # On-chip GPIO controller
161 1.30 shige gpio* at opbgpio? # GPIO framework
162 1.13 shige
163 1.25 shige # PCI bus support
164 1.1 shige pci* at pchb?
165 1.25 shige options PCIVERBOSE # verbose PCI device autoconfig messages
166 1.25 shige #options PCI_CONFIG_DUMP # verbosely dump PCI config space
167 1.25 shige options PCI_NETBSD_CONFIGURE # Do not rely on BIOS/whatever
168 1.25 shige # to configure PCI devices
169 1.25 shige #options PCI_CONFIGURE_VERBOSE # Show PCI config information
170 1.1 shige ppb* at pci? dev ? function ? # PCI-PCI bridges
171 1.5 bouyer hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
172 1.1 shige tlp* at pci? dev ? function ? # DECchip 21x4x and clones
173 1.1 shige
174 1.25 shige # ATA (IDE) bus support
175 1.25 shige atabus* at ata?
176 1.4 bouyer wd* at atabus? drive ?
177 1.1 shige
178 1.25 shige # MII/PHY support
179 1.32 kiyohara dmphy* at mii? phy ? # Davicom DM9101/9102 PHYs
180 1.25 shige lxtphy* at mii? phy ? # Level One LXT-970 PHYs
181 1.51 matt ukphy* at mii? phy ? # unknown PHYs
182 1.25 shige options MIIVERBOSE # verbose PHY autoconfig messages
183 1.1 shige
184 1.1 shige
185 1.25 shige #
186 1.25 shige # Pseudo devices
187 1.25 shige #
188 1.1 shige
189 1.25 shige # disk/mass storage pseudo-devices
190 1.63 christos #pseudo-device ccd # concatenated/striped disk devices
191 1.63 christos #pseudo-device cgd # cryptographic disk devices
192 1.64 christos #pseudo-device raid # RAIDframe disk driver
193 1.1 shige #options RAID_AUTOCONFIG # auto-configuration of RAID components
194 1.49 pooka #pseudo-device fss # file system snapshot device
195 1.50 hannken #pseudo-device md # memory disk device
196 1.29 cube #pseudo-device vnd # disk-like interface to files
197 1.25 shige
198 1.25 shige # network pseudo-devices
199 1.1 shige pseudo-device loop # network loopback
200 1.25 shige pseudo-device bpfilter # packet filter
201 1.1 shige pseudo-device ipfilter # IP filter (firewall) and NAT
202 1.25 shige pseudo-device ppp # Point-to-Point Protocol
203 1.25 shige pseudo-device pppoe # PPP over Ethernet (RFC 2516)
204 1.40 kiyohara pseudo-device sl # Serial Line IP
205 1.40 kiyohara pseudo-device strip # Starmode Radio IP (Metricom)
206 1.40 kiyohara pseudo-device irframetty # IrDA frame line discipline
207 1.40 kiyohara pseudo-device tap # virtual ethernet
208 1.40 kiyohara pseudo-device tun # network tunneling over tty
209 1.40 kiyohara pseudo-device gre # generic L3 over IP tunnel
210 1.47 kiyohara pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933)
211 1.47 kiyohara #pseudo-device faith # IPv[46] TCP relay translation i/f
212 1.31 pavel pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
213 1.1 shige pseudo-device vlan # IEEE 802.1q encapsulation
214 1.25 shige pseudo-device bridge # simple inter-network bridging
215 1.25 shige #options BRIDGE_IPF # bridge uses IPv[46] pfil hooks too
216 1.40 kiyohara pseudo-device agr # IEEE 802.3ad link aggregation
217 1.25 shige #pseudo-device pf # PF packet filter
218 1.25 shige #pseudo-device pflog # PF log if
219 1.25 shige
220 1.25 shige # miscellaneous pseudo-devices
221 1.1 shige pseudo-device pty # pseudo-terminals
222 1.1 shige pseudo-device clockctl # user control of clock subsystem
223 1.33 simonb pseudo-device ksyms # /dev/ksyms
224 1.44 pooka pseudo-device putter # for puffs and pud
225