1 1.20 thorpej # $NetBSD: GENERIC,v 1.20 1997/01/30 09:58:59 thorpej Exp $ 2 1.1 mycroft # 3 1.3 thorpej # Generic kernel - one size fits all. 4 1.1 mycroft # 5 1.1 mycroft 6 1.20 thorpej # Include attributes common to all hp300s 7 1.20 thorpej include "arch/hp300/conf/std.hp300" 8 1.20 thorpej 9 1.20 thorpej # Support for various CPU types 10 1.20 thorpej options HP320 11 1.20 thorpej options HP330 # includes 318, 319 12 1.20 thorpej options HP340 13 1.20 thorpej options HP350 14 1.20 thorpej options HP360 15 1.20 thorpej options HP370 16 1.20 thorpej options HP375 # includes 345, 400t, 400s 17 1.20 thorpej options HP380 # includes 425t, 425s, 433s 18 1.1 mycroft 19 1.1 mycroft # Need to set locally 20 1.8 thorpej maxusers 32 21 1.1 mycroft 22 1.1 mycroft # Standard system options 23 1.20 thorpej options COMPAT_43 # compatibility with 4.3BSD interfaces 24 1.20 thorpej options COMPAT_44 # compatibility with 4.4BSD binaries 25 1.20 thorpej options COMPAT_09 # compatibility with NetBSD 0.9 26 1.20 thorpej options COMPAT_10 # compatibility with NetBSD 1.0 27 1.20 thorpej options COMPAT_11 # compatibility with NetBSD 1.1 28 1.20 thorpej options COMPAT_12 # compatibility with NetBSD 1.2 29 1.20 thorpej options SYSVSHM # System V-style shared memory 30 1.20 thorpej options SYSVSEM # System V-style semaphores 31 1.20 thorpej options SYSVMSG # System V-style message queues 32 1.20 thorpej options KTRACE # system call tracing support 33 1.20 thorpej options "NKMEMCLUSTERS=1024" # # 4K pages in kernel malloc pool 34 1.1 mycroft 35 1.1 mycroft # Filesystem options 36 1.20 thorpej options FIFO # POSIX fifo support (in all filesystems) 37 1.20 thorpej options FFS,QUOTA # fast filesystem with user and group quotas 38 1.20 thorpej options CD9660 # CD-ROM ISO-9660 filesystem 39 1.20 thorpej options NFSSERVER # Network filesystem server 40 1.20 thorpej options NFSCLIENT # Network filesystem client 41 1.20 thorpej options UNION # Union filesystem (req. for FDESC) 42 1.20 thorpej options KERNFS # kernel data-structure filesystem 43 1.20 thorpej options FDESC # user file descriptor filesystem 44 1.20 thorpej options PROCFS # /proc filesystem 45 1.20 thorpej options MFS # Memory-based filesystem 46 1.1 mycroft 47 1.1 mycroft # Networking options 48 1.1 mycroft options INET # Internet protocols 49 1.3 thorpej options GATEWAY # IP forwarding + larger mb_map 50 1.3 thorpej options MROUTING # Multicast routing 51 1.20 thorpej options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP 52 1.1 mycroft 53 1.1 mycroft # Options for HP hardware 54 1.3 thorpej options FPSP # floating point interface for 68040 55 1.3 thorpej options USELEDS # make the lights twinkle 56 1.3 thorpej options COMPAT_NOLABEL # defaults for unlabeled disks 57 1.3 thorpej #options PANICBUTTON # two fast <reset>s on HIL dump kernel 58 1.9 thorpej #options CONSCODE="9" # force console at this select code 59 1.11 thorpej options UK_KEYBOARD # include United Kingdom HIL keymap 60 1.11 thorpej options SE_KEYBOARD # include Swedish HIL keymap 61 1.3 thorpej 62 1.20 thorpej # This option enables a different copyin/copyout that uses page 63 1.20 thorpej # mapping for large copies. 64 1.20 thorpej #options MAPPEDCOPY # different copyin/copyout for large copies 65 1.20 thorpej 66 1.7 thorpej # 67 1.7 thorpej # HP-UX binary compatibility. 68 1.7 thorpej # NOTE: THIS IS STILL VERY EXPERIMENTAL. YOUR MILEAGE MAY VARY. 69 1.7 thorpej # 70 1.20 thorpej options COMPAT_HPUX # HP-UX binary compatibility 71 1.12 thorpej 72 1.20 thorpej options COMPAT_M68K4K # compat. with NetBSD/m68k4k binaries 73 1.1 mycroft 74 1.3 thorpej # Debugging options 75 1.17 thorpej options DIAGNOSTIC # Extra kernel sanity checks 76 1.17 thorpej #options DEBUG # Enable misc. kernel debugging code 77 1.3 thorpej options DDB # Kernel Dynamic Debugger 78 1.1 mycroft 79 1.1 mycroft config netbsd swap generic 80 1.1 mycroft 81 1.20 thorpej mainbus0 at root # root "bus" 82 1.20 thorpej 83 1.20 thorpej intio0 at mainbus0 # internal i/o space 84 1.20 thorpej dio0 at mainbus0 # DIO/DIO-II bus 85 1.20 thorpej 86 1.20 thorpej # Davinci framebuffer 87 1.20 thorpej dvbox* at intio? 88 1.20 thorpej dvbox* at dio? scode ? 89 1.20 thorpej 90 1.20 thorpej # Gatorbox framebuffer 91 1.20 thorpej gbox* at intio? 92 1.20 thorpej gbox* at dio? scode ? 93 1.20 thorpej 94 1.20 thorpej # Hyperion framebuffer 95 1.20 thorpej hyper* at dio? scode ? 96 1.20 thorpej 97 1.20 thorpej # Renaissance framebuffer 98 1.20 thorpej rbox* at intio? 99 1.20 thorpej rbox* at dio? scode ? 100 1.20 thorpej 101 1.20 thorpej # Topcat/catseye framebuffers 102 1.20 thorpej topcat* at intio? 103 1.20 thorpej topcat* at dio? scode ? 104 1.20 thorpej 105 1.20 thorpej # Framebuffer abstraction 106 1.20 thorpej grf* at dvbox? 107 1.20 thorpej grf* at gbox? 108 1.20 thorpej grf* at hyper? 109 1.20 thorpej grf* at rbox? 110 1.20 thorpej grf* at topcat? 111 1.20 thorpej 112 1.20 thorpej # Internal Terminal Emulator 113 1.20 thorpej ite* at grf? 114 1.20 thorpej 115 1.20 thorpej dca0 at dio? scode 9 flags 1 # DCA serial interfaces 116 1.20 thorpej dca* at dio? scode ? 117 1.20 thorpej 118 1.20 thorpej dcm* at dio? scode ? flags 0xe # DCM 4- or 8-port serial interfaces 119 1.20 thorpej 120 1.20 thorpej le* at dio? scode ? # LANCE ethernet interfaces 121 1.20 thorpej 122 1.20 thorpej nhpib0 at dio? scode 7 # slow internal HP-IB 123 1.20 thorpej nhpib* at dio? scode ? 124 1.20 thorpej 125 1.20 thorpej fhpib* at dio? scode ? # `fast' HP-IB 126 1.20 thorpej 127 1.20 thorpej hpibbus0 at nhpib0 128 1.20 thorpej hpibbus* at nhpib? 129 1.20 thorpej hpibbus* at fhpib? 130 1.3 thorpej 131 1.20 thorpej rd* at hpibbus? slave ? punit ? # HP-IB disks 132 1.20 thorpej ct* at hpibbus? slave ? punit ? # HP-IB cartridge tapes 133 1.20 thorpej mt* at hpibbus? slave ? punit ? # HP-IB 9-track tape 134 1.20 thorpej ppi0 at hpibbus0 slave 5 punit 0 # HP-IB plotter 135 1.1 mycroft 136 1.20 thorpej oscsi* at dio? scode ? # Old HP SCSI 137 1.1 mycroft 138 1.20 thorpej sd* at oscsi? target ? lun ? # SCSI disks 139 1.20 thorpej st* at oscsi? target ? lun ? # SCSI tapes 140 1.20 thorpej ac* at oscsi? target ? lun ? # SCSI changers 141 1.1 mycroft 142 1.1 mycroft pseudo-device pty 64 # pseudo ptys 143 1.3 thorpej pseudo-device sl 4 # SLIP network interfaces 144 1.3 thorpej pseudo-device ppp 4 # PPP network interfaces 145 1.3 thorpej pseudo-device bpfilter 16 # Berkeley packet filter 146 1.4 thorpej pseudo-device vnd 4 # vnode pseudo-disks 147 1.4 thorpej pseudo-device ccd 4 # concatenated disk devices 148 1.3 thorpej pseudo-device loop # loopback network interface 149 1.18 mrg pseudo-device ipfilter # IP Filter package 150