ixgbevf: Init at 3.2.2

This driver is necessary for Enhanced Networking on most EC2 instance
types.
This commit is contained in:
Eelco Dolstra 2016-07-07 17:20:15 +02:00
parent 4ba794ed89
commit 04eb7492dc
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchurl, kernel, kmod }:
stdenv.mkDerivation rec {
name = "ixgbevf-${version}-${kernel.version}";
version = "3.2.2";
src = fetchurl {
url = "mirror://sourceforge/e1000/ixgbevf-${version}.tar.gz";
sha256 = "1i6ry3vd77190sxb47xhbz3v30gighwax6prav4ggs3q80a389c8";
};
configurePhase = ''
cd src
makeFlagsArray+=(KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build INSTALL_MOD_PATH=$out MANDIR=/share/man)
substituteInPlace common.mk --replace /sbin/depmod ${kmod}/bin/depmod
'';
enableParallelBuilding = true;
meta = {
description = "Intel 82599 Virtual Function Driver";
homepage = https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/;
license = stdenv.lib.licenses.gpl2;
priority = 20;
};
}

View file

@ -11009,6 +11009,8 @@ in
e1000e = callPackage ../os-specific/linux/e1000e {};
ixgbevf = callPackage ../os-specific/linux/ixgbevf {};
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
frandom = callPackage ../os-specific/linux/frandom { };