Message ID | 1B4B44D9196EFF41AE41FDA404FC0A1001B1E170@SHSMSX102.ccr.corp.intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, Jun 24, 2013 at 08:47:36AM +0000, Ren, Yongjie wrote: > x86-run: correct a typo 'qemsystem' -> 'qemusystem' > Before this fix, you should always get error info as below when running 'x86-run' script. > "QEMU binary has no support for test device. Exiting." > > Signed-off-by: Yongjie Ren <yongjie.ren@intel.com> Applied all four. Thanks. > --- > x86-run | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/x86-run b/x86-run > index 2cf1f38..9526a0b 100755 > --- a/x86-run > +++ b/x86-run > @@ -8,7 +8,7 @@ then > qemu="${qemukvm}" > else > if > - ${qemsystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null; > + ${qemusystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null; > then > qemu="${qemusystem}" > else > -- > 1.7.9.5 -- Gleb. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/x86-run b/x86-run index 2cf1f38..9526a0b 100755 --- a/x86-run +++ b/x86-run @@ -8,7 +8,7 @@ then qemu="${qemukvm}" else if - ${qemsystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null; + ${qemusystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null; then qemu="${qemusystem}" else
x86-run: correct a typo 'qemsystem' -> 'qemusystem' Before this fix, you should always get error info as below when running 'x86-run' script. "QEMU binary has no support for test device. Exiting." Signed-off-by: Yongjie Ren <yongjie.ren@intel.com> --- x86-run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)