mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
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>
This commit is contained in:
parent
173d185de9
commit
c89b38cd0a
1 changed files with 11 additions and 0 deletions
11
scripts/qmp/qom-fuse
Executable file
11
scripts/qmp/qom-fuse
Executable file
|
@ -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())
|
Loading…
Add table
Add a link
Reference in a new issue