GENERIC revision 1.3 1 # $NetBSD: GENERIC,v 1.3 2001/07/08 16:32:16 abs Exp $
2 #
3 # Generic kernel - one size fits all.
4 #
5
6 # Include attributes common to all cesfics
7 include "arch/cesfic/conf/std.cesfic"
8
9 # Need to set locally
10 maxusers 32
11
12 #options LEDEBUG
13
14 options FPSP
15 # Standard system options
16 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
17 options COMPAT_43 # compatibility with 4.3BSD interfaces
18 options COMPAT_44 # compatibility with 4.4BSD binaries
19 options COMPAT_09 # compatibility with NetBSD 0.9
20 options COMPAT_10 # compatibility with NetBSD 1.0
21 options COMPAT_11 # compatibility with NetBSD 1.1
22 options COMPAT_12 # compatibility with NetBSD 1.2
23 options COMPAT_13 # compatibility with NetBSD 1.3
24 options COMPAT_14 # compatibility with NetBSD 1.3
25 #options SYSVSHM # System V-style shared memory
26 #options SYSVSEM # System V-style semaphores
27 #options SEMMNI=10 # number of semaphore identifiers
28 #options SEMMNS=60 # number of semaphores in system
29 #options SEMUME=10 # max number of undo entries per process
30 #options SEMMNU=30 # number of undo structures in system
31 #options SYSVMSG # System V-style message queues
32 options KTRACE # system call tracing support
33 #options NKMEMCLUSTERS=1024 # 4K pages in kernel malloc pool
34 #options LKM # Loadable kernel modules
35 options COMPAT_SUNOS
36
37 # Filesystems
38 #file-system FFS # fast filesystem
39 #file-system CD9660 # CD-ROM ISO-9660 filesystem
40 file-system NFS # Network filesystem client
41 #file-system UNION # Union filesystem (req. for FDESC)
42 #file-system KERNFS # kernel data-structure filesystem
43 #file-system FDESC # user file descriptor filesystem
44 #file-system PROCFS # /proc filesystem
45 #file-system MFS # Memory-based filesystem
46
47 # Filesystem options
48 options FIFO # POSIX fifo support (in all filesystems)
49 #options QUOTA # User and group quotas in FFS
50 #options NFSSERVER # Network filesystem server
51
52 # Networking options
53 options INET # Internet protocols
54 #options GATEWAY # IP forwarding + larger mb_map
55 #options MROUTING # Multicast routing
56 #options PFIL_HOOKS # packet filter hooks
57 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
58
59 # This option enables a different copyin/copyout that uses page
60 # mapping for large copies.
61 #options MAPPEDCOPY # different copyin/copyout for large copies
62
63 options COMPAT_M68K4K # compat. with NetBSD/m68k4k binaries
64
65 # Debugging options
66 options DIAGNOSTIC # Extra kernel sanity checks
67 options DEBUG # Enable misc. kernel debugging code
68 options DDB # Kernel Dynamic Debugger
69 #options KGDB
70 makeoptions DEBUG="-g" # netbsd.gdb with full debugging symbols
71
72 options NFS_BOOT_DHCP
73
74 config netbsd root on ? type ?
75
76 mainbus0 at root # root "bus"
77
78 zsc* at mainbus0
79 zstty* at zsc? channel ?
80
81 le* at mainbus0 # LANCE ethernet interfaces
82
83 pseudo-device pty 64 # pseudo ptys
84 #pseudo-device sl 4 # SLIP network interfaces
85 #pseudo-device ppp 4 # PPP network interfaces
86 #pseudo-device bpfilter 16 # Berkeley packet filter
87 #pseudo-device vnd 4 # vnode pseudo-disks
88 #pseudo-device ccd 4 # concatenated disk devices
89 pseudo-device loop # loopback network interface
90 #pseudo-device ipfilter # IP Filter package
91 pseudo-device rnd
92