GENERIC revision 1.14 1 # $NetBSD: GENERIC,v 1.14 2002/10/14 18:39:38 elric Exp $
2
3 #include "arch/sbmips/conf/std.sbmips.eb" # big-endian mode
4 include "arch/sbmips/conf/std.sbmips.el" # little-endian mode
5
6 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
7
8 #ident "GENERIC-$Revision: 1.14 $"
9
10 # The following three options are required for BCM1250 pass 1 silicon
11 options SB1250_PASS1
12 options NOFPU
13 options SOFTFLOAT
14
15 maxusers 32
16
17 # Standard system options
18 options KTRACE # system call tracing support
19 options SYSTRACE # system call vetting via systrace(1)
20 options SYSVMSG # System V message queues
21 options SYSVSEM # System V semaphores
22 options SYSVSHM # System V shared memory
23 #options SHMMAXPGS=1024 # 1024 pages is the default
24 options LKM # loadable kernel modules
25 #options NTP # network time protocol
26 #options UCONSOLE # users can redirect console (unsafe)
27
28 # Debugging options
29 options DIAGNOSTIC # extra kernel sanity checking
30 #options DEBUG # extra kernel debugging support
31 #options KMEMSTATS # kernel memory statistics (vmstat -m)
32 options USERCONF # userconf(4) support
33 options DDB # kernel dynamic debugger
34 options DDB_HISTORY_SIZE=100 # enable history editing in DDB
35 #makeoptions DEBUG="-g" # compile full symbol table
36 options SYMTAB_SPACE=200000 # size for embedded symbol table
37
38 # Compatibility options
39 options COMPAT_43 # compatibility with 4.3BSD binaries
40 #options COMPAT_10 # NetBSD 0.9 binary compatibility
41 #options COMPAT_10 # NetBSD 1.0 binary compatibility
42 #options COMPAT_11 # NetBSD 1.1 binary compatibility
43 #options COMPAT_12 # NetBSD 1.2 binary compatibility
44 #options COMPAT_13 # NetBSD 1.3 binary compatibility
45 #options COMPAT_14 # NetBSD 1.4 binary compatibility
46 #options EXEC_ECOFF # exec ECOFF binaries
47 #options COMPAT_ULTRIX # binary compatibility with Ultrix
48
49 # File systems
50 file-system FFS # Berkeley Fast Filesystem
51 file-system NFS # Sun NFS-compatible filesystem client
52 file-system KERNFS # kernel data-structure filesystem
53 #file-system NULLFS # NULL layered filesystem
54 file-system OVERLAY # overlay file system
55 file-system MFS # memory-based filesystem
56 file-system FDESC # user file descriptor filesystem
57 #file-system UMAPFS # uid/gid remapping filesystem
58 file-system LFS # Log-based filesystem (still experimental)
59 #file-system PORTAL # portal filesystem (still experimental)
60 file-system PROCFS # /proc
61 #file-system CD9660 # ISO 9660 + Rock Ridge file system
62 #file-system UNION # union file system
63 #file-system MSDOSFS # MS-DOS FAT filesystem(s).
64 #file-system CODA # Coda File System; also needs vcoda (below)
65
66 # File system options
67 options NFSSERVER # Sun NFS-compatible filesystem server
68 options QUOTA # FFS quotas
69 #options FFS_EI # FFS Endian Independant support
70 #options SOFTDEP # FFS soft updates support.
71 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
72 # immutable) behave as system flags.
73
74 # Networking options
75 #options GATEWAY # IP packet forwarding
76 options INET # Internet protocols
77 options INET6 # IPV6
78 #options IPSEC # IP security
79 #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
80 #options IPSEC_DEBUG # debug for IP security
81 #options MROUTING # packet forwarding of multicast packets
82 #options NS # Xerox NS networking
83 #options NSIP # Xerox NS tunneling over IP
84 #options ISO,TPIP # OSI networking
85 #options EON # OSI tunneling over IP
86 #options CCITT,LLC,HDLC # X.25
87 #options NETATALK # AppleTalk (over Ethernet) protocol
88 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
89 #options PPP_DEFLATE # Deflate compression support for PPP
90 options PPP_FILTER # Active filter support for PPP (requires bpf)
91 options PFIL_HOOKS # pfil(9) packet filter hooks
92 options IPFILTER_LOG # ipmon(8) log support
93 #options IPFILTER_DEFAULT_BLOCK # block all packets by default
94
95 # Compatibility with 4.2BSD implementation of TCP/IP. Not recommended.
96 #options TCP_COMPAT_42
97
98 # These options enable verbose messages for several subsystems.
99 # Warning, these may compile large string tables into the kernel!
100 options PCIVERBOSE # verbose PCI device autoconfig messages
101 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
102 #options SCSIVERBOSE # human readable SCSI error messages
103 options MIIVERBOSE # verbose PHY autoconfig messages
104
105 options NFS_BOOT_DHCP
106
107 #config netbsd root on ? type ?
108 config netbsd root on sbmac0 type nfs
109
110 zbbus* at root
111
112 cpu* at zbbus? busid ?
113 sbscd* at zbbus? busid ?
114 sbobio* at zbbus? busid ?
115
116 #sbicu* at sbscd? offset ?
117 sbwdog* at sbscd? offset ? intr ?
118 sbtimer0 at sbscd? offset ? intr ? flags 0x01 # clock
119 #sbtimer1 at sbscd? offset ? intr ? flags 0x02 # statclock
120 sbtimer* at sbscd? offset ? intr ?
121
122 sbmac* at sbobio? offset ?
123 sbscn* at sbobio? offset ?
124 #sbgbus* at sbobio? offset ?
125 smbus* at sbobio? offset ?
126
127 rtc* at smbus? chan ? dev ?
128
129 # MII/PHY support
130 brgphy* at mii? phy ?
131
132 # Pseudo-devices
133
134 # Disk/mass storage pseudo-devices
135 pseudo-device ccd 4 # concatenated disk devices
136 #pseudo-device cgd 4 # cryptographic disk devices
137 #pseudo-device raid 4 # RAIDframe disk driver
138 #options RAID_AUTOCONFIG # auto-configuration of RAID
139 pseudo-device md 1 # memory disk device (ramdisk)
140 pseudo-device vnd 4 # disk-like interface to files
141
142 # Network pseudo-devices
143 pseudo-device bpfilter 8 # Berkeley packet filter
144 pseudo-device ipfilter # IP filter (firewall) and NAT
145 pseudo-device loop # network loopback
146 #pseudo-device ppp 2 # Point-to-Point Protocol
147 #pseudo-device pppoe # PPP over Ethernet (RFC 2516)
148 #pseudo-device sl 2 # Serial Line IP
149 #pseudo-device strip 2 # Starmode Radio IP (Metricom)
150 #pseudo-device irframetty # IrDA frame line discipline
151 #pseudo-device tun 2 # network tunneling over tty
152 #pseudo-device gre 2 # generic L3 over IP tunnel
153 #pseudo-device ipip 2 # RFC 2003 IP Encapsulation
154 #pseudo-device gif 4 # RFC1933 tunnel
155 #pseudo-device faith 1 # IPv[46] tcp relay translation
156 #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
157 pseudo-device vlan # IEEE 802.1q encapsulation
158 pseudo-device bridge # simple inter-network bridging
159
160 # Miscellaneous pseudo-devices
161 pseudo-device pty # pseudo-terminals
162 #pseudo-device tb 1 # tablet line discipline
163 #pseudo-device sequencer 1 # MIDI sequencer
164 pseudo-device rnd # /dev/random & kernel generator
165 pseudo-device clockctl # user control of clock subsystem
166
167 # A pseudo device needed for Coda # also needs CODA (above)
168 #pseudo-device vcoda 4 # coda minicache <-> venus comm.
169