From 128c0442981bfdf31906864b1e1551ec4d529e9c Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Mon, 11 Sep 2023 19:28:18 -0400 Subject: [PATCH] starfive visionfive2: update kernel to 6.5.0 --- starfive/visionfive/v2/linux-6.5.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/starfive/visionfive/v2/linux-6.5.nix b/starfive/visionfive/v2/linux-6.5.nix index 33a9caa..a279305 100644 --- a/starfive/visionfive/v2/linux-6.5.nix +++ b/starfive/visionfive/v2/linux-6.5.nix @@ -1,7 +1,7 @@ { lib, callPackage, linuxPackagesFor, kernelPatches, ... }: let - modDirVersion = "6.5.0-rc1"; + modDirVersion = "6.5.0"; linuxPkg = { lib, fetchFromGitHub, buildLinux, ... }@args: buildLinux (args // { version = "${modDirVersion}-starfive-visionfive2"; @@ -9,8 +9,8 @@ let src = fetchFromGitHub { owner = "starfive-tech"; repo = "linux"; - rev = "67e8df01b875afd312a7d2ab77f56a62f39dd6d9"; - hash = "sha256-H+INnZTrfeCLmxPYbQEu3658/e5/Wz/Y5Ann2+lU6WQ="; + rev = "0dfeb6ace464f0c455a9508815bb9f70760d6faf"; + hash = "sha256-ZDMvEhnJtbyCVNI/WbE80k7ZWOldF491mgx6K/iPgdE="; }; inherit modDirVersion kernelPatches;