forked from mirrors/nixpkgs
coreboot-utils: limit intel-tools to x86-platforms
This commit is contained in:
parent
519d8d2444
commit
8ec9e73da6
|
@ -53,6 +53,7 @@ let
|
|||
pname = "intelmetool";
|
||||
meta.description = "Dump interesting things about Management Engine";
|
||||
buildInputs = [ pciutils zlib ];
|
||||
meta.platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
};
|
||||
cbfstool = generic {
|
||||
pname = "cbfstool";
|
||||
|
@ -77,6 +78,7 @@ let
|
|||
pname = "inteltool";
|
||||
meta.description = "Provides information about Intel CPU/chipset hardware configuration (register contents, MSRs, etc)";
|
||||
buildInputs = [ pciutils zlib ];
|
||||
meta.platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
};
|
||||
amdfwtool = generic {
|
||||
pname = "amdfwtool";
|
||||
|
|
Loading…
Reference in a new issue