linuxPackages.fwts-efi-runtime: init

wip/yesman
Will Dietz 5 years ago
parent 58f090cc7b
commit c8663660dc
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02
  1. 31
      pkgs/os-specific/linux/fwts/module.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,31 @@
{ stdenv, fwts, kernel }:
stdenv.mkDerivation rec {
pname = "fwts-efi-runtime";
version = "${fwts.version}-${kernel.version}";
inherit (fwts) src;
sourceRoot = "source/efi_runtime";
postPatch = ''
substituteInPlace Makefile --replace \
'/lib/modules/$(KVER)/build' \
'${kernel.dev}/lib/modules/${kernel.modDirVersion}/build'
'';
nativeBuildInputs = kernel.moduleBuildDependencies;
hardeningDisable = [ "pic" ];
makeFlags = [
"INSTALL_MOD_PATH=${placeholder "out"}"
];
meta = with stdenv.lib; {
inherit (fwts.meta) homepage license;
description = fwts.meta.description + "(efi-runtime kernel module)";
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.linux;
};
}

@ -15808,6 +15808,8 @@ in
evdi = callPackage ../os-specific/linux/evdi { };
fwts-efi-runtime = callPackage ../os-specific/linux/fwts/module.nix { };
hyperv-daemons = callPackage ../os-specific/linux/hyperv-daemons { };
e1000e = if stdenv.lib.versionOlder kernel.version "4.10" then callPackage ../os-specific/linux/e1000e {} else null;

Loading…
Cancel
Save