summary refs log tree commit diff
path: root/pkgs/build-support/kernel
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-11-03 15:55:09 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-11-05 15:11:12 +0200
commitb50693d16ca394690bfec52ddd9eaf43d346ca8b (patch)
tree689b4a6b19a65baa5e2eddd378f52332eb4066f5 /pkgs/build-support/kernel
parentcf610f8a48dd10be105881393fae5857c8cbfd71 (diff)
downloadnixpkgs-b50693d16ca394690bfec52ddd9eaf43d346ca8b.tar
nixpkgs-b50693d16ca394690bfec52ddd9eaf43d346ca8b.tar.gz
nixpkgs-b50693d16ca394690bfec52ddd9eaf43d346ca8b.tar.bz2
nixpkgs-b50693d16ca394690bfec52ddd9eaf43d346ca8b.tar.lz
nixpkgs-b50693d16ca394690bfec52ddd9eaf43d346ca8b.tar.xz
nixpkgs-b50693d16ca394690bfec52ddd9eaf43d346ca8b.tar.zst
nixpkgs-b50693d16ca394690bfec52ddd9eaf43d346ca8b.zip
kernel, initrd: Remove legacy ubootChooser
Diffstat (limited to 'pkgs/build-support/kernel')
-rw-r--r--pkgs/build-support/kernel/make-initrd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/kernel/make-initrd.nix b/pkgs/build-support/kernel/make-initrd.nix
index 70727f9b49d..6fcdc93b104 100644
--- a/pkgs/build-support/kernel/make-initrd.nix
+++ b/pkgs/build-support/kernel/make-initrd.nix
@@ -12,13 +12,13 @@
 # `contents = {object = ...; symlink = /init;}' is a typical
 # argument.
 
-{ stdenv, perl, cpio, contents, ubootChooser, compressor, prepend
+{ stdenv, perl, cpio, contents, compressor, prepend, ubootTools
 , hostPlatform
 }:
 
 let
   inputsFun = ubootName : [ perl cpio ]
-    ++ stdenv.lib.optional (ubootName != null) [ (ubootChooser ubootName) ];
+    ++ stdenv.lib.optional (ubootName != null) ubootTools;
   makeUInitrdFun = ubootName : (ubootName != null);
 in
 stdenv.mkDerivation {