ostree.config: add bootloader config option

Ability to set the bootloader backend that OSTree should use. NB:
normally this should be set to `none` since in modern distros and
bootloaders the BLS is used and the BLS snippets are generated on
`none` but none of the of the specific bootloader tools are run,
like `grub2-mkconfig` for grub.

Update the fedora image manifest to use that config setting.
This commit is contained in:
Christian Kellner 2021-09-09 11:03:12 +02:00 committed by Achilleas Koutsou
parent 187681f17d
commit 7ec305a343
3 changed files with 12 additions and 2 deletions

View file

@ -870,7 +870,8 @@
"repo": "/ostree/repo",
"config": {
"sysroot": {
"readonly": true
"readonly": true,
"bootloader": "none"
}
}
}

View file

@ -282,7 +282,8 @@
"repo": "/ostree/repo",
"config": {
"sysroot": {
"readonly": true
"readonly": true,
"bootloader": "none"
}
}
}