poky-qemu: add nographic option for disabling video console

This fixes [BUGID #408]

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
This commit is contained in:
Scott Garman 2010-10-14 11:23:26 -07:00 committed by Richard Purdie
parent 65954baaa3
commit af404b1372
1 changed files with 6 additions and 4 deletions

View File

@ -27,6 +27,7 @@ usage() {
echo " ROOTFS - the rootfs image file or nfsroot directory to use" echo " ROOTFS - the rootfs image file or nfsroot directory to use"
echo " MACHINE=xyz - the machine name (optional, autodetected from KERNEL filename if unspecified)" echo " MACHINE=xyz - the machine name (optional, autodetected from KERNEL filename if unspecified)"
echo " Additional QEMU command-line options can be passed with:" echo " Additional QEMU command-line options can be passed with:"
echo " nographic - disables video console"
echo " serial - enables a serial console on /dev/ttyS0" echo " serial - enables a serial console on /dev/ttyS0"
echo "" echo ""
echo "Examples:" echo "Examples:"
@ -85,11 +86,12 @@ while [ $i -le $# ]; do
usage usage
fi fi
;; ;;
"nographic")
SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -nographic"
;;
"serial") "serial")
# Will need to append to these variables when we SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -serial stdio"
# accept more values SCRIPT_KERNEL_OPT="$SCRIPT_KERNEL_OPT console=ttyS0"
SCRIPT_QEMU_OPT="-serial stdio"
SCRIPT_KERNEL_OPT="console=ttyS0"
;; ;;
*) *)
# A directory name is an nfs rootfs # A directory name is an nfs rootfs