diff options
Diffstat (limited to 'test-cli/test/tests/qflash.py')
-rw-r--r-- | test-cli/test/tests/qflash.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test-cli/test/tests/qflash.py b/test-cli/test/tests/qflash.py index 660e1c0..cdc4109 100644 --- a/test-cli/test/tests/qflash.py +++ b/test-cli/test/tests/qflash.py @@ -11,6 +11,9 @@ class Qflasher(unittest.TestCase): if model.find("IGEP0046") == 0: self._flash_method = "mx6" self._binlocation="/boot/" + elif model.find("IGEP0000") == 0: + self._flash_method = "mx6" + self._binlocation="/boot/" elif model.find("IGEP0034") == 0: self._flash_method = "nandti" self._binlocation = "/boot/" @@ -71,4 +74,4 @@ class Qflasher(unittest.TestCase): self.fail("failed: could not complete nandtest mtd0") else: - self.fail("failed: could not find flash method")
\ No newline at end of file + self.fail("failed: could not find flash method") |