From 09a126df4ffe46e146cd92a2ec6a6a43d01ecf24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iago=20L=C3=B3pez=20Galeiras?= Date: Mon, 19 Mar 2018 15:32:31 +0100 Subject: [PATCH] Disable ARM for now We'll be focusing on x86_64 for now. --- build_library/toolchain_util.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build_library/toolchain_util.sh b/build_library/toolchain_util.sh index 000bc00aa5..f6f6db2d70 100644 --- a/build_library/toolchain_util.sh +++ b/build_library/toolchain_util.sh @@ -15,7 +15,6 @@ TOOLCHAIN_PKGS=( # compiler to build a full native toolchain. Packages are not uploaded. declare -A CROSS_PROFILES CROSS_PROFILES["x86_64-cros-linux-gnu"]="coreos:coreos/amd64/generic" -CROSS_PROFILES["aarch64-cros-linux-gnu"]="coreos:coreos/arm64/generic" # Map board names to CHOSTs and portage profiles. This is the # definitive list, there is assorted code new and old that either @@ -24,9 +23,6 @@ declare -A BOARD_CHOSTS BOARD_PROFILES BOARD_CHOSTS["amd64-usr"]="x86_64-cros-linux-gnu" BOARD_PROFILES["amd64-usr"]="coreos:coreos/amd64/generic" -BOARD_CHOSTS["arm64-usr"]="aarch64-cros-linux-gnu" -BOARD_PROFILES["arm64-usr"]="coreos:coreos/arm64/generic" - BOARD_NAMES=( "${!BOARD_CHOSTS[@]}" ) # Declare the above globals as read-only to avoid accidental conflicts. @@ -43,7 +39,6 @@ declare -r \ # Usage: get_portage_arch chost get_portage_arch() { case "$1" in - aarch64*) echo arm64;; alpha*) echo alpha;; arm*) echo arm;; hppa*) echo hppa;;