From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 54264138010 for ; Thu, 13 Sep 2012 05:05:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 334A221C024; Thu, 13 Sep 2012 05:05:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 028AB21C024 for ; Thu, 13 Sep 2012 05:05:27 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 368F233C3F6 for ; Thu, 13 Sep 2012 05:05:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 0AF1DE543C for ; Thu, 13 Sep 2012 05:05:25 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1347512864.58a3489d1e49a758fa7097438c4c9dfa76f2d71e.vapier@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 58a3489d1e49a758fa7097438c4c9dfa76f2d71e X-VCS-Branch: master Date: Thu, 13 Sep 2012 05:05:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2214e5ee-ab42-468b-99f4-8f983920c65d X-Archives-Hash: b37d4437fb726667cb1298305688fed8 commit: 58a3489d1e49a758fa7097438c4c9dfa76f2d71e Author: Mike Frysinger gentoo org> AuthorDate: Thu Sep 13 05:07:44 2012 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Sep 13 05:07:44 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=58a3489d crossdev: handle aarch64 Signed-off-by: Mike Frysinger gentoo.org> --- crossdev | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/crossdev b/crossdev index b6ad814..d5afcb7 100755 --- a/crossdev +++ b/crossdev @@ -108,7 +108,7 @@ parse_target() { if [[ ${CTARGET} == "help" ]] ; then cat <<-EOF Supported Architectures: - - alpha - arm / armeb + - alpha - arm / armeb / aarch64 - hppa (parisc) - ia64 - i386 / i486 / i586 / i686 (x86) - m68k - mips / mipsel / mips64 / mips64el @@ -164,6 +164,7 @@ parse_target() { # Figure out an acceptable portage ARCH for this target case ${CTARGET} in + aarch64*) TARCH=arm;; alpha*) TARCH=alpha;; arm*) TARCH=arm;; hppa*) TARCH=hppa;;