86f66e8f16
- these are vaguely derived from the schema's written by artoo@manjaro.org, but totally re-done for JSON-Schema
36 lines
933 B
YAML
36 lines
933 B
YAML
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
---
|
|
$schema: https://json-schema.org/schema#
|
|
$id: https://calamares.io/schemas/bootloader
|
|
additionalProperties: false
|
|
type: object
|
|
properties:
|
|
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
|