bb0210e327
This update is supposed to give us support for the 5.17 kernel according to the 2.7.0 release notes here: https://github.com/amzn/amzn-drivers/releases/tag/ena_linux_2.7.0 Unfortunately, in practice, it does not build with `linuxPackages_5_17`, so I left that marked as broken. It does work for 5.15 though, so we can use that, woo!
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, kernel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.7.1";
|
|
name = "ena-${version}-${kernel.version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "amzn";
|
|
repo = "amzn-drivers";
|
|
rev = "ena_linux_${version}";
|
|
sha256 = "sha256-JkGzmmsAmLvL9e+bg58H79GNHgsqydK/79VoWEq5/Mc=";
|
|
};
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
makeFlags = kernel.makeFlags;
|
|
|
|
# linux 3.12
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
cd kernel/linux/ena
|
|
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 = [ maintainers.eelco ];
|
|
platforms = platforms.linux;
|
|
broken = kernel.kernelAtLeast "5.17";
|
|
};
|
|
}
|