[bootloader] Fix up schema

main
Adriaan de Groot 5 years ago
parent 066acdbbc6
commit 0cd8940363

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

Loading…
Cancel
Save