2015-03-25 18:39:58 +00:00
|
|
|
{ stdenv, fetchurl, libarchive }:
|
2012-02-01 22:05:21 +00:00
|
|
|
|
2015-03-25 18:39:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-02-01 22:05:21 +00:00
|
|
|
name = "microcode-intel-${version}";
|
2017-01-30 10:35:51 +00:00
|
|
|
version = "20161104";
|
2013-09-04 12:07:58 +00:00
|
|
|
|
2012-02-01 22:05:21 +00:00
|
|
|
src = fetchurl {
|
2017-01-30 10:35:51 +00:00
|
|
|
url = "http://downloadmirror.intel.com/26400/eng/microcode-${version}.tgz";
|
|
|
|
sha256 = "1lg3bvznvwcxf66k038c57brkcxfva8crpnzj5idmczr5yk4q5bh";
|
2012-02-01 22:05:21 +00:00
|
|
|
};
|
|
|
|
|
2015-03-25 18:39:58 +00:00
|
|
|
buildInputs = [ libarchive ];
|
2013-09-04 12:22:24 +00:00
|
|
|
|
2012-02-01 22:05:21 +00:00
|
|
|
sourceRoot = ".";
|
|
|
|
|
2012-02-05 20:44:19 +00:00
|
|
|
buildPhase = ''
|
2015-03-25 18:39:58 +00:00
|
|
|
gcc -O2 -Wall -o intel-microcode2ucode ${./intel-microcode2ucode.c}
|
|
|
|
./intel-microcode2ucode microcode.dat
|
2012-02-05 20:44:19 +00:00
|
|
|
'';
|
|
|
|
|
2012-02-01 22:05:21 +00:00
|
|
|
installPhase = ''
|
2015-03-25 18:39:58 +00:00
|
|
|
mkdir -p $out kernel/x86/microcode
|
|
|
|
mv microcode.bin kernel/x86/microcode/GenuineIntel.bin
|
|
|
|
echo kernel/x86/microcode/GenuineIntel.bin | bsdcpio -o -H newc -R 0:0 > $out/intel-ucode.img
|
2012-02-01 22:05:21 +00:00
|
|
|
'';
|
|
|
|
|
2015-03-25 18:39:58 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-19 18:04:47 +00:00
|
|
|
homepage = http://www.intel.com/;
|
2012-02-01 22:05:21 +00:00
|
|
|
description = "Microcode for Intel processors";
|
2015-03-25 21:28:32 +00:00
|
|
|
license = licenses.unfreeRedistributableFirmware;
|
2015-03-25 18:39:58 +00:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.linux;
|
2012-02-01 22:05:21 +00:00
|
|
|
};
|
2012-08-11 18:10:06 +00:00
|
|
|
}
|