home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / minix / 5103 < prev    next >
Encoding:
Text File  |  1993-01-09  |  1.5 KB  |  42 lines

  1. Newsgroups: comp.os.minix
  2. Path: sparky!uunet!cis.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!news.ysu.edu!do-not-reply-to-path
  3. From: SESPC395@ysub.ysu.edu (Max)
  4. Subject: Hardware and Software fixes
  5. Message-ID: <16B51B9B8.SESPC395@ysub.ysu.edu>
  6. Sender: news@news.ysu.edu (Usenet News Admin)
  7. Nntp-Posting-Host: ysub.ysu.edu
  8. Organization: Youngstown State University
  9. Date: Sat, 9 Jan 1993 18:12:06 GMT
  10. Lines: 30
  11.  
  12. Greatings, Programs! "Tron" if you didn't remember.
  13.  
  14. I started this in hopes that this would thread into infinity.  This would
  15. seem logical to have a continuing topic, with this subject on the net.
  16.  
  17. The first fix I have is for the IBMers out there. This deals with booting
  18. on systems with IDE Hard drive controlers.
  19.  
  20. One of the symptoms, is a continus rebooting, or you never get out of the
  21. disk continuously resetting its self.  There are two possible ways to fix
  22. one is to eliminate the reset code from bootblok.s, or replace it with a
  23. recalibrate drive (example to follow).  Removing the reset code could be
  24. risky, because the system could lock, with out the code.
  25.  
  26. Replace, all incidents of the following code:
  27.  
  28. "xor      ax,ax      ║ reset drive" *
  29.  
  30. with the following code:
  31.  
  32. "mov      ah,#0x11   ║ recalibrate drive"
  33. "mov      dl,#0x00   ║ floppy drive 0   "
  34.  
  35. *note: ONLY replace lines that have the "reset drive" comment.
  36.  
  37. This should provide a bootable disk when you recompile the kernel.
  38.  
  39. Max W. Blackmer, Jr.
  40. s0180873@unix1.cc.ysu.edu
  41. SESPC395@ysub.ysu.edu
  42.