ena: Init at 20160629
This adds the Amazon Elastic Network Adapter kernel module required by EC2 x1.* instances.
This commit is contained in:
@@ -0,0 +1,34 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub, kernel, kmod }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ena-20160629-${kernel.version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "amzn";
|
||||||
|
repo = "amzn-drivers";
|
||||||
|
rev = "b594ac1ea9e0c70e8e95803a0cfd9f5f06ac097e";
|
||||||
|
sha256 = "03w6xgv3lfn28n38mj9cdi3px5zjyrbxnflpd3ggivkv6grf9fp7";
|
||||||
|
};
|
||||||
|
|
||||||
|
configurePhase =
|
||||||
|
''
|
||||||
|
cd kernel/linux/ena
|
||||||
|
substituteInPlace Makefile --replace '/lib/modules/$(BUILD_KERNEL)' ${kernel.dev}/lib/modules/${kernel.modDirVersion}
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase =
|
||||||
|
''
|
||||||
|
strip -S ena.ko
|
||||||
|
dest=$out/lib/modules/${kernel.modDirVersion}/misc
|
||||||
|
mkdir -p $dest
|
||||||
|
cp ena.ko $dest/
|
||||||
|
xz $dest/ena.ko
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Amazon Elastic Network Adapter (ENA) driver for Linux";
|
||||||
|
homepage = https://github.com/amzn/amzn-drivers;
|
||||||
|
license = lib.licenses.gpl2;
|
||||||
|
maintainers = [ lib.maintainers.eelco ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -11027,6 +11027,8 @@ in
|
|||||||
|
|
||||||
ixgbevf = callPackage ../os-specific/linux/ixgbevf {};
|
ixgbevf = callPackage ../os-specific/linux/ixgbevf {};
|
||||||
|
|
||||||
|
ena = callPackage ../os-specific/linux/ena {};
|
||||||
|
|
||||||
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
|
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
|
||||||
|
|
||||||
frandom = callPackage ../os-specific/linux/frandom { };
|
frandom = callPackage ../os-specific/linux/frandom { };
|
||||||
|
|||||||
Reference in New Issue
Block a user