summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorPhilipp Adolf <adolf@google.com>2021-02-11 08:49:08 +0100
committerPhilipp Adolf <adolf@google.com>2021-02-11 08:58:04 +0100
commit408ae0b13a2698925a822532b4effdf8d0abf1a6 (patch)
tree28b5abd94bb7d973487a953c8eef89e5744948d4 /lib
parent3d94e81a16c588ba9220df6e24ee92afdf5d676f (diff)
downloadnixpkgs-408ae0b13a2698925a822532b4effdf8d0abf1a6.tar
nixpkgs-408ae0b13a2698925a822532b4effdf8d0abf1a6.tar.gz
nixpkgs-408ae0b13a2698925a822532b4effdf8d0abf1a6.tar.bz2
nixpkgs-408ae0b13a2698925a822532b4effdf8d0abf1a6.tar.lz
nixpkgs-408ae0b13a2698925a822532b4effdf8d0abf1a6.tar.xz
nixpkgs-408ae0b13a2698925a822532b4effdf8d0abf1a6.tar.zst
nixpkgs-408ae0b13a2698925a822532b4effdf8d0abf1a6.zip
lib: fix typo in platforms.nix
In 9c213398b312e0f0bb9cdf05090fd20223a82ad0 kernelPreferBuiltin was
moved/renamed to linux-kernel.preferBuiltin. However, for
armv7l-hf-multiplatform the new option was written with an uppercase P,
which made the kernel build process ignore it.
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/platforms.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/platforms.nix b/lib/systems/platforms.nix
index f399c1873f5..3bf90cd0caf 100644
--- a/lib/systems/platforms.nix
+++ b/lib/systems/platforms.nix
@@ -300,7 +300,7 @@ rec {
       baseConfig = "multi_v7_defconfig";
       DTB = true;
       autoModules = true;
-      PreferBuiltin = true;
+      preferBuiltin = true;
       target = "zImage";
       extraConfig = ''
         # Serial port for Raspberry Pi 3. Upstream forgot to add it to the ARMv7 defconfig.