From owner-freebsd-scsi Mon Nov 3 00:38:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA17610 for freebsd-scsi-outgoing; Mon, 3 Nov 1997 00:38:32 -0800 (PST) (envelope-from owner-freebsd-scsi) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id AAA17584; Mon, 3 Nov 1997 00:38:24 -0800 (PST) (envelope-from j@uriah.heep.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id JAA01547; Mon, 3 Nov 1997 09:38:00 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.7/8.8.5) id IAA05754; Mon, 3 Nov 1997 08:34:05 +0100 (MET) Message-ID: <19971103083404.YN36880@uriah.heep.sax.de> Date: Mon, 3 Nov 1997 08:34:04 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: freebsd-scsi@FreeBSD.ORG Cc: nadav@barcode.co.il (Nadav Eiron), mira@rockwell.cz (Miroslav Kes), questions@FreeBSD.ORG Subject: Re: CD-ROM changer, mount : Device not configured References: <345889A6.BFC23171@rockwell.cz> <34589E91.5102@barcode.co.il> X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <34589E91.5102@barcode.co.il>; from Nadav Eiron on Oct 30, 1997 16:49:53 +0200 Sender: owner-freebsd-scsi@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Nadav Eiron wrote: > > What does the message mean ?? > > That a CD changer is not supported this way. Just today preliminary > support for CD changers went into FreeBSD 3.0-current. You are absolutely wrong with this, Nadav. The green support in -current is for *ATAPI* CD-ROM changers. Miroslave, you need to make an entry in /sys/scsi/scsiconf.c. The reason why multi-LUN support is disabled by default is because too many CD-ROM drive manufacturers don't adhere to the SCSI specifications, and mistakenly make their devices respond to all LUNs, causing a single drive to misprobe as 8 drives. The following patch (relative to the version in FreeBSD 2.2.2) should fix the problem. Does anybody know whether *all* NAKAMICH MJ-* drives might be CD-ROM changers? This would allow to shortcut them. Index: src/sys/scsi/scsiconf.c =================================================================== RCS file: /home/ncvs/src/sys/scsi/scsiconf.c,v retrieving revision 1.64.2.13 diff -u -u -r1.64.2.13 scsiconf.c --- scsiconf.c 1997/05/03 22:24:50 1.64.2.13 +++ scsiconf.c 1997/11/03 07:30:51 @@ -385,6 +385,10 @@ T_READONLY, T_READONLY, T_REMOV, "NAKAMICH", "MJ-4*" ,"*", "cd", SC_MORE_LUS }, + { + T_READONLY, T_READONLY, T_REMOV, "NAKAMICH", "MJ-5*" ,"*", + "cd", SC_MORE_LUS + }, #endif /* !UKTEST */ #endif /* NCD */ #if NWORM > 0 Miroslave, prosim napis mi dopis kdyby tento patch pracuje. Dekuju. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-)