How can I install surface-kernel on rawhide, or at min, trick dnf into installing the 6.12 kernel from f41? I changed the string on the repo to just accept f41 but it had a dep issue.
-Nate
How can I install surface-kernel on rawhide, or at min, trick dnf into installing the 6.12 kernel from f41? I changed the string on the repo to just accept f41 but it had a dep issue.
-Nate
This would be a method of installing kernels from F41:
# Add Fedora 41 Updates repo
sudo dnf config-manager addrepo --id=fedora-41-updates --set=name='Fedora 41 Updates' --set=metalink='https://mirrors.fedoraproject.org/metalink?repo=updates-released-f41&arch=$basearch'
# Disable the repo to avoid conflicts
sudo dnf config-manager setopt fedora-41-updates.enabled=0
# Verify kernel version in F41
dnf list installed kernel --showduplicates --enablerepo=fedora-41-updates
# Install kernel from F41
sudo dnf downgrade kernel --enablerepo=fedora-41-updates
# Optional: Lock kernel packages to the installed versions
sudo dnf versionlock kernel kernel-core kernel-modules kernel-modules-core # add other kernel packages if installed