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:
parent
f6d4228b00
commit
7a4488e5c4
1 changed files with 2 additions and 1 deletions
|
|
@ -566,7 +566,8 @@ func ostreeConfigStageOptions(repo string, readOnly bool) *osbuild.OSTreeConfigS
|
||||||
Repo: repo,
|
Repo: repo,
|
||||||
Config: &osbuild.OSTreeConfig{
|
Config: &osbuild.OSTreeConfig{
|
||||||
Sysroot: &osbuild.SysrootOptions{
|
Sysroot: &osbuild.SysrootOptions{
|
||||||
ReadOnly: common.BoolToPtr(readOnly),
|
ReadOnly: common.BoolToPtr(readOnly),
|
||||||
|
Bootloader: "none",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue