Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Apr 1997 09:59:06 -0800 (PST)
From:      "Brian N. Handy" <handy@sag.space.lockheed.com>
To:        Joerg Wunsch <joerg_wunsch@uriah.heep.sax.de>
Cc:        freebsd-scsi@freebsd.org
Subject:   Re: Philips CDwriter
Message-ID:  <Pine.OSF.3.96.970401095526.14533C-100000@sag.space.lockheed.com>
In-Reply-To: <19970401082007.ZO53870@uriah.heep.sax.de>

next in thread | previous in thread | raw e-mail | index | archive | help
>As Brian N. Handy wrote:
>
>> 	# wormcontrol select PHILIPS CDD2600
>> 	wormcontrol: open(/dev/rworm0): Device not configured
>
>The obvious question: there is a medium in the drive when you do
>the above?  It fails even when issued repeatedly?

I finally sorted it out -- the problem was the damn media was bad.  I
tried another disk and it worked fine. :-/

As for the changes to worm.c, you're right - not necessary.  However I did
add another entry to scsiconf.c since the probe has changed fairly
drastically.  The old philips probes as IMS CDD2000, the new one probes as
PHILIPS CDD2600.  In order to make the entry vague enough to work, I'd
have to do something like "*", "CDD2*"....which might pick up some other
SCSI stuff down the road and declare it a WORM device!  I think another
entry is in order.

Here's the patch, if anyone's interested.  

Happy Trails,

Brian
----------------------------------------------------------------------
*** sys/scsi/scsiconf.c~	Mon Mar 10 12:53:16 1997
--- sys/scsi/scsiconf.c	Tue Apr  1 09:26:17 1997
***************
*** 393,398 ****
--- 393,403 ----
  		T_READONLY, T_WORM, T_REMOV, "IMS", "CDD2000*", "*",
  		"worm", SC_ONE_LU
  	},
+ 	{
+ 		/* Here's another Philips drive... */
+ 		T_READONLY, T_WORM, T_REMOV, "PHILIPS", "CDD2*", "*",
+ 		"worm", SC_ONE_LU
+ 	},
  	/*
  	 * The Plasmon's are dual-faced: they appear as T_WORM if the
  	 * drive is empty, or a CD-R medium is in the drive, and they





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.OSF.3.96.970401095526.14533C-100000>