[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Restore command line parsing code from qemu-0.6.1
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID 82af26d5d134525e44b225930a45fcd8b7ec2d53 # Parent 7ac99b43f87920144cbe268016c7e346dedd99fb Restore command line parsing code from qemu-0.6.1 This enables cdrom ejection (both file based and physical i.e. /dev/cdrom) Signed-off-by: Edwin Zhai <edwin.zhai@xxxxxxxxx> Signed-off-by: Arun Sharma <arun.sharma@xxxxxxxxx> diff -r 7ac99b43f879 -r 82af26d5d134 tools/ioemu/monitor.c --- a/tools/ioemu/monitor.c Mon Jul 25 21:02:34 2005 +++ b/tools/ioemu/monitor.c Mon Jul 25 21:02:50 2005 @@ -514,21 +514,45 @@ str_allocated[nb_args] = str; add_str: if (nb_args >= MAX_ARGS) { -#if 0 error_args: -#endif term_printf("%s: too many arguments\n", cmdname); goto fail; } args[nb_args++] = str; } break; + case '-': + { + int has_option; + /* option */ + + c = *typestr++; + if (c == '\0') + goto bad_type; + while (isspace(*p)) + p++; + has_option = 0; + if (*p == '-') { + p++; + if (*p != c) { + term_printf("%s: unsupported option -%c\n", + cmdname, *p); + goto fail; + } + p++; + has_option = 1; + } + if (nb_args >= MAX_ARGS) + goto error_args; + args[nb_args++] = (void *)has_option; + } + break; /* TODO: add more commands we need here to support vmx device model */ case '/': case 'i': - case '-': default: - term_printf("%s: unknown type '%c', we only support quit command now.\n", cmdname, c); + bad_type: + term_printf("%s: unknown type '%c',not support now.\n", cmdname, c); goto fail; } } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |