mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-24 06:22:43 +00:00
kernel-install doesn't work for kernel tree-produced rpms #23
Labels
No labels
exclusivescoped
label
exclusivescoped
label2
scoped/label
testlabel
Qality
Blocker
Quality
FE
release
39
release
40
release
41
release
42
release
rawhide
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: rpms/grub2#23
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When installing a kernel RPM produced with make rpm-pkg from the upstream kernel tree, the install succeeds but /boot/vmlinuz-
kver is missing, leading to an unbootable system. See https://github.com/systemd/systemd/issues/29568 for details. We believe this applies to all systems using 254, which includes f39 and Rawhide. Reproducible: Always Steps to Reproduce: # build the kernel rpm
git clone linux.gitmake defconfig
make rpm-pkg # look at the scriptsrpm -q --scripts rpmbuild/RPMS/aarch64/kernel-6.6.0_rc5_00234_g8cb1f10d8c4b_dirty-2.aarch64.rpm # install the kernel
sudo dnf install -y rpmbuild/RPMS/aarch64/kernel-6.6.0_rc5_00234_g8cb1f10d8c4b_dirty-2.aarch64.rpm # notice how vmlinuz is missing in /boot $ ls -la /boot Actual Results: /boot/vmlinuz-$kver does not exist after the kernel RPM is installed Expected Results: /boot/vmlinuz-$kver exists after the kernel RPM is installed