diff options
-rwxr-xr-x | scripts/runqemu-export-rootfs | 12 | ||||
-rwxr-xr-x | scripts/runqemu-extract-sdk | 2 | ||||
-rwxr-xr-x | scripts/runqemu-internal | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-export-rootfs index 0076768d20d..ae724bd63ef 100755 --- a/scripts/runqemu-export-rootfs +++ b/scripts/runqemu-export-rootfs @@ -57,15 +57,15 @@ if [ ! -e "$OECORE_NATIVE_SYSROOT/usr/sbin/rpc.mountd" ]; then exit 1 fi -if [ ! -d ~/.poky-sdk ]; then - mkdir -p ~/.poky-sdk +if [ ! -d ~/.runqemu-sdk ]; then + mkdir -p ~/.runqemu-sdk fi NFS_INSTANCE=${NFS_INSTANCE:=0} -EXPORTS=~/.poky-sdk/exports$NFS_INSTANCE -RMTAB=~/.poky-sdk/rmtab$NFS_INSTANCE -NFSPID=~/.poky-sdk/nfs$NFS_INSTANCE.pid -MOUNTPID=~/.poky-sdk/mount$NFS_INSTANCE.pid +EXPORTS=~/.runqemu-sdk/exports$NFS_INSTANCE +RMTAB=~/.runqemu-sdk/rmtab$NFS_INSTANCE +NFSPID=~/.runqemu-sdk/nfs$NFS_INSTANCE.pid +MOUNTPID=~/.runqemu-sdk/mount$NFS_INSTANCE.pid PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" PSEUDO_LOCALSTATEDIR="$NFS_EXPORT_DIR/var/pseudo" diff --git a/scripts/runqemu-extract-sdk b/scripts/runqemu-extract-sdk index ed349dd306c..50a9c316beb 100755 --- a/scripts/runqemu-extract-sdk +++ b/scripts/runqemu-extract-sdk @@ -21,7 +21,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA function usage() { - echo "Usage: $0 <poky-sdk-tarball> <extract-dir>" + echo "Usage: $0 <runqemu-sdk-tarball> <extract-dir>" } if [ $# -ne 2 ]; then diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index adf2b47aae3..afe97b5f9d1 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal @@ -246,7 +246,7 @@ if [ "$FSTYPE" = "nfs" ]; then NFSD_PORT=$[ 11111 + $NFS_INSTANCE ] UNFS_OPTS="nfsvers=2,mountprog=$MOUNTD_PORT,nfsprog=$NFSD_PORT,udp" - PSEUDO_LOCALSTATEDIR=~/.poky-sdk/pseudo + PSEUDO_LOCALSTATEDIR=~/.runqemu-sdk/pseudo export PSEUDO_LOCALSTATEDIR rpcbind_running=`ps ax | grep rpcbind | grep -v grep | wc -l` |