Re: [Qemu-devel] [PATCH v6 05/22] qemu-option: Add qemu_config_parse_qdict()

2013-12-19 Thread Eric Blake
On 12/19/2013 12:47 PM, Max Reitz wrote: > This function basically parses command-line options given as a QDict > replacing a config file. > > For instance, the QDict {"section.opt1": 42, "section.opt2": 23} > corresponds to the config file: > > [section] > opt1 = 42 > opt2 = 23 Thanks for the e

[Qemu-devel] [PATCH v6 05/22] qemu-option: Add qemu_config_parse_qdict()

2013-12-19 Thread Max Reitz
This function basically parses command-line options given as a QDict replacing a config file. For instance, the QDict {"section.opt1": 42, "section.opt2": 23} corresponds to the config file: [section] opt1 = 42 opt2 = 23 It is possible to specify multiple sections and also multiple sections of t