2008-03-17 11:40:47 +01:00
|
|
|
# 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.
|
|
|
|
|
2009-09-01 23:56:46 +02:00
|
|
|
{ stdenv, kernel, nukeReferences, rootModules
|
|
|
|
, module_init_tools, allowMissing ? false }:
|
2008-03-17 11:40:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = kernel.name + "-shrunk";
|
|
|
|
builder = ./modules-closure.sh;
|
2009-09-01 23:56:46 +02:00
|
|
|
buildInputs = [nukeReferences];
|
2009-04-29 16:32:04 +02:00
|
|
|
inherit kernel rootModules module_init_tools allowMissing;
|
2008-03-17 11:40:47 +01:00
|
|
|
allowedReferences = ["out"];
|
|
|
|
}
|