Skip to content

Commit

Permalink
Merge pull request #69055 from dtzWill/feature/fwts-efi-runtime
Browse files Browse the repository at this point in the history
linuxPackages.fwts-efi-runtime: init
  • Loading branch information
dtzWill committed Oct 7, 2019
2 parents 0cf6a50 + c866366 commit b51fbeb
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/os-specific/linux/fwts/module.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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -15929,6 +15929,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;
Expand Down

0 comments on commit b51fbeb

Please sign in to comment.