coreboot-utils: support subset on aarch64-linux
This commit is contained in:
parent
eb532cffac
commit
45b47f0c99
1 changed files with 4 additions and 3 deletions
|
@ -54,8 +54,8 @@ let
|
||||||
intelmetool = generic {
|
intelmetool = generic {
|
||||||
pname = "intelmetool";
|
pname = "intelmetool";
|
||||||
meta.description = "Dump interesting things about Management Engine";
|
meta.description = "Dump interesting things about Management Engine";
|
||||||
buildInputs = [ pciutils zlib ];
|
|
||||||
meta.platforms = [ "x86_64-linux" "i686-linux" ];
|
meta.platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
|
buildInputs = [ pciutils zlib ];
|
||||||
};
|
};
|
||||||
cbfstool = generic {
|
cbfstool = generic {
|
||||||
pname = "cbfstool";
|
pname = "cbfstool";
|
||||||
|
@ -68,6 +68,7 @@ let
|
||||||
superiotool = generic {
|
superiotool = generic {
|
||||||
pname = "superiotool";
|
pname = "superiotool";
|
||||||
meta.description = "User-space utility to detect Super I/O of a mainboard and provide detailed information about the register contents of the Super I/O";
|
meta.description = "User-space utility to detect Super I/O of a mainboard and provide detailed information about the register contents of the Super I/O";
|
||||||
|
meta.platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
buildInputs = [ pciutils zlib ];
|
buildInputs = [ pciutils zlib ];
|
||||||
};
|
};
|
||||||
ectool = generic {
|
ectool = generic {
|
||||||
|
@ -79,8 +80,8 @@ let
|
||||||
inteltool = generic {
|
inteltool = generic {
|
||||||
pname = "inteltool";
|
pname = "inteltool";
|
||||||
meta.description = "Provides information about Intel CPU/chipset hardware configuration (register contents, MSRs, etc)";
|
meta.description = "Provides information about Intel CPU/chipset hardware configuration (register contents, MSRs, etc)";
|
||||||
buildInputs = [ pciutils zlib ];
|
|
||||||
meta.platforms = [ "x86_64-linux" "i686-linux" ];
|
meta.platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
|
buildInputs = [ pciutils zlib ];
|
||||||
};
|
};
|
||||||
amdfwtool = generic {
|
amdfwtool = generic {
|
||||||
pname = "amdfwtool";
|
pname = "amdfwtool";
|
||||||
|
@ -119,7 +120,7 @@ in
|
||||||
utils // {
|
utils // {
|
||||||
coreboot-utils = (buildEnv {
|
coreboot-utils = (buildEnv {
|
||||||
name = "coreboot-utils-${version}";
|
name = "coreboot-utils-${version}";
|
||||||
paths = lib.attrValues utils;
|
paths = lib.filter (lib.meta.availableOn stdenv.hostPlatform) (lib.attrValues utils);
|
||||||
postBuild = "rm -rf $out/sbin";
|
postBuild = "rm -rf $out/sbin";
|
||||||
}) // {
|
}) // {
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
Loading…
Reference in a new issue