Subject: Re: problems getting rz5 configured at bootup
To: Reini (Reinhold Huber) <Reinhold.Huber@Fachschaften.TU-Muenchen.DE>
From: Simon Burge <simonb@telstra.com.au>
List: port-pmax
Date: 02/19/1998 23:48:00
On Thu, 19 Feb 1998 13:38:15 +0100 (MET) "Reini (Reinhold Huber)" wrote:
> Hi,
>
> I've got a ST4702 disk jumpered as SCSI target 5 on a MAXINE (personal
> decstation 5000/33.
>
> [ stuff deleted ]
>
> #if NSII > 0
> # if NRZ > 0
> { &rzdriver, &siidriver, 0, 0, 0, 0, 1, 0x0 },
> { &rzdriver, &siidriver, 1, 0, 1, 0, 1, 0x0 },
> { &rzdriver, &siidriver, 2, 0, 2, 0, 1, 0x0 },
> { &rzdriver, &siidriver, 3, 0, 3, 0, 1, 0x0 },
> { &rzdriver, &siidriver, 4, 0, 4, 0, 1, 0x0 },
> { &rzdriver, &siidriver, 5, 0, 5, 0, 1, 0x0 },
> { &rzdriver, &siidriver, 6, 0, 6, 0, 1, 0x0 },
> # endif /* NTZ */
>
> # if NTZ > 0 && 0 /* i've disabled this with '&& 0' */
> { &tzdriver, &siidriver, 0, 0, 5, 0, 0, 0x0 },
> { &tzdriver, &siidriver, 1, 0, 6, 0, 0,
> 0x0 },
> # endif /* NTZ */
> #endif /* NSII */
The problem here is you've extended the available disks to the SII
driver (the SCSI driver for the 2100/3100), not the ASC driver (for just
about everything else - including the 5000/XX machines). If you edit
conf-glue.c after the "#if NASC > 0" bit, not after the "#if NSII > 0"
bit, you should be right.
Simon.