lol

Merge pull request #234295 from yu-re-ka/coreboot-utils-aarch64

coreboot-utils: support subset on aarch64-linux

authored by

Weijia Wang and committed by
GitHub
34bd1845 9fdb5f98

+4 -3
+4 -3
pkgs/tools/misc/coreboot-utils/default.nix
··· 54 intelmetool = generic { 55 pname = "intelmetool"; 56 meta.description = "Dump interesting things about Management Engine"; 57 - buildInputs = [ pciutils zlib ]; 58 meta.platforms = [ "x86_64-linux" "i686-linux" ]; 59 }; 60 cbfstool = generic { 61 pname = "cbfstool"; ··· 68 superiotool = generic { 69 pname = "superiotool"; 70 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"; 71 buildInputs = [ pciutils zlib ]; 72 }; 73 ectool = generic { ··· 79 inteltool = generic { 80 pname = "inteltool"; 81 meta.description = "Provides information about Intel CPU/chipset hardware configuration (register contents, MSRs, etc)"; 82 - buildInputs = [ pciutils zlib ]; 83 meta.platforms = [ "x86_64-linux" "i686-linux" ]; 84 }; 85 amdfwtool = generic { 86 pname = "amdfwtool"; ··· 119 utils // { 120 coreboot-utils = (buildEnv { 121 name = "coreboot-utils-${version}"; 122 - paths = lib.attrValues utils; 123 postBuild = "rm -rf $out/sbin"; 124 }) // { 125 inherit version;
··· 54 intelmetool = generic { 55 pname = "intelmetool"; 56 meta.description = "Dump interesting things about Management Engine"; 57 meta.platforms = [ "x86_64-linux" "i686-linux" ]; 58 + buildInputs = [ pciutils zlib ]; 59 }; 60 cbfstool = generic { 61 pname = "cbfstool"; ··· 68 superiotool = generic { 69 pname = "superiotool"; 70 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"; 71 + meta.platforms = [ "x86_64-linux" "i686-linux" ]; 72 buildInputs = [ pciutils zlib ]; 73 }; 74 ectool = generic { ··· 80 inteltool = generic { 81 pname = "inteltool"; 82 meta.description = "Provides information about Intel CPU/chipset hardware configuration (register contents, MSRs, etc)"; 83 meta.platforms = [ "x86_64-linux" "i686-linux" ]; 84 + buildInputs = [ pciutils zlib ]; 85 }; 86 amdfwtool = generic { 87 pname = "amdfwtool"; ··· 120 utils // { 121 coreboot-utils = (buildEnv { 122 name = "coreboot-utils-${version}"; 123 + paths = lib.filter (lib.meta.availableOn stdenv.hostPlatform) (lib.attrValues utils); 124 postBuild = "rm -rf $out/sbin"; 125 }) // { 126 inherit version;