distro/rhel85: add efibootmgr to x64 boot pgk set

Explicitly include efibootmgr in the list of x86_64 uefi boot pkgs.
Normally this is included via comps groups[1] (or weak deps).

[1] https://pagure.io/fedora-comps/blob/main/f/comps-f36.xml.in#_64
This commit is contained in:
Christian Kellner 2021-08-20 17:24:30 +00:00 committed by Tom Gundersen
parent 6e70506903
commit 36084fba20

View file

@ -74,7 +74,12 @@ func x8664LegacyBootPackageSet() rpmmd.PackageSet {
// x86_64 UEFI arch-specific boot package set
func x8664UEFIBootPackageSet() rpmmd.PackageSet {
return rpmmd.PackageSet{
Include: []string{"dracut-config-generic", "grub2-efi-x64", "shim-x64"},
Include: []string{
"dracut-config-generic",
"efibootmgr",
"grub2-efi-x64",
"shim-x64",
},
}
}