qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* RE: [Qemu-devel] Patch: virtual vfat support
       [not found] <Pine.LNX.4.58.0412202329290.8198@wgmdd8.biozentrum.uni-wuerzburg.de>
@ 2004-12-21 22:47 ` Andreas Bollhalder
  2004-12-22 18:55   ` Johannes Schindelin
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Bollhalder @ 2004-12-21 22:47 UTC (permalink / raw)
  To: qemu-devel

Hello

I tested the QEMU.EXE from FreeOSZoo with your patch on WinXP.
Starting QEMU.EXE like the following:

D:\TEST\QEMU\qemu.exe -L . -localtime -m 32 -isa -cirrusvga -user-net
-enable-audio -boot c -fda bbe-fd.img -hda bbe-hd.dsk -hdb
vvfat:/TEMP/2

The directory "/TEMP/2" is in the D: drive. It works fine with FreeDOS
Beta9. Unfortunatly, I can't change the path to another drive
(partition).

I tried

/D/TEST/2
D:\TEST\2
/D:/TEST/2

The one introduced is the only one working.

Nice, sorry about my lot wishes, usage of UNC path's...

Great work, really!!

Andreas

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [Qemu-devel] Patch: virtual vfat support
  2004-12-21 22:47 ` [Qemu-devel] Patch: virtual vfat support Andreas Bollhalder
@ 2004-12-22 18:55   ` Johannes Schindelin
  2004-12-23  1:02     ` André Braga
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Schindelin @ 2004-12-22 18:55 UTC (permalink / raw)
  To: bolle, qemu-devel

Hi,

On Tue, 21 Dec 2004, Andreas Bollhalder wrote:

> D:\TEST\QEMU\qemu.exe -L . -localtime -m 32 -isa -cirrusvga -user-net
> -enable-audio -boot c -fda bbe-fd.img -hda bbe-hd.dsk -hdb
> vvfat:/TEMP/2
>
> The directory "/TEMP/2" is in the D: drive. It works fine with FreeDOS
> Beta9. Unfortunatly, I can't change the path to another drive
> (partition).
>
> I tried
>
> /D/TEST/2
> D:\TEST\2
> /D:/TEST/2

Of course this doesn't work. As D:\ is already the host directory /TEMP/2,
you would try to change to /TEMP/2/TEMP/2 with this command.

BTW, what exactly do you mean by "another drive" and "partition"? The
VVFAT driver transparently builds a hard disk image for your host
directory, which behaves like a drive inside QEmu, having exactly one
partition with a VFAT file system.

BTW(2), if anybody has suggestions for a better name, please tell so.

Hth,
Dscho

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] Patch: virtual vfat support
  2004-12-22 18:55   ` Johannes Schindelin
@ 2004-12-23  1:02     ` André Braga
  2004-12-23  9:20       ` [Qemu-devel] " Ronald
  2004-12-23 18:31       ` [Qemu-devel] " Andreas Bollhalder
  0 siblings, 2 replies; 5+ messages in thread
From: André Braga @ 2004-12-23  1:02 UTC (permalink / raw)
  To: qemu-devel

On Wed, 22 Dec 2004 19:55:01 +0100 (CET), Johannes Schindelin
<Johannes.Schindelin@gmx.de> wrote:
> Of course this doesn't work. As D:\ is already the host directory /TEMP/2,
> you would try to change to /TEMP/2/TEMP/2 with this command.
> 
> BTW, what exactly do you mean by "another drive" and "partition"? The
> VVFAT driver transparently builds a hard disk image for your host
> directory, which behaves like a drive inside QEmu, having exactly one
> partition with a VFAT file system.

You misunderstood what he meant. On his *host* system, the D drive
holds the temp\2 directory, as in d:\temp\2. QEMU is also installed in
the D drive/partition, so specifying /TEMP/2 goes to the root of the
filesystem in this partition. He couldn't figure out a way to change
to another path in another partition/drive, say, e:\temp\qemu , or
even a CD drive letter: having a virtual VFAT partition built on top
of a CD directory structure would work around having to make a ISO
image of the disk in a considerable number of situations.

I haven't tested your patch yet, so I can't say I figured how to
change drives myself. Maybe \\.\e\temp\qemu as in my example above?
I've seen such UNC convention work in QEMU before (more specifically
the discussions on Japanese Knoppix and QEMU).



-- 
"The weakest way to solve a problem is just to solve it"
-Alan Kay

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Qemu-devel] Re: Patch: virtual vfat support
  2004-12-23  1:02     ` André Braga
@ 2004-12-23  9:20       ` Ronald
  2004-12-23 18:31       ` [Qemu-devel] " Andreas Bollhalder
  1 sibling, 0 replies; 5+ messages in thread
From: Ronald @ 2004-12-23  9:20 UTC (permalink / raw)
  To: qemu-devel

Le Wed, 22 Dec 2004 23:02:26 -0200, André Braga a écrit :

> I haven't tested your patch yet, so I can't say I figured how to change
> drives myself. Maybe \\.\e\temp\qemu as in my example above? I've seen
> such UNC convention work in QEMU before (more specifically the discussions
> on Japanese Knoppix and QEMU).
 
To export a directory on another drive just put two backslaches instead of
only one like this vvfat:d:\\temp, I have not tried with cdrom drives,
just hard drives

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [Qemu-devel] Patch: virtual vfat support
  2004-12-23  1:02     ` André Braga
  2004-12-23  9:20       ` [Qemu-devel] " Ronald
@ 2004-12-23 18:31       ` Andreas Bollhalder
  1 sibling, 0 replies; 5+ messages in thread
From: Andreas Bollhalder @ 2004-12-23 18:31 UTC (permalink / raw)
  To: 'André Braga', qemu-devel


> You misunderstood what he meant. On his *host* system, the D drive
> holds the temp\2 directory, as in d:\temp\2. QEMU is also installed
in
> the D drive/partition, so specifying /TEMP/2 goes to the root of the
> filesystem in this partition. He couldn't figure out a way to change
> to another path in another partition/drive, say, e:\temp\qemu , or
> even a CD drive letter: having a virtual VFAT partition built on top
> of a CD directory structure would work around having to make a ISO
> image of the disk in a considerable number of situations.

That's right, but I know now why, it's because the directories on
other host drives have been holding more data the vvfat drive could
represent and QEmu quits without a message. Now I know that, I can use
other host drives too.

> I haven't tested your patch yet, so I can't say I figured how to
> change drives myself. Maybe \\.\e\temp\qemu as in my example above?
> I've seen such UNC convention work in QEMU before (more specifically
> the discussions on Japanese Knoppix and QEMU).

This would be the nice way. Or maybe one likes more an URL like
"sftp://myhost.mydomain/mydir/myimage" ?

Andreas

___________________________________________
IDEEN UND ZEIT SIND UMGEKEHRT PROPORTIONAL.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2004-12-23 18:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <Pine.LNX.4.58.0412202329290.8198@wgmdd8.biozentrum.uni-wuerzburg.de>
2004-12-21 22:47 ` [Qemu-devel] Patch: virtual vfat support Andreas Bollhalder
2004-12-22 18:55   ` Johannes Schindelin
2004-12-23  1:02     ` André Braga
2004-12-23  9:20       ` [Qemu-devel] " Ronald
2004-12-23 18:31       ` [Qemu-devel] " Andreas Bollhalder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).