prep revision 1.2
1Before you start you might need to consider your disk configuration
2to sort out a quirk in SCSI-ID to SD-UNIT mapping that exists on
3Sun Sparcstations.
4
5Upon leaving the factory, SunOS and the OpenBOOT ROM map according to
6this table:
7
8    SCSI-ID ->	SunOS SD-UNIT
9    0		sd3
10    1		sd1
11    2		sd2
12    3		sd0
13    4		sd4
14    5		sd5
15    6		sd6
16
17Unlike SunOS and the OpenBOOT ROM, a generic NetBSD kernel numbers
18scsi drives sequentially as it finds them.  The drive with the
19lowest scsi-id will be called sd0, the next one sd1, etc.
20
21To ease the installation process, the default NetBSD kernel in the
22distribution is setup to match the Sun mapping above by hard-wiring
23scsi-id#3 to sd0 and scsi-id#0 to sd3. The remaining drives will be
24dynamically mapped to other sd* numbers.
25
26A truely generic NetBSD kernel is also provided as `/netbsd.GENERIC',
27which will do the standard NetBSD probe ordering. If your configuration
28differs from the default Sun setup, you can try to use this kernel to
29complete the installation.
30
31NOTE: this is also a concern when you start building your own customised
32kernels.
33
34
35Your OpenBOOT ROM may need some setup.  make sure you boot from `new
36command mode'.  If your machine comes up and gives you a `>' prompt
37instead of `ok', type:
38
39    >n
40    ok setenv sunmon-compat? false
41    ok
42
43This is needed because netbsd cannot handle the old-mode yet, and will
44firework on you.
45
46Also, you cannot use the security modes of the sparc OpenBOOT ROM.
47
48    ok setenv security-mode none
49
50