nixpkgs/pkgs/os-specific/linux/microcode/amd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
952 B
Nix
Raw Normal View History

{ lib, stdenv, linux-firmware, libarchive }:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2022-01-22 18:13:29 +01:00
pname = "amd-ucode";
version = linux-firmware.version;
src = linux-firmware;
2015-03-25 22:44:19 +01:00
sourceRoot = ".";
2023-09-21 08:49:06 +02:00
nativeBuildInputs = [ libarchive ];
2015-03-25 22:44:19 +01:00
buildPhase = ''
mkdir -p kernel/x86/microcode
find ${linux-firmware}/lib/firmware/amd-ucode -name \*.bin -print0 | sort -z |\
xargs -0 -I{} sh -c 'cat {} >> kernel/x86/microcode/AuthenticAMD.bin'
2015-03-25 22:44:19 +01:00
'';
installPhase = ''
2015-03-25 22:44:19 +01:00
mkdir -p $out
touch -d @$SOURCE_DATE_EPOCH kernel/x86/microcode/AuthenticAMD.bin
echo kernel/x86/microcode/AuthenticAMD.bin | bsdtar --uid 0 --gid 0 -cnf - -T - | bsdtar --null -cf - --format=newc @- > $out/amd-ucode.img
'';
meta = with lib; {
description = "AMD Processor microcode patch";
2020-08-31 12:25:00 +02:00
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
2015-03-25 22:44:19 +01:00
license = licenses.unfreeRedistributableFirmware;
platforms = platforms.linux;
};
}