From: Mike Frysinger Date: Thu, 24 Sep 2015 14:17:22 +0000 (-0400) Subject: custom-chroot: handle mips ABIs X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=95ef1dd251a4204efbbf25dd6e22e7d4c313d65e;p=home.git custom-chroot: handle mips ABIs --- diff --git a/.bin/custom-chroot b/.bin/custom-chroot index 13ad020..fc4c710 100755 --- a/.bin/custom-chroot +++ b/.bin/custom-chroot @@ -35,6 +35,9 @@ get_type() { *64-bit*PowerPC*) echo ppc64;; *32-bit*S/390*) echo s390;; *64-bit*S/390*) echo s390x;; + *64-bit*MIPS*) echo mips64;; + *32-bit*MIPS*N32*)echo mips64;; + *32-bit*MIPS*) echo mips;; esac }