16 lines
548 B
Nix
16 lines
548 B
Nix
# 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.
|
|
|
|
{ stdenvNoCC, kernel, nukeReferences, rootModules
|
|
, kmod, allowMissing ? false }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
name = kernel.name + "-shrunk";
|
|
builder = ./modules-closure.sh;
|
|
buildInputs = [ nukeReferences kmod ];
|
|
inherit kernel rootModules allowMissing;
|
|
allowedReferences = ["out"];
|
|
}
|