From 2fa225a36abbdbc6758e19a6259e278f9c39ad8e Mon Sep 17 00:00:00 2001 From: Ihor Solodrai Date: Tue, 2 Dec 2025 15:10:52 -0800 Subject: [PATCH] scripts: switch from "stable" to "mainline" kernel Signed-off-by: Ihor Solodrai --- scripts/download-latest-linux-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download-latest-linux-release.sh b/scripts/download-latest-linux-release.sh index a9ccaf6..11f03a6 100755 --- a/scripts/download-latest-linux-release.sh +++ b/scripts/download-latest-linux-release.sh @@ -6,7 +6,7 @@ sudo apt install -y curl jq tar xz-utils # pick the first stable release, it's usually the newest url=$(curl -s https://www.kernel.org/releases.json \ - | jq -r '[.releases[] | select(.moniker == "stable")][0].source') + | jq -r '[.releases[] | select(.moniker == "mainline")][0].source') curl -LO "$url" tar -xf $(basename "$url")