home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / sys / sun / hardware / 6752 < prev    next >
Encoding:
Text File  |  1993-01-08  |  1.4 KB  |  40 lines

  1. Newsgroups: comp.sys.sun.hardware
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!wupost!udel!princeton!siemens!aad
  3. From: aad@siemens.com (Anthony Datri)
  4. Subject: Re: HOW TO USE AN EXABYTE 8500C ON A SUN ?
  5. Message-ID: <1993Jan9.022100.26021@siemens.com>
  6. Sender: news@siemens.com (NeTnEwS)
  7. Nntp-Posting-Host: lovecraft.siemens.com
  8. Organization: Siemens Corporate Research, Princeton (Plainsboro), NJ
  9. References: <1546@srtp.UUCP>
  10. Date: Sat, 9 Jan 1993 02:21:00 GMT
  11. Lines: 27
  12.  
  13.  
  14. >I've already a 8500 on my Sun but , with the same configuration , the 8500c 
  15. >doesn'twork !! Is there anything to add in /sys/scsi/targets/st_conf.c  to 
  16. >declare the type  ??
  17.  
  18. You found the right place; I'm suprised that you didn't figure it out.
  19.  
  20. >Jan  8 14:51:06 srtp vmunix: st2: <Vendor 'EXABYTE ' Product 'EXB8500CMTBANXC0'>
  21.  
  22. Just duplicate the existing entry and modify the vendor/product string and
  23. the comparison byte count, getting rid of the silly "8mm Helican Scan":
  24.  
  25. /* Exabyte 8mm 5GB cartridge */
  26. {
  27.         "Exabyte EXB-8500", 15, "EXABYTE EXB8500CMTBANXC0",
  28.         ST_TYPE_EXB8500, 1024,
  29.         (ST_VARIABLE | ST_BSF | ST_BSR | ST_LONG_ERASE),
  30.         5000, 5000,
  31.         { 0x14, 0x00, 0x8C, 0x8C },
  32.         {  0, 0, 0, 0 }
  33.  
  34.  
  35. The 15 is the number of chars in second string to compare to the concatenated
  36. vendor and product strings that the device actually returns.
  37. -- 
  38.  
  39. ======================================================================8--<
  40.