INSTALL revision 1.31 1 # $NetBSD: INSTALL,v 1.31 2017/07/28 19:26:16 maxv 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 #options COMPAT_43 # compatibility with 4.3BSD binaries
28 #options COMPAT_10 # NetBSD 1.0,
29 #options COMPAT_11 # NetBSD 1.1,
30 #options COMPAT_12 # NetBSD 1.2,
31 #options COMPAT_13 # NetBSD 1.3,
32 #options COMPAT_14 # NetBSD 1.4,
33 #options COMPAT_15 # NetBSD 1.5, and
34 #options COMPAT_16 # NetBSD 1.6 binary compatibility.
35 #options EXEC_AOUT # exec a.out binaries
36 #options EXEC_ECOFF # exec ecoff binaries
37 options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
38
39 # Filesystem options
40 file-system FFS # Berkeley Fast Filesystem
41 file-system NFS # Sun NFS-compatible filesystem client
42 file-system KERNFS # kernel data-structure filesystem
43 file-system CD9660 # ISO 9660 + Rock Ridge file system
44 #file-system PTYFS # /dev/pts/N support
45
46 # Options for saving space in install kernels
47 options NFS_V2_ONLY # Exclude NFS3 and NQNFS
48 options FFS_NO_SNAPSHOT # No FFS snapshot support
49 options WAPBL # File system journaling support
50
51 # Networking options
52 options INET # Internet protocols
53 options NFS_BOOT_DHCP # superset of BOOTP
54 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
55
56 config netbsd root on ? type ?
57
58 mainbus0 at root
59
60 cpu0 at mainbus0
61 obio0 at mainbus0
62
63 mkclock0 at obio0 addr 0xbd000000 # MK48T02 realtime clock
64
65 rambo0 at obio0 addr 0xbc000000 # RAMBO DMA & timer asic
66
67 le0 at obio0 addr 0xba000000 # onboard LANCE ethernet
68
69 # Not currently implemented
70 #kb0 at obio0 addr 0xbfd00000 # keyboard
71 #fb0 at obio0 addr 0x88000000 # framebuffer
72
73 fd0 at obio0 addr 0xbe000000 # i82072 floppy disk controller
74
75 zsc0 at obio0 addr 0xbb000000 # Base address for Z8530 SCC
76 zstty0 at zsc0 channel 0 # tty00
77 zstty1 at zsc0 channel 1 # tty01
78
79 asc0 at obio0 addr 0xb8000000 # onboard NCR 53c94 SCSI controller
80
81 scsibus0 at asc0
82
83 sd* at scsibus? target ? lun ? # SCSI disks
84 st* at scsibus? target ? lun ? # SCSI tapes
85 cd* at scsibus? target ? lun ? # SCSI CD-ROMs
86 ch* at scsibus? target ? lun ? # SCSI changer devices
87
88 pseudo-device loop # loopback interface; required
89 pseudo-device pty # pseudo-terminals
90 #pseudo-device sl # SLIP interfaces
91 #pseudo-device ppp # PPP interfaces
92 #pseudo-device tun # Network "tunnel" device
93 pseudo-device ccd # concatenated and striped disks
94 #pseudo-device raid # RAIDframe disk driver
95 #pseudo-device fss # file system snapshot device
96
97