diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 0db7ad63ca..57c5de4ca0 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -462,7 +462,9 @@ if [ -z "$ROOTFS" -a "x$FSTYPE" != "xvmdk" ]; then | |||
462 | error "Unable to determine default rootfs for MACHINE [$MACHINE]" | 462 | error "Unable to determine default rootfs for MACHINE [$MACHINE]" |
463 | fi | 463 | fi |
464 | fi | 464 | fi |
465 | # ROOTFS is now set for all cases | 465 | # ROOTFS is now set for all cases, now expand it to be an absolute path, it should exist at this point |
466 | |||
467 | ROOTFS=`realpath $ROOTFS` | ||
466 | 468 | ||
467 | echo "" | 469 | echo "" |
468 | echo "Continuing with the following parameters:" | 470 | echo "Continuing with the following parameters:" |