Updated from deprecated -redir

The option -redir was deprecated, and no longer works with the QEMU
command. Updating it to use the -netdev user option that then specifies
the updated hostfwd specification. When run in a container the IP that
is specified will be pulled from the /etc/hosts file. If the IP that is
pulled from there is invalid then localhost (127.0.0.1) will be used
instead.

Change-Id: I582a66422e3de38dd9613cc443ac52aa1420f76d
Signed-off-by: Alanny Lopez <alanny.lopez@ibm.com>
diff --git a/scripts/boot-qemu.sh b/scripts/boot-qemu.sh
index 4f8d2df..bb2e3e6 100755
--- a/scripts/boot-qemu.sh
+++ b/scripts/boot-qemu.sh
@@ -45,11 +45,16 @@
 # Find the correct drive file, and save its name
 DRIVE=$(ls ./tmp/deploy/images/qemuarm | grep rootfs.ext4)
 
+# Obtain IP from /etc/hosts if IP is not valid set to localhost
+IP=$(awk 'END{print $1}' /etc/hosts)
+if [[ "$IP" != *.*.*.* ]]; then
+  IP=127.0.0.1
+fi
+
 # Launch QEMU using the qemu-system-arm
 ./tmp/sysroots/${QEMU_ARCH}/usr/bin/qemu-system-arm \
-    -redir tcp:443::443 \
-    -redir tcp:80::80 \
-    -redir tcp:22::22 \
+    -device virtio-net,netdev=mynet \
+    -netdev user,id=mynet,hostfwd=tcp:${IP}:22-:22,hostfwd=tcp:${IP}:443-:443,hostfwd=tcp:${IP}:80-:80 \
     -machine versatilepb \
     -m 256 \
     -drive file=./tmp/deploy/images/qemuarm/${DRIVE},if=virtio,format=raw \