1 1.1 drochner # $NetBSD: GENERIC,v 1.1 2001/05/14 18:23:06 drochner 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.1 drochner options COMPAT_43 # compatibility with 4.3BSD interfaces 17 1.1 drochner options COMPAT_44 # compatibility with 4.4BSD binaries 18 1.1 drochner options COMPAT_09 # compatibility with NetBSD 0.9 19 1.1 drochner options COMPAT_10 # compatibility with NetBSD 1.0 20 1.1 drochner options COMPAT_11 # compatibility with NetBSD 1.1 21 1.1 drochner options COMPAT_12 # compatibility with NetBSD 1.2 22 1.1 drochner options COMPAT_13 # compatibility with NetBSD 1.3 23 1.1 drochner options COMPAT_14 # compatibility with NetBSD 1.3 24 1.1 drochner #options SYSVSHM # System V-style shared memory 25 1.1 drochner #options SYSVSEM # System V-style semaphores 26 1.1 drochner #options SYSVMSG # System V-style message queues 27 1.1 drochner options KTRACE # system call tracing support 28 1.1 drochner #options NKMEMCLUSTERS=1024 # 4K pages in kernel malloc pool 29 1.1 drochner #options LKM # Loadable kernel modules 30 1.1 drochner options COMPAT_SUNOS 31 1.1 drochner 32 1.1 drochner # Filesystems 33 1.1 drochner #file-system FFS # fast filesystem 34 1.1 drochner #file-system CD9660 # CD-ROM ISO-9660 filesystem 35 1.1 drochner file-system NFS # Network filesystem client 36 1.1 drochner #file-system UNION # Union filesystem (req. for FDESC) 37 1.1 drochner #file-system KERNFS # kernel data-structure filesystem 38 1.1 drochner #file-system FDESC # user file descriptor filesystem 39 1.1 drochner #file-system PROCFS # /proc filesystem 40 1.1 drochner #file-system MFS # Memory-based filesystem 41 1.1 drochner 42 1.1 drochner # Filesystem options 43 1.1 drochner options FIFO # POSIX fifo support (in all filesystems) 44 1.1 drochner #options QUOTA # User and group quotas in FFS 45 1.1 drochner #options NFSSERVER # Network filesystem server 46 1.1 drochner 47 1.1 drochner # Networking options 48 1.1 drochner options INET # Internet protocols 49 1.1 drochner #options GATEWAY # IP forwarding + larger mb_map 50 1.1 drochner #options MROUTING # Multicast routing 51 1.1 drochner #options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP 52 1.1 drochner #options PFIL_HOOKS # packet filter hooks 53 1.1 drochner 54 1.1 drochner # This option enables a different copyin/copyout that uses page 55 1.1 drochner # mapping for large copies. 56 1.1 drochner #options MAPPEDCOPY # different copyin/copyout for large copies 57 1.1 drochner 58 1.1 drochner options COMPAT_M68K4K # compat. with NetBSD/m68k4k binaries 59 1.1 drochner 60 1.1 drochner # Debugging options 61 1.1 drochner options DIAGNOSTIC # Extra kernel sanity checks 62 1.1 drochner options DEBUG # Enable misc. kernel debugging code 63 1.1 drochner options DDB # Kernel Dynamic Debugger 64 1.1 drochner #options KGDB 65 1.1 drochner makeoptions DEBUG="-g" # netbsd.gdb with full debugging symbols 66 1.1 drochner 67 1.1 drochner options NFS_BOOT_DHCP 68 1.1 drochner 69 1.1 drochner config netbsd root on ? type ? 70 1.1 drochner 71 1.1 drochner mainbus0 at root # root "bus" 72 1.1 drochner 73 1.1 drochner zsc* at mainbus0 74 1.1 drochner zstty* at zsc? channel ? 75 1.1 drochner 76 1.1 drochner le* at mainbus0 # LANCE ethernet interfaces 77 1.1 drochner 78 1.1 drochner pseudo-device pty 64 # pseudo ptys 79 1.1 drochner #pseudo-device sl 4 # SLIP network interfaces 80 1.1 drochner #pseudo-device ppp 4 # PPP network interfaces 81 1.1 drochner #pseudo-device bpfilter 16 # Berkeley packet filter 82 1.1 drochner #pseudo-device vnd 4 # vnode pseudo-disks 83 1.1 drochner #pseudo-device ccd 4 # concatenated disk devices 84 1.1 drochner pseudo-device loop # loopback network interface 85 1.1 drochner #pseudo-device ipfilter # IP Filter package 86 1.1 drochner pseudo-device rnd 87