INSTALL revision 1.1
11.1Sgmcgarry# $NetBSD: INSTALL,v 1.1 2002/02/10 01:07:55 gmcgarry Exp $ 21.1Sgmcgarry# 31.1Sgmcgarry# INSTALL machine description file 41.1Sgmcgarry# 51.1Sgmcgarry# This machine description file is used to generate the NetBSD kernel 61.1Sgmcgarry# for the installation media. 71.1Sgmcgarry 81.1Sgmcgarryinclude "arch/hp300/conf/std.hp300" 91.1Sgmcgarry 101.1Sgmcgarry# optimise for smaller kernels 111.1Sgmcgarrymakeoptions COPTS="-Os" 121.1Sgmcgarryoptions NVNODE=50 131.1Sgmcgarryoptions NBUF=16 141.1Sgmcgarryoptions BUFPAGES=16 151.1Sgmcgarryoptions NMBCLUSTERS=64 161.1Sgmcgarryoptions NFS_V2_ONLY 171.1Sgmcgarryoptions NFS_DEFAULT_NIOTHREADS=1 181.1Sgmcgarryoptions VNODE_OP_NOINLINE 191.1Sgmcgarryoptions PIPE_SOCKETPAIR # smaller, but slower pipe(2) 201.1Sgmcgarry 211.1Sgmcgarry# Support for various CPU types 221.1Sgmcgarryoptions HP320 231.1Sgmcgarryoptions HP330 # includes 318, 319 241.1Sgmcgarryoptions HP340 251.1Sgmcgarryoptions HP345 261.1Sgmcgarryoptions HP350 271.1Sgmcgarryoptions HP360 281.1Sgmcgarryoptions HP370 291.1Sgmcgarryoptions HP375 301.1Sgmcgarryoptions HP380 311.1Sgmcgarryoptions HP385 321.1Sgmcgarryoptions HP400 331.1Sgmcgarryoptions HP425 341.1Sgmcgarryoptions HP433 351.1Sgmcgarry 361.1Sgmcgarry# Need to set locally 371.1Sgmcgarrymaxusers 32 381.1Sgmcgarry 391.1Sgmcgarry# Standard system options 401.1Sgmcgarry#options COMPAT_43 # compatibility with 4.3BSD interfaces 411.1Sgmcgarry#options COMPAT_44 # compatibility with 4.4BSD binaries 421.1Sgmcgarry#options COMPAT_09 # compatibility with NetBSD 0.9 431.1Sgmcgarry#options COMPAT_10 # compatibility with NetBSD 1.0 441.1Sgmcgarry#options COMPAT_11 # compatibility with NetBSD 1.1 451.1Sgmcgarry#options COMPAT_12 # compatibility with NetBSD 1.2 461.1Sgmcgarry#options COMPAT_13 # compatibility with NetBSD 1.3 471.1Sgmcgarry#options COMPAT_14 # compatibility with NetBSD 1.4 481.1Sgmcgarry#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 491.1Sgmcgarry#options SYSVSHM # System V-style shared memory 501.1Sgmcgarry#options SYSVSEM # System V-style semaphores 511.1Sgmcgarry#options SEMMNI=10 # number of semaphore identifiers 521.1Sgmcgarry#options SEMMNS=60 # number of semaphores in system 531.1Sgmcgarry#options SEMUME=10 # max number of undo entries per process 541.1Sgmcgarry#options SEMMNU=30 # number of undo structures in system 551.1Sgmcgarry#options SYSVMSG # System V-style message queues 561.1Sgmcgarry#options KTRACE # system call tracing support 571.1Sgmcgarry#options LKM # Loadable kernel modules 581.1Sgmcgarry#options SCSIVERBOSE # Verbose SCSI errors 591.1Sgmcgarry#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 601.1Sgmcgarry 611.1Sgmcgarry# Filesystems 621.1Sgmcgarryfile-system FFS # fast filesystem 631.1Sgmcgarryfile-system CD9660 # CD-ROM ISO-9660 filesystem 641.1Sgmcgarryfile-system NFS # Network filesystem client 651.1Sgmcgarry#file-system UNION # Union filesystem (req. for FDESC) 661.1Sgmcgarryfile-system KERNFS # kernel data-structure filesystem 671.1Sgmcgarry#file-system FDESC # user file descriptor filesystem 681.1Sgmcgarry#file-system PROCFS # /proc filesystem 691.1Sgmcgarry#file-system MFS # Memory-based filesystem 701.1Sgmcgarry 711.1Sgmcgarry# Filesystem options 721.1Sgmcgarry#options QUOTA # User and group quotas in FFS 731.1Sgmcgarry#options FFS_EI # FFS Endian Independant support 741.1Sgmcgarry#options SOFTDEP # FFS soft updates support. 751.1Sgmcgarry#options NFSSERVER # Network filesystem server 761.1Sgmcgarry#options NFS_BOOT_BOOTP # use bootp for NFS boot 771.1Sgmcgarry 781.1Sgmcgarry# Networking options 791.1Sgmcgarryoptions INET # Internet protocols 801.1Sgmcgarry#options INET6 # IPV6 811.1Sgmcgarry#options IPSEC # IP security 821.1Sgmcgarry#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 831.1Sgmcgarry#options IPSEC_DEBUG # debug for IP security 841.1Sgmcgarry#options GATEWAY # IP forwarding + larger mb_map 851.1Sgmcgarry#options MROUTING # Multicast routing 861.1Sgmcgarry#options PFIL_HOOKS # packet filter hooks 871.1Sgmcgarry#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 881.1Sgmcgarry 891.1Sgmcgarry# Options for HP hardware 901.1Sgmcgarry#options FPSP # floating point interface for 68040 911.1Sgmcgarry#options USELEDS # make the lights twinkle 921.1Sgmcgarryoptions COMPAT_NOLABEL # defaults for unlabeled disks 931.1Sgmcgarry#options PANICBUTTON # two fast <reset>s on HIL dump kernel 941.1Sgmcgarry#options CONSCODE=9 # force console at this select code 951.1Sgmcgarry#options UK_KEYBOARD # include United Kingdom HIL keymap 961.1Sgmcgarry#options SE_KEYBOARD # include Swedish HIL keymap 971.1Sgmcgarry 981.1Sgmcgarry# This option enables a different copyin/copyout that uses page 991.1Sgmcgarry# mapping for large copies. 1001.1Sgmcgarry#options MAPPEDCOPY # different copyin/copyout for large copies 1011.1Sgmcgarry 1021.1Sgmcgarry# Debugging options 1031.1Sgmcgarry#options DIAGNOSTIC # Extra kernel sanity checks 1041.1Sgmcgarry#options DEBUG # Enable misc. kernel debugging code 1051.1Sgmcgarry#options DDB # Kernel Dynamic Debugger 1061.1Sgmcgarry#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 1071.1Sgmcgarry#makeoptions DEBUG="-g" # netbsd.gdb with full debugging symbols 1081.1Sgmcgarry 1091.1Sgmcgarry# Verbose descriptions of unconfigured DIO devices 1101.1Sgmcgarry# (Warning: this compiles in a large string table) 1111.1Sgmcgarry#options DIOVERBOSE # recognize "unknown" DIO devices 1121.1Sgmcgarry 1131.1Sgmcgarryconfig netbsd root on ? type ? 1141.1Sgmcgarry 1151.1Sgmcgarrymainbus0 at root # root "bus" 1161.1Sgmcgarry 1171.1Sgmcgarryintio0 at mainbus0 # internal i/o space 1181.1Sgmcgarrydio0 at mainbus0 # DIO/DIO-II bus 1191.1Sgmcgarry 1201.1Sgmcgarry# Real-time clock (not optional) 1211.1Sgmcgarryrtc* at intio? 1221.1Sgmcgarry 1231.1Sgmcgarry# Human Interface Loop 1241.1Sgmcgarryhil* at intio? 1251.1Sgmcgarry 1261.1Sgmcgarry# Frodo utility chip found on 4xx's 1271.1Sgmcgarryfrodo* at intio? 1281.1Sgmcgarry 1291.1Sgmcgarry# 8250-like serial ports found on Frodo ASIC 1301.1Sgmcgarry#dnkbd0 at frodo? offset 0x0 # Domain keyboard flavor 1311.1Sgmcgarryapci* at frodo? offset ? # tty flavor 1321.1Sgmcgarry 1331.1Sgmcgarry# Davinci framebuffer 1341.1Sgmcgarrydvbox* at intio? 1351.1Sgmcgarrydvbox* at dio? scode ? 1361.1Sgmcgarry 1371.1Sgmcgarry# Gatorbox framebuffer 1381.1Sgmcgarrygbox* at intio? 1391.1Sgmcgarrygbox* at dio? scode ? 1401.1Sgmcgarry 1411.1Sgmcgarry# Hyperion framebuffer 1421.1Sgmcgarryhyper* at dio? scode ? 1431.1Sgmcgarry 1441.1Sgmcgarry# Renaissance framebuffer 1451.1Sgmcgarryrbox* at intio? 1461.1Sgmcgarryrbox* at dio? scode ? 1471.1Sgmcgarry 1481.1Sgmcgarry# Topcat/catseye framebuffers 1491.1Sgmcgarrytopcat* at intio? 1501.1Sgmcgarrytopcat* at dio? scode ? 1511.1Sgmcgarry 1521.1Sgmcgarry# Framebuffer abstraction 1531.1Sgmcgarrygrf* at dvbox? 1541.1Sgmcgarrygrf* at gbox? 1551.1Sgmcgarrygrf* at hyper? 1561.1Sgmcgarrygrf* at rbox? 1571.1Sgmcgarrygrf* at topcat? 1581.1Sgmcgarry 1591.1Sgmcgarry# Internal Terminal Emulator 1601.1Sgmcgarryite* at grf? 1611.1Sgmcgarry 1621.1Sgmcgarrydca0 at dio? scode 9 flags 1 # DCA serial interfaces 1631.1Sgmcgarrydca* at dio? scode ? 1641.1Sgmcgarry 1651.1Sgmcgarrydcm* at dio? scode ? flags 0xe # DCM 4- or 8-port serial interfaces 1661.1Sgmcgarry 1671.1Sgmcgarryle* at dio? scode ? # LANCE ethernet interfaces 1681.1Sgmcgarry 1691.1Sgmcgarrynhpib0 at dio? scode 7 # slow internal HP-IB 1701.1Sgmcgarrynhpib* at dio? scode ? 1711.1Sgmcgarry 1721.1Sgmcgarryfhpib* at dio? scode ? # `fast' HP-IB 1731.1Sgmcgarry 1741.1Sgmcgarryhpibbus0 at nhpib0 1751.1Sgmcgarryhpibbus* at nhpib? 1761.1Sgmcgarryhpibbus* at fhpib? 1771.1Sgmcgarry 1781.1Sgmcgarryrd* at hpibbus? slave ? punit ? # HP-IB disks 1791.1Sgmcgarryct* at hpibbus? slave ? punit ? # HP-IB cartridge tapes 1801.1Sgmcgarrymt* at hpibbus? slave ? punit ? # HP-IB 9-track tape 1811.1Sgmcgarryppi0 at hpibbus0 slave 5 punit 0 # HP-IB plotter 1821.1Sgmcgarry 1831.1Sgmcgarryoscsi* at dio? scode ? # Old HP SCSI 1841.1Sgmcgarry 1851.1Sgmcgarrysd* at oscsi? target ? lun ? # SCSI disks 1861.1Sgmcgarryst* at oscsi? target ? lun ? # SCSI tapes 1871.1Sgmcgarryac* at oscsi? target ? lun ? # SCSI changers 1881.1Sgmcgarry 1891.1Sgmcgarrypseudo-device pty # pseudo-terminals 1901.1Sgmcgarry#pseudo-device sl 4 # SLIP network interfaces 1911.1Sgmcgarry#pseudo-device ppp 4 # PPP network interfaces 1921.1Sgmcgarry#pseudo-device pppoe # PPP over Ethernet (RFC 2516) 1931.1Sgmcgarrypseudo-device bpfilter 16 # Berkeley packet filter 1941.1Sgmcgarry#pseudo-device vnd 4 # vnode pseudo-disks 1951.1Sgmcgarry#pseudo-device ccd 4 # concatenated disk devices 1961.1Sgmcgarry#pseudo-device raid 8 # RAIDframe disk driver 1971.1Sgmcgarry#options RAID_AUTOCONFIG # auto-configuration of RAID components 1981.1Sgmcgarry# Options to enable various other RAIDframe RAID types. 1991.1Sgmcgarry# options RF_INCLUDE_EVENODD=1 2001.1Sgmcgarry# options RF_INCLUDE_RAID5_RS=1 2011.1Sgmcgarry# options RF_INCLUDE_PARITYLOGGING=1 2021.1Sgmcgarry# options RF_INCLUDE_CHAINDECLUSTER=1 2031.1Sgmcgarry# options RF_INCLUDE_INTERDECLUSTER=1 2041.1Sgmcgarry# options RF_INCLUDE_PARITY_DECLUSTERING=1 2051.1Sgmcgarry# options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 2061.1Sgmcgarrypseudo-device loop # loopback network interface 2071.1Sgmcgarry#pseudo-device ipfilter # IP Filter package 2081.1Sgmcgarry#pseudo-device gre 2 # generic L3 over IP tunnel 2091.1Sgmcgarry#pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 2101.1Sgmcgarry#pseudo-device faith 1 # IPv[46] tcp relay translation i/f 2111.1Sgmcgarry#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 2121.1Sgmcgarry#pseudo-device vlan # IEEE 802.1q encapsulation 2131.1Sgmcgarry#pseudo-device bridge # simple inter-network bridging 2141.1Sgmcgarry#pseudo-device rnd # /dev/random and in-kernel generator 215