1. 01 3月, 2014 1 次提交
  2. 18 2月, 2014 1 次提交
  3. 18 9月, 2013 1 次提交
  4. 15 5月, 2013 1 次提交
  5. 26 3月, 2013 1 次提交
  6. 06 9月, 2012 1 次提交
  7. 17 11月, 2010 2 次提交
    • L
      QMP/qmp-shell: Introduce HMP mode · 11217a75
      Luiz Capitulino 提交于
      In which qmp-shell will exclusively use the HMP passthrough feature,
      this is useful for testing.
      
      Example:
      
          # ./qmp-shell -H qmp-sock
          Welcome to the HMP shell!
          Connected to QEMU 0.13.50
      
          (QEMU) info network
          VLAN 0 devices:
            user.0: net=10.0.2.0, restricted=n
              e1000.0: model=e1000,macaddr=52:54:00:12:34:56
              Devices not on any VLAN:
          (QEMU)
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      11217a75
    • L
      QMP: Revamp the qmp-shell script · 9bed0d0d
      Luiz Capitulino 提交于
      This commit updates the qmp-shell script to use the new interface
      introduced by the last commit.
      
      Additionally, the following fixes/features are also introduced:
      
       o TCP sockets support
       o Update/add documentation
       o Simple command-line completion
       o Fix a number of unhandled errors
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      9bed0d0d
  8. 02 7月, 2010 1 次提交
  9. 03 12月, 2009 1 次提交
    • L
      QMP: Introduce qmp-shell · cedebdac
      Luiz Capitulino 提交于
      This is a very simple shell written in Python for demonstration
      purposes.
      
      Unfortunately it's a bit awkward right now, as the user has
      to specify the arguments names and the printed data can be
      a raw dictionary or list, like the following example:
      
      (QEMU) pci_add pci_addr=auto type=nic
      {u'slot': 5, u'bus': 0, u'domain': 0, u'function': 0}
      (QEMU)
      
      It's worth to note that the shell is broken into two files.
      One is the shell itself, the other is the QMP class which
      handles the communication with QEMU.
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      cedebdac