From: Jason Wessel Date: Thu, 23 Jan 2014 14:32:45 +0000 (-0600) Subject: runqemu-export-rootfs: update for unfs3 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~34738 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea126a7d4a63e27755046ddd2eb0be079e20c334;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git runqemu-export-rootfs: update for unfs3 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 Signed-off-by: Saul Wold --- diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-export-rootfs index 2d879961d08..79403ab29ff 100755 --- a/scripts/runqemu-export-rootfs +++ b/scripts/runqemu-export-rootfs @@ -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'?"