32cd6f0e30
Removes several patches added in d915eb8
which are now included in-tree.
Notable commits, excluding aforementioned patches:
+ linux/ena: Add rx_overruns to ena-com structs
+ linux/ena: Report RX overrun errors via net device stats
+ linux/ena: Fix incorrect dma sync when SWIOTLB is on
full changelog: https://github.com/amzn/amzn-drivers/compare/ena_linux_2.8.6...ena_linux_2.8.9
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, kernel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.8.9";
|
|
name = "ena-${version}-${kernel.version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "amzn";
|
|
repo = "amzn-drivers";
|
|
rev = "ena_linux_${version}";
|
|
hash = "sha256-9Csrq9wM7Q99qPj7+NlnQgP6KcciNHMbAAb+Wg7eYAU=";
|
|
};
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
makeFlags = kernel.makeFlags;
|
|
|
|
# linux 3.12
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
cd kernel/linux/ena
|
|
export ENA_PHC_INCLUDE=1
|
|
substituteInPlace Makefile --replace '/lib/modules/$(BUILD_KERNEL)' ${kernel.dev}/lib/modules/${kernel.modDirVersion}
|
|
runHook postConfigure
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
$STRIP -S ena.ko
|
|
dest=$out/lib/modules/${kernel.modDirVersion}/misc
|
|
mkdir -p $dest
|
|
cp ena.ko $dest/
|
|
xz $dest/ena.ko
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Amazon Elastic Network Adapter (ENA) driver for Linux";
|
|
homepage = "https://github.com/amzn/amzn-drivers";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ eelco sielicki ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|