summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinvoke_session_debian13
1 files changed, 11 insertions, 2 deletions
diff --git a/invoke_session_debian b/invoke_session_debian
index 01e0dc8..180fc8a 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -39,13 +39,22 @@ echo -n ${ip_addr}.lab
echo ""
echo "Then:"
echo "1) Copy compiler into place on that target"
-echo "2) Run benchmark.sh -b BENCHMARK -i COMPILER [OPTIONAL ARGS...] TARGET"
+echo "2) ssh git@dev-private.git.linaro.org #to update known_hosts"
+echo "3) export LAVA_SERVER=your_lava_username:your_lava_auth_token@validation.linaro.org/RPC2/"
+echo "4) benchmark.sh -b BENCHMARK -i COMPILER [OPTIONAL ARGS...] TARGET > stdout 2>stderr &"
+echo "5) disown %1 #or other number, if the above command wasn't job 1"
+echo "6) exit #or tail stdout/stderr, if you want to keep an eye on what's happening"
+echo "7) Once the benchmark has built, you should be able to see another LAVA job running."
+echo " When that LAVA job completes, you can ssh back into this target to collect results."
+echo " Results will be in /root/work."
echo ""
echo "For example:"
echo "wget http://releases.linaro.org/14.11/components/toolchain/binaries/arm-linux-gnueabihf/gcc-linaro-4.9-2014.11-x86_64_arm-linux-gnueabihf.tar.xz"
echo "tar xf gcc-linaro-4.9-2014.11-x86_64_arm-linux-gnueabihf.tar.xz"
+echo "ssh git@dev-private.git.linaro.org"
echo "export LAVA_SERVER=bogden:(my_lava_auth_token)@validation.linaro.org/RPC2/"
-echo "benchmark.sh -b fakebench -i ${HOME}/gcc-linaro-4.9-2014.11-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc -a int juno-a57"
+echo "benchmark.sh -b fakebench -i ${HOME}/gcc-linaro-4.9-2014.11-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc -a int juno-a57 >stdout 2>stderr &"
+echo "disown %1"
echo "*********************************************************************************************"
echo ""
echo ""