aboutsummaryrefslogtreecommitdiff
path: root/go/chromeos/push_glibc
diff options
context:
space:
mode:
Diffstat (limited to 'go/chromeos/push_glibc')
-rwxr-xr-xgo/chromeos/push_glibc4
1 files changed, 2 insertions, 2 deletions
diff --git a/go/chromeos/push_glibc b/go/chromeos/push_glibc
index 8211d9d5..7528284c 100755
--- a/go/chromeos/push_glibc
+++ b/go/chromeos/push_glibc
@@ -13,7 +13,7 @@ set -e -o pipefail
for target in "$@"
do
echo -n "pushing glibc to ${target} ... "
- case "$(ssh -i ${HOME}/.ssh/testing_rsa ${target} uname -m)" in
+ case "$(ssh ${target} uname -m)" in
x86_64)
glibc="/usr/x86_64-cros-linux-gnu/lib64"
loader="ld-linux-x86-64.so.2"
@@ -23,7 +23,7 @@ do
aarch64)
glibc="/usr/aarch64-cros-linux-gnu/lib64"
loader="ld-linux-aarch64.so.1"
- glibc32="/usr/armv7a-cros-linux-gnueabihf/lib"
+ glibc32="/usr/armv7a-cros-linux-gnueabi/lib"
loader32="ld-linux-armhf.so.3"
;;
*)