Skip to content

Commit

Permalink
Merge pull request #110828 from r-burns/ppc64-riscv-linux-arch
Browse files Browse the repository at this point in the history
lib/systems: fix linuxArch for power + riscv
  • Loading branch information
Ericson2314 authored Jan 26, 2021
2 parents 68953d0 + 8baac2a commit 054f792
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/systems/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ rec {
else if final.isx86_32 then "i386"
else if final.isx86_64 then "x86_64"
else if final.isMips then "mips"
else if final.isPower then "powerpc"
else if final.isRiscV then "riscv"
else final.parsed.cpu.name;

qemuArch =
Expand Down

0 comments on commit 054f792

Please sign in to comment.