]> Git Repo - qemu.git/commitdiff
scripts/qmp-shell: add redirection shim
authorJohn Snow <[email protected]>
Mon, 7 Jun 2021 20:06:49 +0000 (16:06 -0400)
committerJohn Snow <[email protected]>
Fri, 18 Jun 2021 20:10:07 +0000 (16:10 -0400)
qmp-shell has a new home, add a redirect for a little while as the dust
settles.

Signed-off-by: John Snow <[email protected]>
Message-id: 20210607200649.1840382[email protected]
Signed-off-by: John Snow <[email protected]>
scripts/qmp/qmp-shell [new file with mode: 0755]

diff --git a/scripts/qmp/qmp-shell b/scripts/qmp/qmp-shell
new file mode 100755 (executable)
index 0000000..4a20f97
--- /dev/null
@@ -0,0 +1,11 @@
+#!/usr/bin/env python3
+
+import os
+import sys
+
+sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
+from qemu.qmp import qmp_shell
+
+
+if __name__ == '__main__':
+    qmp_shell.main()
This page took 0.031841 seconds and 4 git commands to generate.