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