distro/rhel85: set bootloader to none for edge

Use the new bootloader config for OSTree deployments to set the
bootloader backend to `none` since we use grub2 and BLS in all
currentlysupported architectures. In fact, not setting it to
`none`, will use the default `auto`, which will result in the
run of `grub2-mkconfig`, which is not what we want and might
even fail for us.
This commit is contained in:
Christian Kellner 2021-09-09 11:30:58 +02:00 committed by Ondřej Budai
parent f6d4228b00
commit 7a4488e5c4

View file

@ -566,7 +566,8 @@ func ostreeConfigStageOptions(repo string, readOnly bool) *osbuild.OSTreeConfigS
Repo: repo,
Config: &osbuild.OSTreeConfig{
Sysroot: &osbuild.SysrootOptions{
ReadOnly: common.BoolToPtr(readOnly),
ReadOnly: common.BoolToPtr(readOnly),
Bootloader: "none",
},
},
}