diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-02-25 20:30:47 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-25 21:29:51 +0000 |
commit | 5a4b5c6b8ebd5f8d29888aafcd9608e03717bcd5 (patch) | |
tree | 0826fcab969a37f589e3a546f54922029d2954bf /scripts/runqemu | |
parent | 736ef878570ebe60845da88094907ad28f7b50ff (diff) | |
download | openembedded-core-contrib-5a4b5c6b8ebd5f8d29888aafcd9608e03717bcd5.tar.gz |
runqemu: Use readlink instead of realpath
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
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:" |