mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
scripts/qmp-shell: add redirection shim
qmp-shell has a new home, add a redirect for a little while as the dust settles. Signed-off-by: John Snow <jsnow@redhat.com> Message-id: 20210607200649.1840382-43-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
11
scripts/qmp/qmp-shell
Executable file
11
scripts/qmp/qmp-shell
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 import qmp_shell
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
qmp_shell.main()
|
Reference in New Issue
Block a user