GENERIC revision 1.43 1 # $NetBSD: GENERIC,v 1.43 2001/09/12 21:05:37 manu Exp $
2 #
3 # GENERIC -- everything that's currently supported
4 #
5
6 include "arch/ofppc/conf/std.ofppc"
7
8 #ident "GENERIC-$Revision: 1.43 $"
9
10 maxusers 32
11
12 # various hacks due to bugs in Openfirmware implementation
13 options FIRMWORKSBUGS
14
15 # Standard system options
16 #options UCONSOLE # users can use TIOCCONS (for xconsole)
17 #options INSECURE # disable kernel security checks
18 #options NTP # NTP phase/frequency locked loop
19 options KTRACE # system call tracing via ktrace(1)
20
21 options SYSVMSG # System V message queues
22 options SYSVSEM # System V semaphores
23 #options SEMMNI=10 # number of semaphore identifiers
24 #options SEMMNS=60 # number of semaphores in system
25 #options SEMUME=10 # max number of undo entries per process
26 #options SEMMNU=30 # number of undo structures in system
27 options SYSVSHM # System V shared memory
28 #options SHMMAXPGS=1024 # 1024 pages is the default
29
30 options LKM # loadable kernel modules
31
32 # Diagnostic/debugging support options
33 options DIAGNOSTIC # cheap kernel consistency checks
34 #options DEBUG # expensive debugging checks/support
35 options DDB # in-kernel debugger
36 options DDB_HISTORY_SIZE=512 # enable history editing in DDB
37 options TRAP_PANICWAIT
38
39 makeoptions DEBUG="-g" # compile fill symbol table
40
41 # Compatibility option
42 options COMPAT_09 # NetBSD 0.9,
43 options COMPAT_10 # NetBSD 1.0,
44 options COMPAT_11 # NetBSD 1.1,
45 options COMPAT_12 # NetBSD 1.2,
46 options COMPAT_13 # NetBSD 1.3,
47 options COMPAT_14 # NetBSD 1.4,
48 options COMPAT_43 # and 4.3BSD
49 options COMPAT_386BSD_MBRPART # recognize old partition ID
50 #options COMPAT_LINUX # Linux binary compatibility
51 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
52
53 # File systems
54 file-system FFS # UFS
55 file-system EXT2FS # second extended file system (linux)
56 file-system LFS # log-structured file system
57 file-system MFS # memory file system
58 file-system NFS # Network file System client
59 file-system CD9660 # ISO 9660 + Rock Ridge file system
60 file-system MSDOSFS # MS-DOS file system
61 file-system FDESC # /dev/fd
62 file-system KERNFS # /kern
63 file-system NULLFS # loopback file system
64 file-system OVERLAY # overlay file system
65 file-system PORTAL # portal file system (still experimental)
66 file-system PROCFS # /proc
67 file-system UMAPFS # NULLFS + uid and gid remapping
68 file-system UNION # union file system
69 file-system NTFS # Windows NT file system
70
71 # File system options
72 options QUOTA # UFS quotas
73 options FFS_EI # FFS Endian Independent support
74 options SOFTDEP # FFS soft updates support
75 options NFSSERVER # Network File System server
76 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
77 # immutable) behave as system flags.
78
79 options NFS_BOOT_DHCP # Support DHCP NFS root
80
81 # Networking options
82 #options GATEWAY # packet forwarding
83 options INET # IP + ICMP + TCP + UDP
84 options INET6 # IPV6
85 #options IPSEC # IP security
86 #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
87 #options IPSEC_DEBUG # debug for IP security
88 #options MROUTING # IP multicast routing
89 #options NS # XNS
90 #options NSIP # XNS tunneling over IP
91 #options ISO,TPIP # OSI
92 #options EON # OSI tunneling over IP
93 #options CCITT,LLC,HDLC # X.25
94 #options NETATALK # AppleTalk networking protocols
95 options PPP_BSDCOMP # BSD-Compress compression support for PPP
96 options PPP_DEFLATE # Deflate compression support for PPP
97 options PPP_FILTER # Active filter support for PPP (requires BPF)
98 options PFIL_HOOKS # pfil(9) packet filter hooks
99 options IPFILTER_LOG # ipmon(8) log support
100 options NMBCLUSTERS=1024
101 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
102
103 # Kernel root file system and dump configuration
104 config netbsd root on ? type ?
105
106 #
107 # Device configuration
108 #
109
110 mainbus* at root
111
112 # Generic OpenFirmware bus support
113 ofbus* at mainbus?
114 ofbus* at ofbus?
115
116 # CPU
117 cpu* at ofbus?
118
119 # Generic OpenFirmware disk support
120 ofdisk* at ofbus?
121
122 # Generic OpenFirmware network interface support
123 ofnet* at ofbus?
124
125 # Generic OpenFirmware console support
126 ofcons* at ofbus?
127
128 # Generic OpenFirmware real-time clock support
129 ofrtc* at ofbus?
130
131 pseudo-device vnd 4 # disk-like interface to files
132 pseudo-device ccd 4 # concatenated/striped disk devices
133 #pesudo-device raid 4 # RAIDframe disk driver
134 #options RAID_AUTOCONFIG # auto-configuration of RAID components
135 pseudo-device md 1 # memory disk device
136 pseudo-device loop # network loopback
137 pseudo-device bpfilter 8 # packet filter
138 pseudo-device ipfilter # IP Filter (firewall) and NAT
139 pseudo-device ppp 2 # Point-to-Point Protocol
140 pseudo-device sl 2 # Serial Line IP
141 pseudo-device tun 4 # network tunneling over tty
142 #pseudo-device gre 2 # generic L3 over IP tunnel
143 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
144 #pseudo-device faith # IPv[46] tcp relay translation i/f
145 #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
146 pseudo-device vlan # IEEE 802.1q encapsulation
147 #pseudo-device bridge # simple inter-network bridging
148 pseudo-device pty # pseudo-terminals
149 pseudo-device rnd # /dev/random and in-kernel generator
150