From 70014459098d0aab86a13287738389dbd36d9939 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Sun, 23 Apr 2023 20:44:31 -0700 Subject: lib/systems: add mips64[el] entries to qemuArch This commit adds `mips64el` to the `qemuArch` table. --- lib/systems/default.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/systems/default.nix b/lib/systems/default.nix index b2cb8848f08b..e58fb5ed1e66 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -143,6 +143,7 @@ rec { else if final.isS390 && !final.isS390x then null else if final.isx86_64 then "x86_64" else if final.isx86 then "i386" + else if final.isMips64 then "mips64${lib.optionalString final.isLittleEndian "el"}" else final.uname.processor; # Name used by UEFI for architectures. -- cgit 1.4.1