Skip to content
  • Max Reitz's avatar
    qemu-option: Add qemu_config_parse_qdict() · adf5c449
    Max Reitz authored
    
    
    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 the same type. On the command line, this looks like the following:
    
    inject-error.0.event=reftable_load,\
    inject-error.1.event=l2_load,\
    set-state.event=l1_update
    
    This would correspond to the following config file:
    
    [inject-error "inject-error.0"]
    event = reftable_load
    
    [inject-error "inject-error.1"]
    event = l2_load
    
    [set-state]
    event = l1_update
    
    Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
    Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
    adf5c449