1 # $NetBSD: INSTALL,v 1.32 2017/09/14 07:58:42 mrg Exp $ 2 # 3 include "arch/mipsco/conf/std.mipsco" 4 5 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary 6 7 makeoptions COPTS="-Os -mmemcpy" # Optimise for space. Implies -O2 8 9 maxusers 8 10 11 options MIPS1 # R2000/R3000 support 12 13 # Standard system options 14 options HZ=25 15 options USERCONF # userconf(4) support 16 options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 17 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 18 19 # Debugging options 20 #options DDB # kernel dynamic debugger 21 #options DDB_HISTORY_SIZE=100 # enable history editing in DDB 22 #options DEBUG # extra kernel debugging support 23 #options DIAGNOSTIC # extra kernel sanity checking 24 #options SCSIVERBOSE # Verbose SCSI errors 25 26 # Compatibility options 27 include "conf/compat_netbsd20.config" 28 #options EXEC_AOUT # exec a.out binaries 29 #options EXEC_ECOFF # exec ecoff binaries 30 31 # Filesystem options 32 file-system FFS # Berkeley Fast Filesystem 33 file-system NFS # Sun NFS-compatible filesystem client 34 file-system KERNFS # kernel data-structure filesystem 35 file-system CD9660 # ISO 9660 + Rock Ridge file system 36 #file-system PTYFS # /dev/pts/N support 37 38 # Options for saving space in install kernels 39 options NFS_V2_ONLY # Exclude NFS3 and NQNFS 40 options FFS_NO_SNAPSHOT # No FFS snapshot support 41 options WAPBL # File system journaling support 42 43 # Networking options 44 options INET # Internet protocols 45 options NFS_BOOT_DHCP # superset of BOOTP 46 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 47 48 config netbsd root on ? type ? 49 50 mainbus0 at root 51 52 cpu0 at mainbus0 53 obio0 at mainbus0 54 55 mkclock0 at obio0 addr 0xbd000000 # MK48T02 realtime clock 56 57 rambo0 at obio0 addr 0xbc000000 # RAMBO DMA & timer asic 58 59 le0 at obio0 addr 0xba000000 # onboard LANCE ethernet 60 61 # Not currently implemented 62 #kb0 at obio0 addr 0xbfd00000 # keyboard 63 #fb0 at obio0 addr 0x88000000 # framebuffer 64 65 fd0 at obio0 addr 0xbe000000 # i82072 floppy disk controller 66 67 zsc0 at obio0 addr 0xbb000000 # Base address for Z8530 SCC 68 zstty0 at zsc0 channel 0 # tty00 69 zstty1 at zsc0 channel 1 # tty01 70 71 asc0 at obio0 addr 0xb8000000 # onboard NCR 53c94 SCSI controller 72 73 scsibus0 at asc0 74 75 sd* at scsibus? target ? lun ? # SCSI disks 76 st* at scsibus? target ? lun ? # SCSI tapes 77 cd* at scsibus? target ? lun ? # SCSI CD-ROMs 78 ch* at scsibus? target ? lun ? # SCSI changer devices 79 80 pseudo-device loop # loopback interface; required 81 pseudo-device pty # pseudo-terminals 82 #pseudo-device sl # SLIP interfaces 83 #pseudo-device ppp # PPP interfaces 84 #pseudo-device tun # Network "tunnel" device 85 pseudo-device ccd # concatenated and striped disks 86 #pseudo-device raid # RAIDframe disk driver 87 #pseudo-device fss # file system snapshot device 88 89