[bootloader] Fix up schema

This commit is contained in:
Adriaan de Groot 2020-06-16 16:16:07 +02:00
parent 066acdbbc6
commit 0cd8940363

View File

@ -4,15 +4,30 @@ $id: https://calamares.io/schemas/bootloader
additionalProperties: false
type: object
properties:
efiBootLoader: { type: string, required: true }
kernel: { type: string, required: true }
img: { type: string, required: true }
fallback: { type: str }
timeout: { type: str }
bootloaderEntryName: { type: str }
kernelLine: { type: str }
fallbackKernelLine: { type: str }
grubInstall: { type: string, required: true }
grubMkconfig: { type: string, required: true }
grubCfg: { type: string, required: true }
efiBootloaderId: { type: str }
efiBootLoader: { type: string }
kernel: { type: string }
img: { type: string }
fallback: { type: string }
timeout: { type: string } # Inserted verbatim
bootloaderEntryName: { type: string }
kernelLine: { type: string }
fallbackKernelLine: { type: string }
# Programs
grubInstall: { type: string }
grubMkconfig: { type: string }
grubCfg: { type: string }
grubProbe: { type: string }
efiBootMgr: { type: string }
efiBootloaderId: { type: string }
installEFIFallback: { type: boolean }
required:
- efiBootLoader
- kernel
- img
- grubInstall
- grubMkconfig
- grubCfg
- grubProbe