We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12448f5 commit 0ebbd16Copy full SHA for 0ebbd16
1 file changed
lib/qemu.py
@@ -287,6 +287,10 @@ def qemu_main(qconf):
287
288
if qconf.interactive:
289
logging.info("Running interactively ...")
290
+ if qconf.host_mount:
291
+ logging.info("To mount the host mount point run:")
292
+ logging.info(" mkdir -p /mnt; mount -t 9p -o version=9p2000.L,trans=virtio host /mnt")
293
+
294
rc = subprocess.run(cmd, shell=True).returncode
295
return rc == 0
296
0 commit comments