From fa7fd7b1cbcfbd01af1949d2ea09b880a0ae0175 Mon Sep 17 00:00:00 2001 From: Andrei Dinu Date: Mon, 20 May 2013 16:16:30 +0300 Subject: SLiRP support in runqemu runqemu script now takes argument "slirp" in order to run networking on the qemu machine, without root privileges. changed the runqemu-internal script in order not to activate the tap devices if the option is set. [YOCTO #1474] Signed-off-by: Andrei Dinu Signed-off-by: Saul Wold --- scripts/runqemu | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts/runqemu') diff --git a/scripts/runqemu b/scripts/runqemu index 9bd35de6ab..f2eb2e1768 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -173,6 +173,9 @@ while true; do KVM_ENABLED="yes" KVM_CAPABLE=`grep -q 'vmx\|svm' /proc/cpuinfo && echo 1` ;; + "slirp") + SLIRP_ENABLED="yes" + ;; "publicvnc") SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -vnc 0.0.0.0:0" ;; -- cgit 1.2.3-korg