home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / unix / bsd / 8588 < prev    next >
Encoding:
Text File  |  1992-11-08  |  4.7 KB  |  129 lines

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!acd4!iedv7!smm
  3. From: smm@iedv7.acd.com ( Steve McCoole       )
  4. Subject: Diffs to BSDI BSD/386 Ported Software List 02/02
  5. Message-ID: <1992Nov7.201149.4407@acd4.acd.com>
  6. Followup-To: comp.unix.bsd
  7. Sender: news@acd4.acd.com (USENET News System)
  8. Organization: Applied Computing Devices, Inc., Terre Haute IN
  9. References: <1992Nov7.200754.4197@acd4.acd.com>
  10. Date: Sat, 7 Nov 1992 20:11:49 GMT
  11. Lines: 116
  12.  
  13.  
  14. *** ported.list.02.v3    Mon Oct 19 09:42:53 1992
  15. --- ported.list.02    Sat Nov  7 11:16:03 1992
  16. ***************
  17. *** 49,55 ****
  18.   a derivative of Dirk Husemann's keyboard modifications to use ALT as a
  19.   meta key.)  Mike Karels ( sent by Jeff Polk <polk@bsdi.com> )
  20.   -----
  21. ! PD version of the pr program.  Posted to the beta list. bjorn@sysadmin.com
  22.   (Bjorn Satdeva) 
  23.   -----
  24.   Package that allows booting BSDI or DOS from the same hard disk.
  25. --- 49,56 ----
  26.   a derivative of Dirk Husemann's keyboard modifications to use ALT as a
  27.   meta key.)  Mike Karels ( sent by Jeff Polk <polk@bsdi.com> )
  28.   -----
  29. ! PD version of the pr program.  Posted to the beta list.  This is part
  30. ! of the distribution on GAMMA releases.  bjorn@sysadmin.com
  31.   (Bjorn Satdeva) 
  32.   -----
  33.   Package that allows booting BSDI or DOS from the same hard disk.
  34. ***************
  35. *** 252,257 ****
  36. --- 253,261 ----
  37.   Patches to allow the SoundBlaster driver posted to alt.sources work
  38.   under BSDI.
  39.   John T Kohl <jtkohl@kolvir.elcr.ca.us>
  40. + (GAMMA) Patches to John's patches to allow the SoundBlaster driver to
  41. + work under GAMMA release.
  42. + Steve McCoole <smm@acd4.acd.com>
  43.   ------
  44.   Fixes for the floating point emulator.
  45.   karels@bsdi.com
  46. ***************
  47. *** 391,396 ****
  48. --- 395,474 ----
  49.   It supports two address ranges, 0x1a0-0x1bf, or 0x2a0-0x2bf in the 'enhanced'
  50.   mode where all four ports share one interrupt line, which can be 2/9,3,4,5,6,7.
  51.   bdale@gag.com (Bdale Garbee)
  52. + -------
  53. + Tcl/Tk patches working under beta.  Setenv/unsetenv hack may not be
  54. + robust.  Problems with the strod function as provided by the package (
  55. + BSDI has a prototype for the function but not the function itself ).
  56. + hartzell@cory.berkeley.edu (George Hartzell)
  57. + -------
  58. + Tcl/Tk patches also working under beta.
  59. + cpetterb@javelin.sim.es.com (Cary Petterborg)
  60. + -------
  61. + We aquired a used DEC hard drive which did not seem to spin up at all.
  62. + After digging around an Ultrix system, we discovered that the drive
  63. + needed a START_UNIT command to get it going.  Here is a fix for the
  64. + scsi/sd.c driver which will issue a start unit upon boot (only to a
  65. + DEC drive at this moment.  Issueing the start unit did not
  66. + cause problems for other drives, so I think the DEC compare can be
  67. + safely removed).  If anyone else is having trouble getting unknown drives
  68. + to spin-up this will probably fix the problem.
  69. + tomm@ingres.com (Tom Markson)
  70. + -------
  71. + (GAMMA) We seem to get a lot of requests to look up ASC/ASCQ codes...
  72. + I'll append a patch to the scsicmd sources below which will let you
  73. + extract an English translation of these values like this:
  74. +     % scsicmd -a 0x14/0
  75. +     recorded entity not found
  76. +     %
  77. + Scsicmd appears in gamma; if you don't have gamma and you want scsicmd,
  78. + ask Jeff for a copy.
  79. + donn@bsdi.com (Donn Seeley)
  80. + -------
  81. + (GAMMA)  Patch for problems with floating point instructions in rundos
  82. + envirionment.
  83. + karels@bsdi.com (Mike Karels)
  84. + -------
  85. + (GAMMA)
  86. + I can't live without my 8 port serial card, so I quickly hacked
  87. + gamma 0.9 com.c to support it with my generic multiport modifications.
  88. + While testing the bidirectional line usage, I discovered a bug, at
  89. + least in my opinion, in the DCD detection (fix included).
  90. + This version isn't as robust as the latest stuff I had for beta 0.3.3,
  91. + but it works. Also, something is interfering with the bidirectional
  92. + line usage.
  93. + (Sorry about posting this to both gamma and beta lists, but I wasn't
  94. + sure if a gamma list exists)
  95. + You have to add something along the lines of the following to your config
  96. + file:
  97. + # COM ports
  98. + # APT HSS08 multi-port serial card
  99. + device        com0    at isa? port 0x100
  100. + device        com1    at isa? port 0x108
  101. + device        com2    at isa? port 0x110
  102. + device        com3    at isa? port 0x118
  103. + device        com4    at isa? port 0x120
  104. + device        com5    at isa? port 0x128
  105. + device        com6    at isa? port 0x130
  106. + device        com7    at isa? port 0x138
  107. + The HSS08 shares one IRQ for all the ports, so I get warnings about
  108. + conflicting IRQs from the autoconfigurator during boot, but it works.
  109. + I also added:
  110. +     stty -f /dev/com0 clocal
  111. +     stty -f /dev/com1 clocal
  112. +     ...
  113. + to my /etc/rc.local, so things would stop blocking unexpectedly.
  114. + Brian Litzinger <brian@apt.bungi.com>
  115.   -------
  116.   
  117.   ========================================================================
  118.