home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / os / minix / 4951 < prev    next >
Encoding:
Internet Message Format  |  1992-12-21  |  2.2 KB

  1. Path: sparky!uunet!spool.mu.edu!yale.edu!qt.cs.utexas.edu!cs.utexas.edu!sun-barr!sh.wide!ascwide!ascgw!uitecgw!nemossan
  2. From: nemossan@uitec.ac.jp (Sakurao NEMOTO)
  3. Newsgroups: comp.os.minix
  4. Subject: more FDC_MAX_RETRY (was HELP, .. on Gateway 2000 486/33)
  5. Message-ID: <1609@uitecgw.uitec.ac.jp>
  6. Date: 20 Dec 92 04:03:39 GMT
  7. References: <168C1E448.SESPC395@ysub.ysu.edu>
  8. Organization: Univ. Industrial Tech., Sagamihara, JAPAN
  9. Lines: 53
  10.  
  11. In article <168C1E448.SESPC395@ysub.ysu.edu> SESPC395@ysub.ysu.edu (Max) writes:
  12. >Hello, I am having a little dificulty booting on the Gateway2000 486/33.
  13. >it doesn't even boot with the universal boot disk.  I am looking for a
  14. >solution that will allow be to boot on the system.
  15. >The system also has a IDE hard drive, which I would like to access. If any one
  16. >has source to modify the kernel that will allow this.
  17.  
  18.  
  19. Recently I had a chance to install minix-1.5 on Gateway-2000/486dx2/50MHz,
  20. and met troubles on FDD.
  21.  
  22.  
  23. At first, I've tried to boot-up AT-boot from 3.5'-FDD, but after showing
  24. menu, and responding my "="-pressing, the machine fell into sleep, light
  25. on FDD in keeping ON.
  26.  
  27.  
  28. Next, I've tried to boot-up minix-DEMO-disk, but it was the same, at first
  29. BIOS-FDD works well, but FDDriver on Minix does not work, even 3.5"-FDD is
  30. quite well under MS-DOS.
  31.  
  32.  
  33. Fortunately, booting from 5'-FDD could, in my case, so I could install
  34. minix through 5'-FDD.
  35.  
  36.  
  37. Thus, I saw source-codes of kernel/floppy.c, there such codes have been
  38. found;
  39. ------------------------------------------------
  40.     const MAX_FDC_RETRY = 100;
  41.         |
  42.     retries := MAX_FDC_RETRY;
  43.     while not ready do begin
  44.        DEC(retries);
  45.        if retries <= 0 then exit(IOerror);
  46.     end;
  47.     fdc_out(port,val);
  48.     exit(NOerror);
  49. ------------------------------------------------
  50.  
  51. I thought waiting-time is too short for 486-machines, thus increased the
  52. contents of MAX_FDC_RETRY upto 1000, then all the works can be done suc-
  53. cesfully.
  54.  
  55. After that, I asked my net-friends in case of Linux and 386bsd, the former
  56. uses 10000, and the latter 100000 for the waiting count.  So, I think
  57. "100" is too small in case of 486-machines.
  58.  
  59.  
  60.     (Sun) Dec 20 13:01 JST(+0900) 1992  nemossan@uitec.ac.jp
  61.     (NEMOTO Sakurao, Univ.Indust.Tech. Sagamihara 229 JAPAN)
  62.      (Tel: +81 427 63 9136 >DIALin<   Fax: +81 427 63 9011)
  63.