nixpkgs/pkgs/build-support/kernel/modules-closure.nix

16 lines
548 B
Nix
Raw Normal View History

# Given a kernel build (with modules in $kernel/lib/modules/VERSION),
# produce a module tree in $out/lib/modules/VERSION that contains only
# the modules identified by `rootModules', plus their dependencies.
# Also generate an appropriate modules.dep.
2016-10-03 19:17:24 +00:00
{ stdenvNoCC, kernel, nukeReferences, rootModules
, kmod, allowMissing ? false }:
2016-10-03 19:17:24 +00:00
stdenvNoCC.mkDerivation {
name = kernel.name + "-shrunk";
builder = ./modules-closure.sh;
2016-02-01 16:39:24 +00:00
buildInputs = [ nukeReferences kmod ];
inherit kernel rootModules allowMissing;
allowedReferences = ["out"];
}