moby: bump kernel to 6.0.0-rc4

i hope this will improve audio issues
This commit is contained in:
colin 2022-09-25 20:19:24 -07:00
parent beda2b5238
commit 592b96e436

View File

@ -3,10 +3,10 @@
with lib;
buildLinux (args // rec {
version = "5.18.14";
version = "6.0.0-rc4";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) + "-rc4" else modDirVersionArg;
# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;
@ -14,8 +14,8 @@ buildLinux (args // rec {
src = fetchFromGitHub {
owner = "megous";
repo = "linux";
# branch: orange-pi-5.18
rev = "3ef835b665191e4833ae1363245be48e96013df6";
sha256 = "sha256-nQsBXeGLZhpem1p7Vnc8z7XB354AO1mn7VTj/hH5twY=";
# branch: orange-pi-6.0
rev = "6ada3caab0b37968f1257b3ea75e5b0466a77162";
sha256 = "sha256-jIhOE0ZMuoJm7NqAEJ4OTNLHN/h8i4cOphcw3le7RSw=";
};
} // (args.argsOverride or { }))