systems: correct qemu architectures
ppc64le and ppc64 are different targets in the configure script. We can’t use the same one. TODO: canonicalize similar ones based on qemu’s configure script.
This commit is contained in:
parent
23560ea057
commit
5eea658778
|
@ -78,10 +78,9 @@ rec {
|
||||||
else if final.isx86 then "i386"
|
else if final.isx86 then "i386"
|
||||||
else {
|
else {
|
||||||
"powerpc" = "ppc";
|
"powerpc" = "ppc";
|
||||||
|
"powerpcle" = "ppc";
|
||||||
"powerpc64" = "ppc64";
|
"powerpc64" = "ppc64";
|
||||||
"powerpc64le" = "ppc64";
|
"powerpc64le" = "ppc64le";
|
||||||
"mips64" = "mips";
|
|
||||||
"mipsel64" = "mipsel";
|
|
||||||
}.${final.parsed.cpu.name} or final.parsed.cpu.name;
|
}.${final.parsed.cpu.name} or final.parsed.cpu.name;
|
||||||
|
|
||||||
emulator = pkgs: let
|
emulator = pkgs: let
|
||||||
|
|
Loading…
Reference in New Issue