mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
intel-ucode: Generate an early loadable microcode image
This commit is contained in:
parent
0d186a88a5
commit
8baaff95e6
1 changed files with 15 additions and 12 deletions
|
@ -1,31 +1,34 @@
|
|||
{ stdenv, fetchurl, microcode2ucode }:
|
||||
{ stdenv, fetchurl, libarchive }:
|
||||
|
||||
let version = "20140624"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "microcode-intel-${version}";
|
||||
version = "20150121";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloadmirror.intel.com/23984/eng/microcode-${version}.tgz";
|
||||
sha256 = "0dza0bdlx7q88yhnynvfgkrhgf7ycrq6mlp6hwnpp2j3h33jlrml";
|
||||
url = "http://downloadmirror.intel.com/24661/eng/microcode-${version}.tgz";
|
||||
sha256 = "1cznv3f25cxkwxdc930ab0ifvq0c76fryppadi4p26a2pf9knd93";
|
||||
};
|
||||
|
||||
buildInputs = [ microcode2ucode ];
|
||||
buildInputs = [ libarchive ];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
buildPhase = ''
|
||||
intel-microcode2ucode microcode.dat
|
||||
gcc -O2 -Wall -o intel-microcode2ucode ${./intel-microcode2ucode.c}
|
||||
./intel-microcode2ucode microcode.dat
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib/firmware
|
||||
cp -r intel-ucode "$out/lib/firmware/"
|
||||
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
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.intel.com/;
|
||||
description = "Microcode for Intel processors";
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue