Date: Mon, 31 Mar 2003 21:14:54 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: djgpp AT delorie DOT com Message-Id: <2110-Mon31Mar2003211453+0300-eliz@elta.co.il> X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: (message from Mike on 31 Mar 2003 09:21:53 GMT) Subject: Re: DJGPP and SCSI References: Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: Mike > Newsgroups: comp.os.msdos.djgpp > Date: 31 Mar 2003 09:21:53 GMT > > I am trying to run the following program in a windows environment: > > http://www-miya.ist.osaka-u.ac.jp/~oosaki/akaitools/ > > It requires access to the scsi device block file, e.g /dev/sda > > I can't get it to work in cygwin as it doesn't implement a /dev directory. > What are my chances of getting in working in djgpp? DOS systems calls don't support SCSI devices directly. So, in order to get this program to work with DJGPP, you will have to write a filesystem extension that hooks all calls to /dev/sda and redirects them to SCSI commands. See the node "File System Extensions" in the DJGPP library reference manual, for more details.