Commit a1b74fe8fea8ff7b48a6339407451ceca02b8c5e

Authored by bellard
1 parent ed5fd2cc

update


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@788 c046a42c-6fe2-441c-8c8c-71466251a162
Changelog
... ... @@ -3,8 +3,10 @@ version 0.5.5:
3 3 - SDL full screen support (initial patch by malc)
4 4 - VGA support on PowerPC PREP
5 5 - VBE fixes (Matthew Mastracci)
6   - - PIT fixes (aka Win98 hardware probe and timer bug)
  6 + - PIT fixes (aka Win98 hardware probe and "VGA slowness" bug)
7 7 - IDE master only fixes (aka Win98 CD-ROM probe bug)
  8 + - ARM load/store half word fix (Ulrich Hecht)
  9 + - FDC fixes for Win98
8 10  
9 11 version 0.5.4:
10 12  
... ...
1   -0.5.4
2 1 \ No newline at end of file
  2 +0.5.5
3 3 \ No newline at end of file
... ...
qemu-doc.texi
... ... @@ -297,22 +297,30 @@ Do not start CPU at startup (you must type 'c' in the monitor).
297 297 Output log in /tmp/qemu.log
298 298 @end table
299 299  
  300 +During the graphical emulation, you can use the following keys:
  301 +@table @key
  302 +@item Ctrl+Shift
  303 +Toggle mouse and keyboard grab.
  304 +@item Ctrl+Shift-f
  305 +Toggle full screen
  306 +@end table
  307 +
300 308 During emulation, if you are using the serial console, use @key{C-a h}
301 309 to get terminal commands:
302 310  
303 311 @table @key
304   -@item C-a h
  312 +@item Ctrl-a h
305 313 Print this help
306   -@item C-a x
  314 +@item Ctrl-a x
307 315 Exit emulatior
308   -@item C-a s
  316 +@item Ctrl-a s
309 317 Save disk data back to file (if -snapshot)
310   -@item C-a b
  318 +@item Ctrl-a b
311 319 Send break (magic sysrq in Linux)
312   -@item C-a c
  320 +@item Ctrl-a c
313 321 Switch between console and monitor
314   -@item C-a C-a
315   -Send C-a
  322 +@item Ctrl-a Ctrl-a
  323 +Send Ctrl-a
316 324 @end table
317 325 @c man end
318 326  
... ... @@ -490,7 +498,7 @@ CPU registers by prefixing them with @emph{$}.
490 498 The disk images can simply be raw images of the hard disk. You can
491 499 create them with the command:
492 500 @example
493   -dd if=/dev/zero of=myimage bs=1024 count=mysize
  501 +dd of=myimage bs=1024 seek=mysize count=0
494 502 @end example
495 503 where @var{myimage} is the image filename and @var{mysize} is its size
496 504 in kilobytes.
... ...