summaryrefslogtreecommitdiffstats
path: root/scripts/poky-qemu-internal
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/poky-qemu-internal')
-rwxr-xr-xscripts/poky-qemu-internal31
1 files changed, 18 insertions, 13 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal
index 0ea38eef60..532b255da9 100755
--- a/scripts/poky-qemu-internal
+++ b/scripts/poky-qemu-internal
@@ -50,8 +50,9 @@ if [ -z "$QEMU_MEMORY" ]; then
50 50
51fi 51fi
52 52
53# This flag file is created when poky-gen-tapdevs creates a bank of 53# This file is created when poky-gen-tapdevs creates a bank of tap
54# tap devices, indicating that the user does not have sudo privs. 54# devices, indicating that the user should not bring up new ones using
55# sudo.
55NOSUDO_FLAG="/etc/poky-nosudo" 56NOSUDO_FLAG="/etc/poky-nosudo"
56 57
57QEMUIFUP=`which poky-qemu-ifup` 58QEMUIFUP=`which poky-qemu-ifup`
@@ -113,18 +114,17 @@ else
113fi 114fi
114 115
115release_lock() { 116release_lock() {
116 if [ "$LOCKFILE" = "" ]; then 117 if [ ! -e "$NOSUDO_FLAG" ]; then
117 $QEMUIFDOWN $TAP $POKY_NATIVE_SYSROOT 118 $QEMUIFDOWN $TAP $POKY_NATIVE_SYSROOT
118 else
119 echo "Releasing lockfile of preconfigured tap device '$TAP'"
120 lockfile-remove $LOCKFILE
121 fi
122
123 if [ "$NFSRUNNING" = "true" ]; then
124 echo "Shutting down the userspace NFS server:"
125 echo "poky-export-rootfs stop $ROOTFS"
126 poky-export-rootfs stop $ROOTFS
127 fi 119 fi
120 echo "Releasing lockfile of preconfigured tap device '$TAP'"
121 lockfile-remove $LOCKFILE
122
123 if [ "$NFSRUNNING" = "true" ]; then
124 echo "Shutting down the userspace NFS server..."
125 echo "poky-export-rootfs stop $ROOTFS"
126 poky-export-rootfs stop $ROOTFS
127 fi
128} 128}
129 129
130n1=$[ (`echo $TAP | sed 's/tap//'` * 2) + 1 ] 130n1=$[ (`echo $TAP | sed 's/tap//'` * 2) + 1 ]
@@ -136,6 +136,9 @@ QEMU_NETWORK_CMD="-net nic,vlan=0 $QEMU_TAP_CMD"
136KERNCMDLINE="mem=$QEMU_MEMORY" 136KERNCMDLINE="mem=$QEMU_MEMORY"
137QEMU_UI_OPTIONS="-show-cursor -usb -usbdevice wacom-tablet" 137QEMU_UI_OPTIONS="-show-cursor -usb -usbdevice wacom-tablet"
138 138
139NFS_INSTANCE=`echo $TAP | sed 's/tap//'`
140export NFS_INSTANCE
141
139SERIALOPTS="" 142SERIALOPTS=""
140if [ "x$SERIAL_LOGFILE" != "x" ]; then 143if [ "x$SERIAL_LOGFILE" != "x" ]; then
141 SERIALOPTS="-serial file:$SERIAL_LOGFILE" 144 SERIALOPTS="-serial file:$SERIAL_LOGFILE"
@@ -172,7 +175,9 @@ fi
172if [ "$FSTYPE" = "nfs" ]; then 175if [ "$FSTYPE" = "nfs" ]; then
173 NFS_SERVER="192.168.7.1" 176 NFS_SERVER="192.168.7.1"
174 NFS_DIR=`echo $ROOTFS | sed 's/^[^:]*:\(.*\)/\1/'` 177 NFS_DIR=`echo $ROOTFS | sed 's/^[^:]*:\(.*\)/\1/'`
175 UNFS_OPTS="nfsvers=2,mountprog=21111,nfsprog=11111,udp" 178 MOUNTD_PORT=$[ 21111 + $NFS_INSTANCE ]
179 NFSD_PORT=$[ 11111 + $NFS_INSTANCE ]
180 UNFS_OPTS="nfsvers=2,mountprog=$MOUNTD_PORT,nfsprog=$NFSD_PORT,udp"
176 181
177 PSEUDO_LOCALSTATEDIR=~/.poky-sdk/pseudo 182 PSEUDO_LOCALSTATEDIR=~/.poky-sdk/pseudo
178 export PSEUDO_LOCALSTATEDIR 183 export PSEUDO_LOCALSTATEDIR