2013-08-09 15:55:45 +00:00
|
|
|
{ stdenv, kmod, modules, buildEnv }:
|
2008-01-04 17:02:12 +00:00
|
|
|
|
2009-04-20 19:13:40 +00:00
|
|
|
buildEnv {
|
2008-05-08 15:36:19 +00:00
|
|
|
name = "kernel-modules";
|
|
|
|
|
2009-04-20 19:13:40 +00:00
|
|
|
paths = modules;
|
|
|
|
|
|
|
|
postBuild =
|
|
|
|
''
|
|
|
|
source ${stdenv}/setup
|
2013-08-09 15:55:45 +00:00
|
|
|
|
2018-04-05 14:58:50 +00:00
|
|
|
if ! test -d "$out/lib/modules"; then
|
|
|
|
echo "No modules found."
|
|
|
|
# To support a kernel without modules
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2009-04-20 19:13:40 +00:00
|
|
|
kernelVersion=$(cd $out/lib/modules && ls -d *)
|
|
|
|
if test "$(echo $kernelVersion | wc -w)" != 1; then
|
|
|
|
echo "inconsistent kernel versions: $kernelVersion"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-09 15:55:45 +00:00
|
|
|
|
2009-04-20 19:13:40 +00:00
|
|
|
echo "kernel version is $kernelVersion"
|
|
|
|
|
2016-10-11 09:40:48 +00:00
|
|
|
shopt -s extglob
|
|
|
|
|
2009-04-20 19:13:40 +00:00
|
|
|
# Regenerate the depmod map files. Be sure to pass an explicit
|
|
|
|
# kernel version number, otherwise depmod will use `uname -r'.
|
|
|
|
if test -w $out/lib/modules/$kernelVersion; then
|
2016-10-11 09:40:48 +00:00
|
|
|
rm -f $out/lib/modules/$kernelVersion/modules.!(builtin*|order*)
|
2016-08-14 09:57:45 +00:00
|
|
|
${kmod}/bin/depmod -b $out -a $kernelVersion
|
2009-04-20 19:13:40 +00:00
|
|
|
fi
|
|
|
|
'';
|
2008-01-04 17:02:12 +00:00
|
|
|
}
|