1 #!/bin/bash 2 3 # Copy and remotely execute a binary on the elm32 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="arm" \ 11 GOLOADER="/tmp/glibc32/ld.so" \ 12 exec go_target_exec elm32 "$@" 13