[oe-commits] Khem Raj : run-qemu.sh: Suppport option to boot into single user shell.

git version control git at git.openembedded.org
Wed Jun 9 20:39:52 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 0f5be314dd920d6a37e16df54ccb8d85384c4dba
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=0f5be314dd920d6a37e16df54ccb8d85384c4dba

Author: Khem Raj <raj.khem at gmail.com>
Date:   Wed Jun  9 13:39:26 2010 -0700

run-qemu.sh: Suppport option to boot into single user shell.

Signed-off-by: Khem Raj <raj.khem at gmail.com>

---

 contrib/qemu/run-qemu.sh |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/contrib/qemu/run-qemu.sh b/contrib/qemu/run-qemu.sh
index ec863c2..7f83260 100755
--- a/contrib/qemu/run-qemu.sh
+++ b/contrib/qemu/run-qemu.sh
@@ -55,7 +55,7 @@
 #		is disabled
 
 supported_archs="{arm mips ppc sh4 x86}"
-if [ $# -ne 2 ]; then
+if [ $# -lt 2 ]; then
     echo -en "
     Usage: `basename $0` <arch> <libc>
     where <arch> is one $supported_archs
@@ -83,7 +83,7 @@ case $arch in
 	rootdisk="sda"
 	qemuopts="-nographic"
         kernel="zImage"
-        image="minimalist-image"
+        image="native-sdk-image"
         ;;
     mips)
 	address="10.0.1.102"
@@ -187,7 +187,7 @@ else
 	netopt="-net none"
 fi
 
-if [ "x$2" == "xsingle" ]; then
+if [ "x$3" == "xsingle" ]; then
     init="init=/bin/sh"
 else
     init=""





More information about the Openembedded-commits mailing list