diff options
Diffstat (limited to 'scripts/lib/devtool/runqemu.py')
-rw-r--r-- | scripts/lib/devtool/runqemu.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/devtool/runqemu.py b/scripts/lib/devtool/runqemu.py index 5282afba68..daee7fbbe3 100644 --- a/scripts/lib/devtool/runqemu.py +++ b/scripts/lib/devtool/runqemu.py | |||
@@ -57,7 +57,8 @@ def register_commands(subparsers, context): | |||
57 | """Register devtool subcommands from this plugin""" | 57 | """Register devtool subcommands from this plugin""" |
58 | if context.fixed_setup: | 58 | if context.fixed_setup: |
59 | parser_runqemu = subparsers.add_parser('runqemu', help='Run QEMU on the specified image', | 59 | parser_runqemu = subparsers.add_parser('runqemu', help='Run QEMU on the specified image', |
60 | description='Runs QEMU to boot the specified image') | 60 | description='Runs QEMU to boot the specified image', |
61 | group='testbuild', order=-20) | ||
61 | parser_runqemu.add_argument('imagename', help='Name of built image to boot within QEMU', nargs='?') | 62 | parser_runqemu.add_argument('imagename', help='Name of built image to boot within QEMU', nargs='?') |
62 | parser_runqemu.add_argument('args', help='Any remaining arguments are passed to the runqemu script (pass --help after imagename to see what these are)', | 63 | parser_runqemu.add_argument('args', help='Any remaining arguments are passed to the runqemu script (pass --help after imagename to see what these are)', |
63 | nargs=argparse.REMAINDER) | 64 | nargs=argparse.REMAINDER) |