summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-ifup
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu-ifup')
-rwxr-xr-xscripts/runqemu-ifup6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/runqemu-ifup b/scripts/runqemu-ifup
index d9bd894123..59a15eaa2e 100755
--- a/scripts/runqemu-ifup
+++ b/scripts/runqemu-ifup
@@ -49,11 +49,11 @@ fi
49 49
50USERID="-u $1" 50USERID="-u $1"
51GROUP="-g $2" 51GROUP="-g $2"
52NATIVE_SYSROOT_DIR=$3 52STAGING_BINDIR_NATIVE=$3
53 53
54TUNCTL=$NATIVE_SYSROOT_DIR/usr/bin/tunctl 54TUNCTL=$STAGING_BINDIR_NATIVE/tunctl
55if [ ! -x "$TUNCTL" ]; then 55if [ ! -x "$TUNCTL" ]; then
56 echo "Error: Unable to find tunctl binary in '$NATIVE_SYSROOT_DIR/usr/bin', please bitbake qemu-helper-native" 56 echo "Error: Unable to find tunctl binary in '$STAGING_BINDIR_NATIVE', please bitbake qemu-helper-native"
57 exit 1 57 exit 1
58fi 58fi
59 59