S-ATA driver

Discussion/announcements about test/beta releases of UBCD will be posted here.

Moderators: Icecube, StopSpazzing

Post Reply
Message
Author
dragon1981
Posts: 3
Joined: Wed Jul 16, 2008 3:20 am

S-ATA driver

#1 Post by dragon1981 » Wed Jul 16, 2008 3:28 am

Hello,

I have seen, that there is an s-ata driver for optical devices implemented on ubcd. Can anybody explain me? How could I implement it myself to a dos batch???

I found the driver gcdrom.sys. But if I implement it to my batch, it doesn't work. :?:

Could anybody help me???

Kind regards

Mario

as702
Posts: 276
Joined: Tue Jun 17, 2008 3:14 am

#2 Post by as702 » Wed Jul 16, 2008 3:58 am

device /q GCDROM.SYS /D:MSCD000 /Cn
where n is the device controller.

or use the modboot to launch.

dragon1981
Posts: 3
Joined: Wed Jul 16, 2008 3:20 am

It doesn't fit!

#3 Post by dragon1981 » Fri Jul 25, 2008 5:45 am

Thank you for your answer.
Your answer seems to be correct - but in my case - it is not the solution.
Is there an other possibility to edit the gcdrom driver to my batch?

My sourcecode is:

In my config sys:
DEVICE=XCDROM.SYS /D:CDROM
DEVICE=GCDROM.SYS /D:CDROM
or
your remark:
device /q GCDROM.SYS /D:MSCD000 /Cn

in my Autoexec.bat:
MSCDEX.EXE /D:CDROM /L:X

Could you help me???

as702
Posts: 276
Joined: Tue Jun 17, 2008 3:14 am

#4 Post by as702 » Fri Jul 25, 2008 6:53 am

ah, ok. if you're installing the driver from config.sys then try this:

Code: Select all

device[high]=GCDROM.SYS /D:MSCD000 /Cn
where n=1..3

i believe your autoexec should then contain:

Code: Select all

MSCDEX.EXE /D:CDROM /L:n
again, where n=1..3

assuming your sata device is valid, it should work.

(-:

dragon1981
Posts: 3
Joined: Wed Jul 16, 2008 3:20 am

Good idea - but not the solution

#5 Post by dragon1981 » Thu Jul 31, 2008 6:01 am

Hello,


if have practiced your solution.

I implemented your sourcecode but only get the message:

"A:\>MSCDEX.EXE /D:CDROM /L:n "

(it doesn't matter if I change the n to 1...3)

"Device driver not found: 'CDROM'
No valid CDROM device driver selected"

What did I do wrong???
Do you have any idea?

as702
Posts: 276
Joined: Tue Jun 17, 2008 3:14 am

#6 Post by as702 » Thu Jul 31, 2008 6:31 am

config.sys

Code: Select all

DEVICE=GCDROM.SYS /D:MSCD000 /C0   
DEVICE=GCDROM.SYS /D:MSCD001 /C1
DEVICE=GCDROM.SYS /D:MSCD002 /C2
autoexec.bat

Code: Select all

MSCDEX.EXE /D:MSCD000 /D:MSCD001 /D:MSCD002

what error message(s) do you get?

Post Reply