summary refs log tree commit diff
path: root/pkgs/build-support/kernel/modules-closure.nix
blob: 86015a8b182c0495fc7abc64bdb9a49e41f55472 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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.

{stdenv, kernel, rootModules, module_init_tools}:

stdenv.mkDerivation {
  name = kernel.name + "-shrunk";
  builder = ./modules-closure.sh;
  inherit kernel rootModules module_init_tools;
  allowedReferences = ["out"];
}