nixpkgs/pkgs/os-specific/linux/module-init-tools/aggregator.nix
Yury G. Kudryashov 053ea5ebe6 Fix enabling switching to kernels not already running (depmod uses uname-r as default to look for modules)
svn path=/nixpkgs/branches/stdenv-updates/; revision=10572
2008-02-10 17:35:30 +00:00

39 lines
982 B
Nix

args : with args;
let localDefs = builderDefs {
addSbinPath = true;
src = "";
buildInputs = [module_init_tools];
configureFlags = [];
} null; /* null is a terminator for sumArgs */
in with localDefs;
let
doCollect = FullDepEntry (''
ensureDir $out/lib/modules
cd $out/
for i in $moduleSources; do
cp -rfs $i/* .
chmod -R u+w .
done
rm -rf nix-support
cd lib/modules/
rm */modules.*
# linux-* will pass the new kernel version to depmod to take rather than `uname -r` (see man page)
MODULE_DIR=$PWD/ depmod -a $(basename lib/modules/2.*)
cd $out/
'') [minInit addInputs defEnsureDir];
in
stdenv.mkDerivation rec {
name = "kernel-modules";
inherit moduleSources;
builder = writeScript (name + "-builder")
(textClosure localDefs [doCollect doForceShare doPropagate]);
meta = {
description = "
A directory to hold all the modules, including those
built separately from kernel. Later mentioned directories in
moduleSources have higher priority.
";
};
}