summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorIonut Nechita <ionut_n2001@yahoo.com>2023-03-29 08:21:45 +0300
committerIonut Nechita <ionut_n2001@yahoo.com>2023-03-29 08:25:16 +0300
commitd645bba8c80a377271e0d0d53617738fa4a00aed (patch)
treef8801f45b3342987dfb5678b9005b46afea1a110 /pkgs/os-specific
parent4929fad3c7e11acfdb53d70cabf69f254000a54d (diff)
downloadnixpkgs-d645bba8c80a377271e0d0d53617738fa4a00aed.tar
nixpkgs-d645bba8c80a377271e0d0d53617738fa4a00aed.tar.gz
nixpkgs-d645bba8c80a377271e0d0d53617738fa4a00aed.tar.bz2
nixpkgs-d645bba8c80a377271e0d0d53617738fa4a00aed.tar.lz
nixpkgs-d645bba8c80a377271e0d0d53617738fa4a00aed.tar.xz
nixpkgs-d645bba8c80a377271e0d0d53617738fa4a00aed.tar.zst
nixpkgs-d645bba8c80a377271e0d0d53617738fa4a00aed.zip
android: with new kernel versions this option is no longer necessary
Description:
 - ANDROID = { optional = true; tristate = whenBetween "5.0" "5.19" "y";};
 - starting from 5.20 and 6.0, this parameter no longer exists.

Change-Id: I34d6638e01eb539de34afe2152ff5927a317b68a
Signed-off-by: Ionut Nechita <ionut_n2001@yahoo.com>
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/common-config.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix
index faa98ee8fe3..bee04112ad6 100644
--- a/pkgs/os-specific/linux/kernel/common-config.nix
+++ b/pkgs/os-specific/linux/kernel/common-config.nix
@@ -966,7 +966,7 @@ let
       FSL_MC_UAPI_SUPPORT = mkIf (stdenv.hostPlatform.system == "aarch64-linux") (whenAtLeast "5.12" yes);
 
       ASHMEM =                 { optional = true; tristate = whenBetween "5.0" "5.18" "y";};
-      ANDROID =                { optional = true; tristate = whenAtLeast "5.0" "y";};
+      ANDROID =                { optional = true; tristate = whenBetween "5.0" "5.19" "y";};
       ANDROID_BINDER_IPC =     { optional = true; tristate = whenAtLeast "5.0" "y";};
       ANDROID_BINDERFS =       { optional = true; tristate = whenAtLeast "5.0" "y";};
       ANDROID_BINDER_DEVICES = { optional = true; freeform = whenAtLeast "5.0" "binder,hwbinder,vndbinder";};