Commit b62bc38a authored by Raito Bezarius's avatar Raito Bezarius
Browse files

lib/systems/inspect: add `isSparc64`

This is useful to distinguish between SPARC64 and SPARC whatever,
because SPARC64 do support compressed kernels.
parent f5c054af
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -48,6 +48,7 @@ rec {
    isRiscV64      = { cpu = { family = "riscv"; bits = 64; }; };
    isRx           = { cpu = { family = "rx"; }; };
    isSparc        = { cpu = { family = "sparc"; }; };
    isSparc64      = { cpu = { family = "sparc"; bits = 64; }; };
    isWasm         = { cpu = { family = "wasm"; }; };
    isMsp430       = { cpu = { family = "msp430"; }; };
    isVc4          = { cpu = { family = "vc4"; }; };