summaryrefslogtreecommitdiff
path: root/test-cli/test/flashers/flashmemory.py
diff options
context:
space:
mode:
authorHector Fernandez <hector@iatec.biz>2020-03-17 18:27:59 +0100
committerHector Fernandez <hector@iatec.biz>2020-03-19 21:31:03 +0100
commitf013d0a76976a52fce979036df404826dcbf385b (patch)
tree63ad0c65b36f5bc9114d900ebbed1215a85b3bf1 /test-cli/test/flashers/flashmemory.py
parenta85534544fad3c51d8af8d65e7fde6cb5d07978b (diff)
downloadboard-f013d0a76976a52fce979036df404826dcbf385b.zip
board-f013d0a76976a52fce979036df404826dcbf385b.tar.gz
board-f013d0a76976a52fce979036df404826dcbf385b.tar.bz2
Added return values after flashing, to be saved in the DB.
Diffstat (limited to 'test-cli/test/flashers/flashmemory.py')
-rw-r--r--test-cli/test/flashers/flashmemory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-cli/test/flashers/flashmemory.py b/test-cli/test/flashers/flashmemory.py
index ac59be5..c7267c6 100644
--- a/test-cli/test/flashers/flashmemory.py
+++ b/test-cli/test/flashers/flashmemory.py
@@ -2,7 +2,7 @@ import sh
def flash_memory(imagefile):
- print("Sart programming Nand memory...")
+ print("Start programming Nand memory...")
p = sh.bash("/usr/bin/igep-flash", "--skip-nandtest", "--image", "/opt/firmware/" + imagefile)
if p.exit_code != 0:
print("Flasher: Could not complete flashing task.")