diff options
Diffstat (limited to 'test-cli/test/flashers/flasher_sopa0000.py')
-rw-r--r-- | test-cli/test/flashers/flasher_sopa0000.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test-cli/test/flashers/flasher_sopa0000.py b/test-cli/test/flashers/flasher_sopa0000.py deleted file mode 100644 index 818be91..0000000 --- a/test-cli/test/flashers/flasher_sopa0000.py +++ /dev/null @@ -1,13 +0,0 @@ -from test.helpers.syscmd import SysCommand - - -def flash_sopa0000(): - print("Sart programming Nand memory...") - str_cmd = "/usr/bin/igep-flash --skip-nandtest --image /opt/firmware/demo-ti-image-*-*.tar* >/dev/null 2>&1" - sync_command = SysCommand("sync_command", str_cmd) - if sync_command.execute() != 0: - print("Flasher: Could not complete flashing task.") - return 1 - else: - print("Flasher: NAND memory flashed succesfully.") - return 0 |