aboutsummaryrefslogtreecommitdiff
path: root/scripts/qmp
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2021-06-02 20:37:18 -0400
committerJohn Snow <jsnow@redhat.com>2021-06-18 16:10:06 -0400
commitc89b38cd0a9ec852ed5504b3083ca7592d76b730 (patch)
tree507d23dbee050b94c64bc05d47ea611a989bc6cd /scripts/qmp
parent173d185de98c4ee358e5615cedcd8773719586c0 (diff)
downloadqemu-c89b38cd0a9ec852ed5504b3083ca7592d76b730.zip
qemu-c89b38cd0a9ec852ed5504b3083ca7592d76b730.tar.gz
qemu-c89b38cd0a9ec852ed5504b3083ca7592d76b730.tar.bz2
scripts/qom-fuse: add redirection shim to python/qemu/qmp/qom-fuse.py
By leaving the script absent for a commit, git-blame travels to the new file instead of staying on the shim. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20210603003719.1321369-19-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'scripts/qmp')
-rwxr-xr-xscripts/qmp/qom-fuse11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/qmp/qom-fuse b/scripts/qmp/qom-fuse
new file mode 100755
index 0000000..a58c8ef
--- /dev/null
+++ b/scripts/qmp/qom-fuse
@@ -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.qom_fuse import QOMFuse
+
+
+if __name__ == '__main__':
+ sys.exit(QOMFuse.entry_point())