1 #!/bin/bash 2 3 # Copy and remotely execute a binary on the chell device. 4 # 5 # For this to work, the corresponding entry must exist in 6 # ~/.ssh/config and the device must already be setup for 7 # password-less authentication. See setup instructions at 8 # http://go/chromeos-toolchain-team/go-toolchain 9 10 GOOS="linux" GOARCH="amd64" \ 11 GOLOADER="/tmp/glibc/ld.so" \ 12 exec go_target_exec chell "$@" 13