diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2014-01-23 08:32:45 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-28 00:52:36 +0000 |
commit | 96b24e7bd550cf8a3fc2fffa89349600d1a6280a (patch) | |
tree | c0dbadeed00d1807b379d171dd2f06dcfacfe5ac | |
parent | 57d269a584dca69df3e801cf326109ac056497f4 (diff) | |
download | poky-96b24e7bd550cf8a3fc2fffa89349600d1a6280a.tar.gz |
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]
(From OE-Core rev: ea126a7d4a63e27755046ddd2eb0be079e20c334)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/runqemu-export-rootfs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-export-rootfs index 2d879961d0..79403ab29f 100755 --- a/scripts/runqemu-export-rootfs +++ b/scripts/runqemu-export-rootfs | |||
@@ -46,8 +46,8 @@ if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then | |||
46 | fi | 46 | fi |
47 | . $SYSROOT_SETUP_SCRIPT | 47 | . $SYSROOT_SETUP_SCRIPT |
48 | 48 | ||
49 | if [ ! -e "$OECORE_NATIVE_SYSROOT/usr/sbin/rpc.mountd" ]; then | 49 | if [ ! -e "$OECORE_NATIVE_SYSROOT/usr/sbin/unfsd" ]; then |
50 | echo "Error: Unable to find rpc.mountd binary in $OECORE_NATIVE_SYSROOT/usr/sbin/" | 50 | echo "Error: Unable to find unfsd binary in $OECORE_NATIVE_SYSROOT/usr/sbin/" |
51 | 51 | ||
52 | if [ "x$OECORE_DISTRO_VERSION" = "x" ]; then | 52 | if [ "x$OECORE_DISTRO_VERSION" = "x" ]; then |
53 | echo "Have you run 'bitbake meta-ide-support'?" | 53 | echo "Have you run 'bitbake meta-ide-support'?" |