[oe-commits] [openembedded-core] 14/14: runqemu: let command line parameters override defaults

git at git.openembedded.org git at git.openembedded.org
Thu Dec 22 13:41:27 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit dd44b2eedc3befd9c8d272eb6cb2af5f419d03aa
Author: Patrick Ohly <patrick.ohly at intel.com>
AuthorDate: Wed Dec 21 14:11:28 2016 +0100

    runqemu: let command line parameters override defaults
    
    It may be necessary to override the parameters gathered for the qemu
    invocation. For example, the qemux86 machine configuration sets "-vga
    vmware", but when using OVMF as BIOS, only "-vga std" is supported.
    
    By putting the parameters derived from custom runqemu parameters like
    "qemuparams" after the parameters derived from the machine
    configuration the user gets the possibility to override those.
    
    Signed-off-by: Patrick Ohly <patrick.ohly at intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 scripts/runqemu | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index 0a9cb94..203992a 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -926,7 +926,7 @@ class BaseConfig(object):
 
         check_libgl(qemu_bin)
 
-        self.qemu_opt = "%s %s %s %s %s" % (qemu_bin, self.get('NETWORK_CMD'), self.qemu_opt_script, self.get('ROOTFS_OPTIONS'), self.get('QB_OPT_APPEND'))
+        self.qemu_opt = "%s %s %s %s %s" % (qemu_bin, self.get('NETWORK_CMD'), self.get('ROOTFS_OPTIONS'), self.get('QB_OPT_APPEND'), self.qemu_opt_script)
 
         if self.snapshot:
             self.qemu_opt += " -snapshot"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list