diff options
| author | Tim Steinbach <tim@nequissimus.com> | 2019-11-28 09:20:15 -0500 |
|---|---|---|
| committer | Linus Heckemann <git@sphalerite.org> | 2019-12-15 14:36:18 +0100 |
| commit | fbe321e66693c3abd4aef618cc92beff959d3c8b (patch) | |
| tree | e878647f6f23bd2032318282e0e2c6892c7c8f62 | |
| parent | fixup! virtualbox: 6.0.12 -> 6.0.14 (diff) | |
| download | nixpkgs-fbe321e66693c3abd4aef618cc92beff959d3c8b.tar.gz | |
linux: Add CRYPTO_AEGIS128_SIMD for aarch64
See comments: https://github.com/NixOS/nixpkgs/commit/9b67ea9106102d882f53d62890468071900b9647
(cherry picked from commit 0e670a2e678ae8d23694d20848c558a3f17251f9)
Fixes #75650.
| -rw-r--r-- | pkgs/os-specific/linux/kernel/common-config.nix | 3 |
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 9facc04ddfca..35b0cb9232f1 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -724,6 +724,9 @@ let } // optionalAttrs (stdenv.hostPlatform.system == "aarch64-linux") { # Enables support for the Allwinner Display Engine 2.0 SUN8I_DE2_CCU = whenAtLeast "4.13" yes; + + # See comments on https://github.com/NixOS/nixpkgs/commit/9b67ea9106102d882f53d62890468071900b9647 + CRYPTO_AEGIS128_SIMD = no; }; }; in |
