Date: Sun, 2 Dec 2001 14:11:55 -0700 From: "Chad R. Larson" <chad@DCFinc.com> To: Andy Sparrow <spadger@best.com> Cc: stable@FreeBSD.org Subject: Re: SCSI CD-R drives Message-ID: <20011202141155.A993@freeway.dcfinc.com> In-Reply-To: <20011202190644.C613D3E25@CRWdog.demon.co.uk>; from spadger@best.com on Sun, Dec 02, 2001 at 11:06:44AM -0800 References: <20011202101340.A655@freeway.dcfinc.com> <20011202190644.C613D3E25@CRWdog.demon.co.uk>
next in thread | previous in thread | raw e-mail | index | archive | help
--huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Dec 02, 2001 at 11:06:44AM -0800, Andy Sparrow wrote: > Wow. My old web page: > http://www.best.com/~spadger/CDR-main.html > gives details of how to get FreeBSD 2.2.5 & cdrecord 1.5/1.6 to build > and work, and how to use it. There's a few non-obvious wrinkles from > that epoch... The fix was two-fold. First was to pitch wormcontrol. It had no knowledge of my drive. I replaced it with cdrecord from the ports collection, which specifically claimed to run this drive. The second was a bit more of a problem. During the SCSI bus probe, the drive was not recognized and therefore got the "unknown" driver attached. I applied the attached patch to /sys/scsi/scsiconf.c which fixed that problem. Anyone think the patch is worth a commit? -crl -- Chad R. Larson (CRL15) 602-953-1392 Brother, can you paradigm? chad@dcfinc.com chad@larsons.org larson1@home.com DCF, Inc. - 14623 North 49th Place, Scottsdale, Arizona 85254-2207 --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch Index: scsiconf.c =================================================================== RCS file: /BSDcvs/cvs/src/sys/scsi/Attic/scsiconf.c,v retrieving revision 1.64.2.27 diff -c -r1.64.2.27 scsiconf.c *** scsiconf.c 1999/09/05 08:21:46 1.64.2.27 --- scsiconf.c 2001/12/02 20:29:40 *************** *** 431,436 **** --- 431,440 ---- "worm", SC_ONE_LU }, { + T_READONLY, T_WORM, T_REMOV, "RICOH", + "CD-R/RW MP7040S", "*", "worm", SC_ONE_LU + }, + { /* That's the Philips drive, in case anybody wonders... */ T_READONLY, T_WORM, T_REMOV, "IMS", "CDD2000*", "*", "worm", SC_ONE_LU --huq684BweRXVnRxX-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011202141155.A993>