Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ucbvax!pasteur!helios.ee.lbl.gov!nosc!cod!hall From: hall@cod.NOSC.MIL (Robert R. Hall) Newsgroups: comp.os.minix Subject: Re: dos fsck for partitions >65335 offset Message-ID: <1507@cod.NOSC.MIL> Date: 25 Apr 89 15:07:39 GMT References: <17260@cup.portal.com> Organization: Naval Ocean Systems Center, San Diego Lines: 14 DOSFSCK does not run on XT computers. In paticular the XT disk controler does not have a a Bios int 13h, function 0x15 implemented and if run will print the following error messages: From function 0x15, Bios Int 13h, This drive has 0 sectors and a capacity of 0 bytes. ... Illegal sector # requested ( > max ) I got around this by changing statement 152 of diskio.c from: else size = 0L; to: else size = max_cyl * sector * determined_heads;