Skip to content

Commit

Permalink
feat: update bluefin stable kernel pin to 6.12.9
Browse files Browse the repository at this point in the history
Note: 6.12.9 is the current coreos-testing kernel and is known to have
fixed the AMD suspend bug.

We're switching the "bluefin:stable" builds to use this kernel since it
allows us to ship not-broken kernel and not-broken nvidia.

We don't have a pre-existing build for Fedora 40, so we can't ship a fix
for "bluefin:gts" at this time.
  • Loading branch information
bsherman committed Jan 29, 2025
1 parent 79f3078 commit 9b97913
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-image-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
brand_name: ["bluefin"]
with:
kernel_pin: 6.11.8-300.fc41.x86_64 ## This is where kernels get pinned.
kernel_pin: 6.12.9-200.fc41.x86_64 ## This is where kernels get pinned.
brand_name: ${{ matrix.brand_name }}
stream_name: stable

Expand Down
5 changes: 4 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,11 @@ build $image="bluefin" $tag="latest" $flavor="main" rechunk="0" ghcr="0" pipelin
# AKMODS Flavor and Kernel Version
if [[ "${flavor}" =~ hwe ]]; then
akmods_flavor="bazzite"
elif [[ "${tag}" =~ stable|gts ]]; then
elif [[ "${tag}" =~ gts ]]; then
akmods_flavor="coreos-stable"
elif [[ "${tag}" =~ stable ]]; then
# TODO: revert this to "coreos-stable" once 6.12.9 kernel is released for coreos-stable images
akmods_flavor="coreos-testing"
elif [[ "${tag}" =~ beta ]]; then
akmods_flavor="coreos-testing"
else
Expand Down

0 comments on commit 9b97913

Please sign in to comment.