From 74ff1bc8c248824116ba4b787b10fa6ee0c13ce1 Mon Sep 17 00:00:00 2001 From: Liming Wang Date: Thu, 25 Aug 2011 22:45:29 +0800 Subject: scripts/runqemu: disable unfs boot mode for qemuppc Because unfs boot mode is unstable for qemuppc, disable it temporarily. Signed-off-by: Liming Wang --- scripts/runqemu | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scripts/runqemu') diff --git a/scripts/runqemu b/scripts/runqemu index 91c3c9e93c..113088e548 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -354,6 +354,12 @@ if [ -z "$FSTYPE" ]; then usage fi fi + +if [ "$FSTYPE" = "nfs" -a "$MACHINE" = "qemuppc" ]; then + echo "Error: usermode NFS boot is not available for qemuppc." + exit 1 +fi + # FSTYPE is now set for all cases # Handle cases where a ROOTFS type is given instead of a filename, e.g. -- cgit 1.2.3-korg