assembler/qemu: declare bootloader options
Include the `bootloader` options in the STAGE_OPTS json schema.
Commit 8fcf7d5c4… introduce the `bootloader` option but the
corresponding schema entry was omitted.
This commit is contained in:
parent
6a14ba40f7
commit
65996d1370
1 changed files with 11 additions and 0 deletions
|
|
@ -38,6 +38,17 @@ STAGE_OPTS = """
|
|||
"required": ["pttype", "partitions"]
|
||||
}],
|
||||
"properties": {
|
||||
"bootloader": {
|
||||
"description": "Options specific to the bootloader",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"description": "What bootloader to install",
|
||||
"type": "string",
|
||||
"enum": ["grub2"]
|
||||
}
|
||||
},
|
||||
},
|
||||
"format": {
|
||||
"description": "Image file format to use",
|
||||
"type": "string",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue