]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu-export-rootfs: update for unfs3
authorJason Wessel <jason.wessel@windriver.com>
Thu, 23 Jan 2014 14:32:45 +0000 (08:32 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 28 Jan 2014 00:48:28 +0000 (00:48 +0000)
The unfs3 no longer has an rpc.mountd component. There is just a
single server for mountd and nfsd requests.  This means changing
the name of the server in the scripts that check for it.

[YOCTO #5639]

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
scripts/runqemu-export-rootfs

index 2d879961d08d59315b527bdce202876f1df2cda5..79403ab29ffcf6002322734cc8d5a79fa0d504f1 100755 (executable)
@@ -46,8 +46,8 @@ if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then
 fi
 . $SYSROOT_SETUP_SCRIPT
 
-if [ ! -e "$OECORE_NATIVE_SYSROOT/usr/sbin/rpc.mountd" ]; then
-       echo "Error: Unable to find rpc.mountd binary in $OECORE_NATIVE_SYSROOT/usr/sbin/"
+if [ ! -e "$OECORE_NATIVE_SYSROOT/usr/sbin/unfsd" ]; then
+       echo "Error: Unable to find unfsd binary in $OECORE_NATIVE_SYSROOT/usr/sbin/"
 
        if [ "x$OECORE_DISTRO_VERSION" = "x" ]; then
                echo "Have you run 'bitbake meta-ide-support'?"