Skip to content
Snippets Groups Projects
Commit dbcf9524 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

deleting tmp.rbf after flashing

parent 72203807
No related branches found
No related tags found
No related merge requests found
...@@ -378,6 +378,13 @@ class Commands: ...@@ -378,6 +378,13 @@ class Commands:
else: else:
return True return True
# remove tmp.rbf
def rm_rbf(self):
lcu_list = self.make_lcu_list()
cmd = "rm /tmp/tmp.rbf"
for lcu in lcu_list:
self.run_command(cmd,lcu)
#function for the FLASH Button on the general tab. #function for the FLASH Button on the general tab.
def flash_rbf(self): def flash_rbf(self):
if self.rbfvar.get().endswith('.rbf'): if self.rbfvar.get().endswith('.rbf'):
...@@ -440,3 +447,7 @@ class Commands: ...@@ -440,3 +447,7 @@ class Commands:
self.remu() self.remu()
self.regmap() self.regmap()
self.rm_rbf()
# delete tmp.rbf here
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment