1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-11-30 19:26:21 +03:00

Merge pull request #589 from chuangzhu/sdm845-6.2.0

sdm845-mainline: kernel 5.19.16 -> 6.2.0
This commit is contained in:
Samuel Dionne-Riel 2023-04-03 19:13:23 -04:00 committed by GitHub
commit 4aa0afd840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 312 additions and 161 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,14 +5,14 @@
}:
mobile-nixos.kernel-builder rec {
version = "5.19.16";
version = "6.2.0";
configfile = ./config.aarch64;
src = fetchFromGitLab {
owner = "sdm845-mainline";
repo = "linux";
rev = "9aa25bf492928bc7a4542e87d28919c9ac36d27c"; # sdm845/5.19-release
hash = "sha256-f9eSZbP9Dx369MFRPBUIjCkILlHrkAaMa1hEK+nvK0Q=";
rev = "sdm845-${version}";
hash = "sha256-UaCBjFG0TuyZhISO6H6T0oNiBft6rYJGVHZnQgal+HQ=";
};
isModular = false;

View File

@ -128,7 +128,8 @@ in
NFT_NAT = whenAtLeast "3.13" yes;
NFT_NUMGEN = whenAtLeast "4.9" yes;
NFT_META = whenBetween "3.13" "4.17" yes;
NFT_OBJREF = whenAtLeast "4.10" yes;
# https://github.com/torvalds/linux/commit/d037abc2414b4539401e0e6aa278bedc4628ad69
NFT_OBJREF = whenBetween "4.10" "6.2" yes;
NFT_OSF = whenAtLeast "4.19" yes;
NFT_QUOTA = whenAtLeast "4.9" yes;
NFT_REDIR = whenAtLeast "3.19" yes;