makeInitrd: Make prepend optional

This commit is contained in:
William A. Kennington III 2015-03-25 15:20:23 -07:00
parent 985e15007d
commit 21cd86f2d9

View File

@ -396,7 +396,7 @@ let
inherit lib;
};
makeInitrd = { contents, compressor ? "gzip -9n", prepend }:
makeInitrd = { contents, compressor ? "gzip -9n", prepend ? [ ] }:
import ../build-support/kernel/make-initrd.nix {
inherit stdenv perl perlArchiveCpio cpio contents ubootChooser compressor prepend;
};