diff mbox series

[14/15] scripts/qom-fuse: add redirection shim to python/qemu/qmp/qom-fuse.py

Message ID 20201021185208.1611145-15-jsnow@redhat.com
State Superseded
Headers show
Series python: absorb scripts/qmp/qom-* tooling | expand

Commit Message

John Snow Oct. 21, 2020, 6:52 p.m. UTC
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>
---
 scripts/qmp/qom-fuse | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100755 scripts/qmp/qom-fuse

Comments

Philippe Mathieu-Daudé Oct. 24, 2020, 7:56 p.m. UTC | #1
On 10/21/20 8:52 PM, John Snow wrote:
> 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>

> ---

>   scripts/qmp/qom-fuse | 11 +++++++++++

>   1 file changed, 11 insertions(+)

>   create mode 100755 scripts/qmp/qom-fuse


Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
diff mbox series

Patch

diff --git a/scripts/qmp/qom-fuse b/scripts/qmp/qom-fuse
new file mode 100755
index 0000000000..a58c8ef979
--- /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())