rhel85: include dracut-config-generic in x86 UEFI boot package set

Fix the split of x86_64 boot package set into the Legacy and UEFI set.
The package `dracut-config-generic` is needed for Legacy, UEFI and
Hybrid boot mode, therefore it must be included in both package sets.

In the case of the Hybrid mode, the duplicated package is not expected
to cause any issues, because it should not appear as duplicated after
depsolving the package set using DNF.

Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
Tomas Hozza 2021-08-04 13:08:19 +02:00 committed by Ondřej Budai
parent a79e541cec
commit e37d5e5b17

View file

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