kmod: add patch to allow searching for modules in several directories

This commit is contained in:
Nikolay Amiantov
2016-08-16 00:19:25 +03:00
parent 5b296a1470
commit 131fca0a85
2 changed files with 146 additions and 37 deletions
+21 -9
View File
@@ -1,25 +1,37 @@
{ stdenv, fetchurl, xz, zlib, pkgconfig, libxslt }:
{ stdenv, lib, fetchurl, autoreconfHook, xz, zlib, pkgconfig, libxslt }:
stdenv.mkDerivation rec {
name = "kmod-22";
let
systems = [ "current-system" "booted-system" ];
modulesDirs = lib.concatMapStringsSep ":" (x: "/run/${x}/kernel-modules/lib/modules") systems;
in stdenv.mkDerivation rec {
name = "kmod-${version}";
version = "22";
src = fetchurl {
url = "mirror://kernel/linux/utils/kernel/kmod/${name}.tar.xz";
sha256 = "10lzfkmnpq6a43a3gkx7x633njh216w0bjwz31rv8a1jlgg1sfxs";
};
buildInputs = [ pkgconfig libxslt xz /* zlib */ ];
nativeBuildInputs = [ autoreconfHook pkgconfig libxslt ];
buildInputs = [ xz /* zlib */ ];
configureFlags = [ "--sysconfdir=/etc" "--with-xz" /* "--with-zlib" */ ];
configureFlags = [
"--sysconfdir=/etc"
"--with-xz"
"--with-modulesdirs=${modulesDirs}"
# "--with-zlib"
];
patches = [ ./module-dir.patch ];
postInstall = ''
ln -s kmod $out/bin/lsmod
mkdir -p $out/sbin
for prog in rmmod insmod modinfo modprobe depmod; do
ln -sv $out/bin/kmod $out/sbin/$prog
for prog in rmmod insmod lsmod modinfo modprobe depmod; do
ln -sv $out/bin/kmod $out/bin/$prog
done
# Backwards compatibility
ln -s bin $out/sbin
'';
meta = {