mirror of https://github.com/cutefishos/calamares
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
569 B
YAML
16 lines
569 B
YAML
---
|
|
$schema: https://json-schema.org/schema#
|
|
$id: https://calamares.io/schemas/grubcfg
|
|
additionalProperties: false
|
|
type: object
|
|
properties:
|
|
"overwrite": { type: boolean, default: false }
|
|
"defaults":
|
|
type: map
|
|
mapping:
|
|
"GRUB_TIMEOUT": { type: int, required: true }
|
|
"GRUB_DEFAULT": { type: string, required: true }
|
|
"GRUB_DISABLE_SUBMENU": { type: boolean, default: true }
|
|
"GRUB_TERMINAL_OUTPUT": { type: string, required: true }
|
|
"GRUB_DISABLE_RECOVERY": { type: boolean, default: true }
|