Skip to content

Commit 1eb76c2

Browse files
committed
starfive visionfive2: update kernel to 6.4.0-rc3
1 parent 4cc688e commit 1eb76c2

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

starfive/visionfive/v2/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
supportedFilesystems =
55
lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
66
consoleLogLevel = lib.mkDefault 7;
7-
kernelPackages = lib.mkDefault (pkgs.callPackage ./linux-6.3.nix {
7+
kernelPackages = lib.mkDefault (pkgs.callPackage ./linux-6.4.nix {
88
inherit (config.boot) kernelPatches;
99
});
1010

starfive/visionfive/v2/linux-6.3.nix renamed to starfive/visionfive/v2/linux-6.4.nix

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
1-
{ lib, callPackage, linuxPackagesFor, kernelPatches, fetchpatch, ... }:
1+
{ lib, callPackage, linuxPackagesFor, kernelPatches, ... }:
22

33
let
4-
modDirVersion = "6.3.0-rc4";
4+
modDirVersion = "6.4.0-rc3";
55
linuxPkg = { lib, fetchFromGitHub, buildLinux, ... }@args:
66
buildLinux (args // {
77
version = "${modDirVersion}-starfive-visionfive2";
88

99
src = fetchFromGitHub {
1010
owner = "starfive-tech";
1111
repo = "linux";
12-
rev = "a57bdb1d13f93c8fc1b3c668cc74d585bb20f3f8";
13-
sha256 = "sha256-jnQnJChIGCyJt+zwGfUTsMhrwmWek/ngIM6Pae6OXuI=";
12+
rev = "b8692bacc1a14128ed561ea6ad27d6e1e2114f1d";
13+
sha256 = "sha256-d9i/LPAKt2rdUo8YEhitIgTvsBwBOzNjOzz9mPw8UUQ=";
1414
};
1515

1616
inherit modDirVersion;
1717
kernelPatches = [
18-
{
19-
patch = fetchpatch {
20-
url =
21-
"https://github.com/torvalds/linux/commit/d83806c4c0cccc0d6d3c3581a11983a9c186a138.diff";
22-
hash = "sha256-xUnEJkzQRIIBF/0GIpS0Cd+h6OdSiJlyva5xwxtleE0=";
23-
};
24-
}
2518
] ++ kernelPatches;
2619

2720
structuredExtraConfig = with lib.kernel; {

0 commit comments

Comments
 (0)