[oe-commits] [openembedded-core] 16/16: runqemu: add -h and --help

git at git.openembedded.org git at git.openembedded.org
Thu Mar 16 22:22:35 UTC 2017


This is an automated email from the git hooks/post-receive script.

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

commit 6b9dd7a589537b12da648be50298cf7d36461797
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Mar 16 03:13:25 2017 -0700

    runqemu: add -h and --help
    
    Fixed:
    $ runqemu -h
    runqemu - INFO - Assuming MACHINE = -h
    runqemu - INFO - Running MACHINE=-h bitbake -e...
    [snip]
    Exception: FSTYPE is NULL!
    
    [YOCTO #10941]
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/runqemu | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index cfdb0c5..1721956 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -80,7 +80,7 @@ of the following environment variables (in any order):
   biosfilename=<filename> - specify bios filename
   qemuparams=<xyz> - specify custom parameters to QEMU
   bootparams=<xyz> - specify custom kernel parameters during boot
-  help: print this text
+  help, -h, --help: print this text
 
 Examples:
   runqemu qemuarm
@@ -1161,7 +1161,8 @@ class BaseConfig(object):
             logger.warn("Couldn't run 'bitbake -e' to gather environment information:\n%s" % err.output.decode('utf-8'))
 
 def main():
-    if len(sys.argv) == 1 or "help" in sys.argv:
+    if len(sys.argv) == 1 or "help" in sys.argv or \
+            '-h' in sys.argv or '--help' in sys.argv:
         print_usage()
         return 0
     config = BaseConfig()

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


More information about the Openembedded-commits mailing list