| Submitter | Nathan Baum |
|---|---|
| Date | Oct. 16, 2009, 6:39 p.m. |
| Message ID | <1255718349.25855.58.camel@localhost.localdomain> |
| Download | mbox | patch |
| Permalink | /patch/36267/ |
| State | New |
| Headers | show |
Comments
On 10/16/09 20:39, Nathan Baum wrote: > It seems like the typical use-case for -writeconfig will be for > "upgrading" to the config file system. Might it be more useful for qemu > to exit after writing the config? Yes, good idea. cheers, Gerd
Patch
--- a/vl.c +++ b/vl.c @@ -5546,7 +5546,7 @@ int main(int argc, char **argv, char **envp) } qemu_config_write(fp); fclose(fp); - break; + exit(0); } } }