From c320c09ee13f587b7466fd7cc7a6b23b7e0f0863 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 1 Jan 2011 09:44:11 -0800 Subject: [PATCH] run-qemu.sh: Use ext3 image instead of ext2 by default. * Disable network boot by default. Signed-off-by: Khem Raj --- contrib/qemu/run-qemu.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/qemu/run-qemu.sh b/contrib/qemu/run-qemu.sh index 0c1d7d62e5..635002218c 100755 --- a/contrib/qemu/run-qemu.sh +++ b/contrib/qemu/run-qemu.sh @@ -71,9 +71,9 @@ fi arch=$1 libc=$2 mem=256 # memory for guest server in Mb -imagetype="ext2" -networking="yes" -nfsboot="yes" +imagetype="ext3" +networking="no" +nfsboot="no" staticip="yes" case $arch in @@ -121,7 +121,7 @@ case $arch in rootdisk="hdc" qemuopts="-nographic" kernel="vmlinux" - image="minimalist-image" + image="console-image" ;; sh|sh4) arch=sh4 -- 2.39.5