summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2019-06-24 14:53:01 -0400
committerGitHub <noreply@github.com>2019-06-24 14:53:01 -0400
commit7c819989f99962d01aef9513f3a131ffe385ab38 (patch)
treecd2a1f6aafba53f9988a6397c8c09b749cf58737 /pkgs/os-specific/linux/kernel
parentc4a12ee9c038b17785783564c7218450f67475df (diff)
parent5d92d16b49ee851dfbed7fb8b47e172ab1104a20 (diff)
downloadnixpkgs-7c819989f99962d01aef9513f3a131ffe385ab38.tar
nixpkgs-7c819989f99962d01aef9513f3a131ffe385ab38.tar.gz
nixpkgs-7c819989f99962d01aef9513f3a131ffe385ab38.tar.bz2
nixpkgs-7c819989f99962d01aef9513f3a131ffe385ab38.tar.lz
nixpkgs-7c819989f99962d01aef9513f3a131ffe385ab38.tar.xz
nixpkgs-7c819989f99962d01aef9513f3a131ffe385ab38.tar.zst
nixpkgs-7c819989f99962d01aef9513f3a131ffe385ab38.zip
Merge pull request #63147 from samueldr/aarch64/graphics-fixes
aarch64: misc. graphical boot fixes
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/common-config.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix
index e731b6a13ca..855f854b111 100644
--- a/pkgs/os-specific/linux/kernel/common-config.nix
+++ b/pkgs/os-specific/linux/kernel/common-config.nix
@@ -710,6 +710,9 @@ let
       # Bump the maximum number of CPUs to support systems like EC2 x1.*
       # instances and Xeon Phi.
       NR_CPUS = freeform "384";
+    } // optionalAttrs (stdenv.hostPlatform.system == "aarch64-linux") {
+      # Enables support for the Allwinner Display Engine 2.0
+      SUN8I_DE2_CCU = whenAtLeast "4.13" yes;
     };
   };
 in