1. 13 1月, 2013 1 次提交
  2. 19 12月, 2012 5 次提交
  3. 11 12月, 2012 5 次提交
  4. 31 10月, 2012 1 次提交
    • J
      Issue warning when deprecated drive parameter boot=on|off is used · 0d92d17a
      Jan Kiszka 提交于
      Releases of qemu-kvm will be interrupted at qemu 1.3.0.
      Users should switch to plain qemu releases.
      To avoid breaking scenarios which are setup with command line
      options specific to qemu-kvm, port these switches from qemu-kvm
      to qemu.git.
      
      Port drive boot option. From the qemu-kvm original commit message:
      
      We do not want to maintain this option forever. It will be removed after
      a grace period of a few releases. So warn the user that this option has
      no effect and will become invalid soon.
      Signed-off-by: NMarcelo Tosatti <mtosatti@redhat.com>
      0d92d17a
  5. 24 10月, 2012 5 次提交
  6. 05 10月, 2012 1 次提交
  7. 29 9月, 2012 10 次提交
  8. 28 9月, 2012 1 次提交
  9. 24 9月, 2012 1 次提交
  10. 10 8月, 2012 1 次提交
  11. 03 8月, 2012 1 次提交
    • P
      Support 'help' as a synonym for '?' in command line options · c8057f95
      Peter Maydell 提交于
      For command line options which permit '?' meaning 'please list the
      permitted values', add support for 'help' as a synonym, by abstracting
      the check out into a helper function.
      
      This change means that in some cases where we were being lazy in
      our string parsing, "?junk" will now be rejected as an invalid option
      rather than being (undocumentedly) treated the same way as "?".
      
      Update the documentation to use 'help' rather than '?', since '?'
      is a shell metacharacter and thus prone to fail confusingly if there
      is a single character filename in the current working directory and
      the '?' has not been escaped. It's therefore better to steer users
      towards 'help', though '?' is retained for backwards compatibility.
      
      We do not, however, update the output of the system emulator's -help
      (or any documentation autogenerated from the qemu-options.hx which
      is the source of the -help text) because libvirt parses our -help
      output and will break. At a later date when QEMU provides a better
      interface so libvirt can avoid having to do this, we can update the
      -help text too.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      c8057f95
  12. 17 7月, 2012 4 次提交
  13. 09 7月, 2012 1 次提交
  14. 15 6月, 2012 1 次提交
  15. 05 6月, 2012 1 次提交
    • L
      qemu-option: qemu_opts_create(): use error_set() · 8be7e7e4
      Luiz Capitulino 提交于
      This commit converts qemu_opts_create() from qerror_report() to
      error_set().
      
      Currently, most calls to qemu_opts_create() can't fail, so most
      callers don't need any changes.
      
      The two cases where code checks for qemu_opts_create() erros are:
      
       1. Initialization code in vl.c. All of them print their own
          error messages directly to stderr, no need to pass the Error
          object
      
       2. The functions opts_parse(), qemu_opts_from_qdict() and
          qemu_chr_parse_compat() make use of the error information and
          they can be called from HMP or QMP. In this case, to allow for
          incremental conversion, we propagate the error up using
          qerror_report_err(), which keeps the QError semantics
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      Reviewed-By: NLaszlo Ersek <lersek@redhat.com>
      8be7e7e4
  16. 10 5月, 2012 1 次提交