Commit 2c6cadd49ee86bf2df6bf61c614258dfd97f7115

Authored by bellard
1 parent a046433a

update


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1718 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 2 changed files with 35 additions and 0 deletions
Changelog
... ... @@ -17,6 +17,8 @@ version 0.7.3:
17 17 - MIPS fixes to boot Linux (Daniel Jacobowitz)
18 18 - NX bit support
19 19 - Initial SPARC SMP support (Blue Swirl)
  20 + - Major overhaul of the virtual FAT driver for read/write support
  21 + (Johannes Schindelin)
20 22  
21 23 version 0.7.2:
22 24  
... ...
qemu-doc.texi
... ... @@ -755,6 +755,39 @@ command (or @key{C-a s} in the serial console).
755 755  
756 756 @include qemu-img.texi
757 757  
  758 +@subsection Virtual FAT disk images
  759 +
  760 +QEMU can automatically create a virtual FAT disk image from a
  761 +directory tree. In order to use it, just type:
  762 +
  763 +@example
  764 +qemu linux.img -hdb fat:/my_directory
  765 +@end example
  766 +
  767 +Then you access access to all the files in the @file{/my_directory}
  768 +directory without having to copy them in a disk image or to export
  769 +them via SAMBA or NFS. The default access is @emph{read-only}.
  770 +
  771 +Floppies can be emulated with the @code{:floppy:} option:
  772 +
  773 +@example
  774 +qemu linux.img -fda fat:floppy:/my_directory
  775 +@end example
  776 +
  777 +A read/write support is available for testing (beta stage) with the
  778 +@code{:rw:} option:
  779 +
  780 +@example
  781 +qemu linux.img -fda fat:floppy:rw:/my_directory
  782 +@end example
  783 +
  784 +What you should @emph{never} do:
  785 +@itemize
  786 +@item use non-ASCII filenames ;
  787 +@item use "-snapshot" together with ":rw:" ;
  788 +@item expect it to work when loadvm'ing.
  789 +@end itemize
  790 +
758 791 @section Network emulation
759 792  
760 793 QEMU can simulate several networks cards (NE2000 boards on the PC
... ...