From: Mike Frysinger Date: Thu, 24 Sep 2015 14:20:41 +0000 (-0400) Subject: custom-chroot: handle parsic/sparc ABIs X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0e502db00643da3a8c71e9f45b69feed87e22a68;p=home.git custom-chroot: handle parsic/sparc ABIs --- diff --git a/.bin/custom-chroot b/.bin/custom-chroot index fc4c710..ebc5957 100755 --- a/.bin/custom-chroot +++ b/.bin/custom-chroot @@ -38,6 +38,10 @@ get_type() { *64-bit*MIPS*) echo mips64;; *32-bit*MIPS*N32*)echo mips64;; *32-bit*MIPS*) echo mips;; + *32-bit*PA-RISC*) echo parisc;; + *64-bit*PA-RISC*) echo parisc64;; + *32-bit*SPARC*) echo sparc;; + *64-bit*SPARC*) echo sparc64;; esac }