From 3fdf246a22b17dfcbb8e6f2e7447f6b7a1dedb8a Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Sun, 20 May 2018 17:59:59 -0700 Subject: [PATCH] Split waf listen command out from vbox command --- wscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wscript b/wscript index 6085846..cb8489f 100644 --- a/wscript +++ b/wscript @@ -294,6 +294,9 @@ def vbox(ctx): ext = 'qed' dest = os.path.join(os.getenv("VBOX_DEST"), "popcorn.{}".format(ext)) call("qemu-img convert -f raw -O {} build/popcorn.img {}".format(ext, dest), shell=True) + +def listen(ctx): + from subprocess import call call("nc -l -p 5555", shell=True)