1. 05 6月, 2012 4 次提交
  2. 17 2月, 2012 1 次提交
  3. 02 2月, 2012 1 次提交
  4. 31 10月, 2011 1 次提交
  5. 06 7月, 2010 1 次提交
  6. 02 7月, 2010 1 次提交
  7. 28 5月, 2010 1 次提交
  8. 17 3月, 2010 2 次提交
    • M
      qemu-option: Move the implied first name into QemuOptsList · 8212c64f
      Markus Armbruster 提交于
      We sometimes permit omitting the first option name, for example
      -device foo is short for -device driver=foo.  The name to use
      ("driver" in the example) is passed as argument to qemu_opts_parse().
      For each QemuOptsList, we use at most one such name.
      
      Move the name into QemuOptsList, and pass whether to permit the
      abbreviation.  This ensures continued consistency, and simplifies the
      commit after next in this series.
      8212c64f
    • M
      qemu-option: Functions to convert to/from QDict · 01e7f188
      Markus Armbruster 提交于
      The functions are somewhat restricted.  Good enough for the job at
      hand.  We'll extend them when we need more.
      01e7f188
  9. 22 2月, 2010 1 次提交
  10. 07 10月, 2009 1 次提交
  11. 20 9月, 2009 1 次提交
  12. 12 9月, 2009 1 次提交
    • B
      Fix sys-queue.h conflict for good · 72cf2d4f
      Blue Swirl 提交于
      Problem: Our file sys-queue.h is a copy of the BSD file, but there are
      some additions and it's not entirely compatible. Because of that, there have
      been conflicts with system headers on BSD systems. Some hacks have been
      introduced in the commits 15cc9235,
      f40d7537,
      96555a96 and
      3990d09a but the fixes were fragile.
      
      Solution: Avoid the conflict entirely by renaming the functions and the
      file. Revert the previous hacks.
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      72cf2d4f
  13. 11 9月, 2009 1 次提交
  14. 11 8月, 2009 1 次提交
  15. 28 7月, 2009 2 次提交
  16. 06 6月, 2009 1 次提交
  17. 22 5月, 2009 1 次提交
    • 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