ixgbevf: Init at 3.2.2
This driver is necessary for Enhanced Networking on most EC2 instance types.
This commit is contained in:
parent
4ba794ed89
commit
04eb7492dc
26
pkgs/os-specific/linux/ixgbevf/default.nix
Normal file
26
pkgs/os-specific/linux/ixgbevf/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -11009,6 +11009,8 @@ in
|
|||||||
|
|
||||||
e1000e = callPackage ../os-specific/linux/e1000e {};
|
e1000e = callPackage ../os-specific/linux/e1000e {};
|
||||||
|
|
||||||
|
ixgbevf = callPackage ../os-specific/linux/ixgbevf {};
|
||||||
|
|
||||||
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
|
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
|
||||||
|
|
||||||
frandom = callPackage ../os-specific/linux/frandom { };
|
frandom = callPackage ../os-specific/linux/frandom { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user