Installing akmod with the correct kernel version
I am trying to install akmod using the akmod module but the version is always mismatching in bazzite. The problem is the bazzite-41 akmod are tagged to latest kernel while stable bazzite are usually pretty behind, akmod have kernel tags but im not sure how to do it correctly
Solution:Jump to solution
i got it working, i use the copy modules and containerfile to manually specify the tag
```yml
modules:
- type: copy
from: ghcr.io/ublue-os/akmods-extra:KERNEL_VERSION...
GitHub
feat: use kernel version as tags in akmod · Issue #354 · blue-build...
If using bazzite as a base, installing akmod using the current module will almost likely drift because bazzite move pretty fast. The kernel version in bazzite-41 tag is usually newer than the stabl...
2 Replies
from what i understand the process should go something like this
1. Somehow get the kernel version
2. Copy rpm from akmods:{KERNEL_VERSION}
3. Install rpm
but im not sure how to do the step 1
Solution
i got it working, i use the copy modules and containerfile to manually specify the tag
the kernel version is obtained using skopeo in github action and substituted using sed before bluebuild action with skip_checkout: true
it works but pretty jank imo, i hope it could be implemented in bluebuild so i opened https://github.com/blue-build/cli/issues/354
GitHub
feat: use kernel version as tags in akmod · Issue #354 · blue-build...
If using bazzite as a base, installing akmod using the current module will almost likely drift because bazzite move pretty fast. The kernel version in bazzite-41 tag is usually newer than the stabl...