From 65996d1370ce92a300f9a6d2cc8748f656bb6f2d Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Thu, 12 Dec 2019 18:22:11 +0100 Subject: [PATCH] assembler/qemu: declare bootloader options MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include the `bootloader` options in the STAGE_OPTS json schema. Commit 8fcf7d5c4… introduce the `bootloader` option but the corresponding schema entry was omitted. --- assemblers/org.osbuild.qemu | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/assemblers/org.osbuild.qemu b/assemblers/org.osbuild.qemu index ab973c82..2a11aa67 100755 --- a/assemblers/org.osbuild.qemu +++ b/assemblers/org.osbuild.qemu @@ -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",