mirror of https://github.com/xemu-project/xemu.git
linux-user: Add -help
This option is already available on the system mode binaries. It would be better if long options were supported (i.e. --help), but this is okay for now. Signed-off-by: Meador Inge <meadori@codesourcery.com> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
This commit is contained in:
parent
d03f9c3202
commit
daaf8c8eb7
|
@ -3883,6 +3883,8 @@ struct qemu_argument {
|
||||||
static const struct qemu_argument arg_table[] = {
|
static const struct qemu_argument arg_table[] = {
|
||||||
{"h", "", false, handle_arg_help,
|
{"h", "", false, handle_arg_help,
|
||||||
"", "print this help"},
|
"", "print this help"},
|
||||||
|
{"help", "", false, handle_arg_help,
|
||||||
|
"", ""},
|
||||||
{"g", "QEMU_GDB", true, handle_arg_gdb,
|
{"g", "QEMU_GDB", true, handle_arg_gdb,
|
||||||
"port", "wait gdb connection to 'port'"},
|
"port", "wait gdb connection to 'port'"},
|
||||||
{"L", "QEMU_LD_PREFIX", true, handle_arg_ld_prefix,
|
{"L", "QEMU_LD_PREFIX", true, handle_arg_ld_prefix,
|
||||||
|
|
Loading…
Reference in New Issue