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:
Christian Kellner 2019-12-12 18:22:11 +01:00 committed by Tom Gundersen
parent 6a14ba40f7
commit 65996d1370

View file

@ -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",