1. 30 6月, 2009 8 次提交
  2. 29 6月, 2009 2 次提交
  3. 22 6月, 2009 2 次提交
  4. 17 6月, 2009 4 次提交
  5. 10 6月, 2009 1 次提交
  6. 07 6月, 2009 1 次提交
  7. 06 6月, 2009 1 次提交
  8. 04 6月, 2009 1 次提交
  9. 28 5月, 2009 1 次提交
  10. 22 5月, 2009 2 次提交
    • A
      Add HTTP protocol using curl v6 · 769ce76d
      Alexander Graf 提交于
      Currently Qemu can read from posix I/O and NBD. This patch adds a
      third protocol to the game: HTTP.
      
      In certain situations it can be useful to access HTTP data directly,
      for example if you want to try out an http provided OS image, but
      don't know if you want to download it yet.
      
      Using this patch you can now try it on on the fly. Just use it like:
      
      qemu -cdrom http://host/path/my.isoSigned-off-by: NAlexander Graf <agraf@suse.de>
      769ce76d
    • K
      Create qemu-option.h · d3f24367
      Kevin Wolf 提交于
      This patch creates a new header file and the corresponding implementation file
      for parsing of parameter strings for options (like used in -drive). Part of
      this is code moved from vl.c (so qemu-img can use it later).
      
      The idea is to have a data structure describing all accepted parameters. When
      parsing a parameter string, the structure is copied and filled with the
      parameter values.
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      d3f24367
  11. 21 5月, 2009 1 次提交
  12. 19 5月, 2009 1 次提交
    • P
      Hardware convenience library · 1ad2134f
      Paul Brook 提交于
      The only target dependency for most hardware is sizeof(target_phys_addr_t).
      Build these files into a convenience library, and use that instead of
      building for every target.
      
      Remove and poison various target specific macros to avoid bogus target
      dependencies creeping back in.
      
      Big/Little endian is not handled because devices should not know or care
      about this to start with.
      Signed-off-by: NPaul Brook <paul@codesourcery.com>
      1ad2134f
  13. 15 5月, 2009 4 次提交
  14. 14 5月, 2009 1 次提交
    • P
      Add tool_osdep.c · 88ca2a59
      Paul Brook 提交于
      osdep.c is built in both as a toplevel target independant object, and
      as a per-target object because of kqemu dependencies.  Under some
      circumstances make picks up the wrong one.
      
      Build the former as tool-osdep to avoid this conflict.
      Signed-off-by: NPaul Brook <paul@codesourcery.com>
      88ca2a59
  15. 07 5月, 2009 1 次提交
  16. 01 5月, 2009 1 次提交
  17. 25 4月, 2009 1 次提交
  18. 19 4月, 2009 1 次提交
  19. 18 4月, 2009 2 次提交
  20. 16 4月, 2009 1 次提交
  21. 15 4月, 2009 1 次提交
  22. 11 4月, 2009 1 次提交
  23. 06 4月, 2009 1 次提交
    • A
      qemu-io - an I/O path exerciser (Christoph Hellwig) · 0a8e1acd
      aliguori 提交于
      This patch adds a new qemu-io tool that links against the block layer and
      image formats and allow to exercise them without needing a guest image.
      It is inspired by the xfs_io tool which does the same for plain file I/O.
      In fact the libxcmd library which is the backend of xfs_io is reused by this
      tool in a limited fashing (cmd.[ch] files).
      
      This version tests out most of the plain block I/O commands with the
      most notable absent commands beeing snapshot handling and real aio.
      
      This tool is the basis of the I/O path test suite I'm working on right now.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6990 c046a42c-6fe2-441c-8c8c-71466251a162
      0a8e1acd