From 95ef1dd251a4204efbbf25dd6e22e7d4c313d65e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 24 Sep 2015 10:17:22 -0400 Subject: [PATCH] custom-chroot: handle mips ABIs --- .bin/custom-chroot | 3 +++ 1 file changed, 3 insertions(+) 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 } -- 2.39.5