diff options
author | Manel Caro <mcaro@iseebcn.com> | 2019-03-09 21:38:10 +0100 |
---|---|---|
committer | Manel Caro <mcaro@iseebcn.com> | 2019-03-10 11:25:47 +0100 |
commit | 7edd6c5f599533e67bdf494df13cab06d5995209 (patch) | |
tree | ed36d7f424d7535eff2bf5d089847dc1fe3a31be /test-cli/test/tests/qflash.py | |
parent | e4366bb1f2dc3a43a1289f6f76967f1005278954 (diff) | |
download | board-7edd6c5f599533e67bdf494df13cab06d5995209.zip board-7edd6c5f599533e67bdf494df13cab06d5995209.tar.gz board-7edd6c5f599533e67bdf494df13cab06d5995209.tar.bz2 |
Modify some Execution Tests and EEprom Support
- Change Board Model to IGEP0000
- Change Audio Test
- Change qbutton Test
- Change qScreen Test
- Added EEprom Support
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") |