From owner-freebsd-stable Sun Dec 2 13:12: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from freeway.dcfinc.com (cx74889-a.phnx3.az.home.com [24.1.193.157]) by hub.freebsd.org (Postfix) with ESMTP id 8864C37B417 for ; Sun, 2 Dec 2001 13:12:02 -0800 (PST) Received: (from chad@localhost) by freeway.dcfinc.com (8.8.8/8.8.8) id OAA01015; Sun, 2 Dec 2001 14:11:55 -0700 (MST) (envelope-from chad) Date: Sun, 2 Dec 2001 14:11:55 -0700 From: "Chad R. Larson" To: Andy Sparrow Cc: stable@FreeBSD.org Subject: Re: SCSI CD-R drives Message-ID: <20011202141155.A993@freeway.dcfinc.com> References: <20011202101340.A655@freeway.dcfinc.com> <20011202190644.C613D3E25@CRWdog.demon.co.uk> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="huq684BweRXVnRxX" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011202190644.C613D3E25@CRWdog.demon.co.uk>; from spadger@best.com on Sun, Dec 02, 2001 at 11:06:44AM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --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