os-specific/linux/e1000e: added recent a version of the e1000e kernel module
That module is required to support modern Intel Gigabit Ethernet cards. svn path=/nixpkgs/trunk/; revision=29297
This commit is contained in:
parent
8d0794f5e2
commit
d0ffef49bb
29
pkgs/os-specific/linux/e1000e/default.nix
Normal file
29
pkgs/os-specific/linux/e1000e/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl, kernel }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "e1000e-1.5.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://downloads.sourceforge.net/e1000/e1000e-1.5.1.tar.gz";
|
||||||
|
sha256 = "0nzjlarpqcpm5y112n3vzra4qv32hiygpfkk10y8g4nln4adhqsw";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ kernel ];
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
cd src
|
||||||
|
kernel_version=$( cd ${kernel}/lib/modules && echo * )
|
||||||
|
sed -i -e 's|/lib/modules|${kernel}/lib/modules|' Makefile
|
||||||
|
export makeFlags="BUILD_KERNEL=$kernel_version"
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -v -D -m 644 e1000e.ko "$out/lib/modules/$kernel_version/kernel/drivers/net/e1000e/e1000e.ko"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Linux kernel drivers for Intel Ethernet adapters and LOMs (LAN On Motherboard)";
|
||||||
|
homepage = "http://e1000.sf.net/";
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
};
|
||||||
|
}
|
@ -5578,6 +5578,8 @@ let
|
|||||||
#libtool = libtool_1_5; # libtool 2 causes a fork bomb
|
#libtool = libtool_1_5; # libtool 2 causes a fork bomb
|
||||||
};
|
};
|
||||||
|
|
||||||
|
e1000e = callPackage ../os-specific/linux/e1000e {};
|
||||||
|
|
||||||
exmap = callPackage ../os-specific/linux/exmap {
|
exmap = callPackage ../os-specific/linux/exmap {
|
||||||
inherit (gtkLibs) gtkmm;
|
inherit (gtkLibs) gtkmm;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user