fw_lab_triage_helper: don't assume testing key

This change removes the assumption that the user has setup their
environment to automatically use the testing key when ssh'ing to lab
devices.  Additionally, some small output formatting tweaks are
included.

one-off script used for prepping the key representation:

from __future__ import print_function

import binascii

with open("/home/kmshelton/trunk/chromite/ssh_keys/testing_rsa", "r") as f:
    byte = f.read(1)
    count = 0
    row = 0
    while byte != "":
        print("\\x" + binascii.hexlify(byte), end='')
        byte = f.read(1)
        count+=1
        if (count == 22 and row != 0) or count == 24:
            print("")
            count = 0
            row += 1

BUG=None
TEST=ran against faft-cr50 pool DUTs.

Change-Id: Ibbd9513156d5bad8f5e10497a3fabe90ccb84233
Reviewed-on: https://chromium-review.googlesource.com/1779544
Tested-by: Kevin Shelton <kmshelton@chromium.org>
Commit-Ready: Kevin Shelton <kmshelton@chromium.org>
Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
Reviewed-by: Kevin Shelton <kmshelton@chromium.org>
1 file changed