From: Vitaly Kuznetsov on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2175#note_1271653...
Sorry about that! I wasn't exactly sure what's the buildroot for ELN. In CS9, systemd-stub (linuxx64.efi.stub) lives in 'systemd-udev' but in F38 it has traveled to 'systemd-boot-unsigned' so we have
+%if 0%{?fedora} > 37 +BuildRequires: systemd-boot-unsigned +%endif
apparently, this doesn't work for ELN. I guess something like the following should do the job +%if 0%{?fedora} > 37 || 0%{?eln} +BuildRequires: systemd-boot-unsigned +%endif
do we need a new MR or can we just fix things up here?