]> git.wh0rd.org - home.git/commitdiff
custom-chroot: handle mips ABIs
authorMike Frysinger <vapier@gentoo.org>
Thu, 24 Sep 2015 14:17:22 +0000 (10:17 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 24 Sep 2015 14:17:22 +0000 (10:17 -0400)
.bin/custom-chroot

index 13ad020a3a054785b3062ad03d99dc9f04495e73..fc4c7106a1f107ccea6412e3946e3dbb0dadbfb0 100755 (executable)
@@ -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
 }