From: Saul Wold Date: Tue, 25 Feb 2014 18:30:47 +0000 (+0200) Subject: runqemu: Use readlink instead of realpath X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e47afff7d812c74f8091d85facfdf34d6a1b698e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git runqemu: Use readlink instead of realpath (From OE-Core rev: 5a4b5c6b8ebd5f8d29888aafcd9608e03717bcd5) Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/scripts/runqemu b/scripts/runqemu index 57c5de4ca04..573def151fc 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -464,7 +464,7 @@ if [ -z "$ROOTFS" -a "x$FSTYPE" != "xvmdk" ]; then fi # ROOTFS is now set for all cases, now expand it to be an absolute path, it should exist at this point -ROOTFS=`realpath $ROOTFS` +ROOTFS=`readlink -f $ROOTFS` echo "" echo "Continuing with the following parameters:"