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