stages/qemu: fix 'compat' option
The option got renamed to `compat` (and moved into the `qemu` object) when the stage was extracted from the `qemu` assembler; but the code, taken from the assembler, still used the old `qcow2_compat` name for the option. Fix this.
This commit is contained in:
parent
7be475151d
commit
21ad9fa399
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ SCHEMA_2 = r"""
|
|||
|
||||
def qcow2_arguments(options):
|
||||
argv = ["-c"]
|
||||
compat = options.get("qcow2_compat")
|
||||
compat = options.get("compat")
|
||||
|
||||
if compat:
|
||||
argv += ["-o", f"compat={compat}"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue