mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
ena: Init at 20160629
This adds the Amazon Elastic Network Adapter kernel module required by EC2 x1.* instances.
This commit is contained in:
parent
5789f5875f
commit
8710672225
34
pkgs/os-specific/linux/ena/default.nix
Normal file
34
pkgs/os-specific/linux/ena/default.nix
Normal file
@ -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 {};
|
||||
|
||||
ena = callPackage ../os-specific/linux/ena {};
|
||||
|
||||
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
|
||||
|
||||
frandom = callPackage ../os-specific/linux/frandom { };
|
||||
|
Loading…
Reference in New Issue
Block a user