INSTALL revision 1.55 1 # $NetBSD: INSTALL,v 1.55 2005/02/18 21:05:53 dsl Exp $
2 #
3 # Distribution install kernel (any model)
4 # netbsd: cut-down kernel for miniroots.
5 # nfsnetbsd: root on NFS to boot diskless for installation,
6 # disk drivers for labelling disks and installation on local disk.
7 #
8 # Kernel must be under 1Mbyte to net-boot on 3100s with old PROMs.
9 #
10 #
11 include "arch/pmax/conf/std.pmax"
12 include "arch/pmax/conf/files.pmax_rcons"
13
14 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
15
16 makeoptions COPTS="-Os -mmemcpy" # Optimise for space. Implies -O2
17
18 maxusers 8
19
20 # CPU options
21 options MIPS1 # R2000/R3000 support
22 options MIPS3 # R4000/R4400 support
23
24
25 # Support for specific models of DECstation
26 options DEC_3100 # kn01: DECstation 2100, 3100
27 options DEC_5100 # kn230: DECsystem 5100
28 options DEC_MAXINE # kn02ca: 5000/xx (Personal DECstation)
29 options DEC_3MIN # 5000/1xx (kn02ba), 5000/150 (kn04)
30 options DEC_3MAX # kn02: 5000/200 support
31 options DEC_3MAXPLUS # 5000/240 (kn03), 5000/260 (kn05)
32
33 #options DEC_5400
34 #options DEC_5800
35 #options DEC_5500
36
37 # Standard system options
38 #options DIAGNOSTIC # extra kernel debugging checks
39 #options DEBUG # extra kernel debugging support
40 #options KTRACE # system call tracing support
41 #options LKM # loadable kernel modules
42 options USERCONF # userconf(4) support
43 options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
44 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
45 options MALLOC_NOINLINE # Not inlining MALLOC saves memory
46
47 #options NTP # network time protocol
48
49
50 # File systems
51 file-system FFS # BSD fast filesystem
52 file-system NFS # Sun NFS-compatible filesystem (client)
53 file-system CD9660 # ISO 9660 + Rock Ridge file system
54 file-system KERNFS # kernel data-structure filesystem
55
56 # Filesystem options
57 #options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
58 options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
59 options FFS_NO_SNAPSHOT # No FFS snapshots
60
61
62 # Networking options
63 options INET # Internet protocols
64 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
65
66
67 # Raster console options
68 options FONT_BOLD8x16 # Font for fb devices
69 options FONT_GALLANT12x22
70
71 # pmax specific
72 options HZ=256 # RTC rate required
73
74 options NFS_BOOT_DHCP # superset of BOOTP
75
76 config netbsd root on ? type ?
77 config nfsnetbsd root on ? type nfs
78
79 mainbus0 at root
80 cpu* at mainbus0
81
82 ## Peripheral Bus Support (for devices to attach to)
83 ## ----------------------------------------------------------------------------
84
85 # TURBOchannel bus support
86 tc* at mainbus0
87
88 # 3MIN, 3MAX+ and MAXINE have IOASIC in system slot
89 ioasic0 at tc?
90 mcclock* at ioasic? offset ? # DS1287 RTC
91 le* at ioasic? offset ? # LANCE
92 scc* at ioasic? offset ? # Z85C30
93 #bba* at ioasic? offset ? # MAXINE baseboard audio
94 #audio* at bba?
95 dtop* at ioasic? offset ? # MAXINE kbd and mouse
96 #fdc at ioasic? offset ? # MAXINE floppy disk (not supported)
97 asc* at ioasic? offset ? # NCR53C94 SCSI with IOASIC
98
99 # 3MAX has TURBOchannel but no IOASIC
100 ibus0 at tc? slot ? offset ? # 3MAX system slot
101
102 # PMAX, 3MAX and MIPSMATE common devices
103 mcclock* at ibus0 addr ? # DS1287 RTC
104 dc* at ibus0 addr ? # DC7085 quad line serial device
105
106 # TURBOchannel devices
107 mfb* at tc? slot ? offset ? # PMAG-A MX Monochrome Framebuffer
108 cfb* at tc? slot ? offset ? # PMAG-B CX Color Framebuffer
109 #tfb* at tc? slot ? offset ? # PMAG-RO TX True Color Framebuffer
110 sfb* at tc? slot ? offset ? # PMAGB-B HX Smart Framebuffer
111 px0 at tc? slot ? offset ? # PMAG-C,D,E,F PX family
112 #sfbp* at tc? slot ? offset ? # PMAGD HX+ Smart Framebuffer
113 xcfb0 at tc? slot ? offset ? # PMAG-DV Color Framebuffer at MAXINE
114 asc* at tc? slot ? offset ? # PMAZ-A single channel SCSI
115 le* at tc? slot ? offset ? # PMAD-A LANCE
116 fta* at tc? slot ? offset ? # PMAF-F FDDI
117 #tcds* at tc? slot ? offset ? # PMAZB/PMAZC dual channel SCSI
118 #asc* at tcds? chip ?
119
120 # PMAX and MIPSMATE
121 ibus0 at mainbus0
122 pm* at ibus0 addr ? # 3100 onboard fb
123 le* at ibus0 addr ? # 3100 onboard LANCE
124 sii* at ibus0 addr ? # DC7061 onboard SCSI
125
126 #########################################################################
127 # SCSI configuration #
128 #########################################################################
129
130 scsibus* at sii?
131 scsibus* at asc?
132 sd* at scsibus? target ? lun ? # SCSI disks
133 st* at scsibus? target ? lun ? # SCSI tapes
134 cd* at scsibus? target ? lun ? # SCSI CD-ROMs
135
136 #########################################################################
137 # Pseudo-devices #
138 #########################################################################
139
140 pseudo-device pty 2 # pseudo-terminals (Sysinst needs two)
141 pseudo-device bpfilter 16 # packet filter ports
142 pseudo-device loop
143 pseudo-device ccd 4 # concatenated disks
144 #pseudo-device fss 4 # file system snapshot device
145
146 pseudo-device rasterconsole 1 # NB: raster console requires "fb"
147 pseudo-device fb 1 # only 1 framebuffer supported
148
149 pseudo-device rnd # /dev/random and in-kernel generator
150