Skip to content

Commit c36b488

Browse files
committed
[FlashManager] add detection Slot F for chkrootmb Systems
1 parent 4ac8555 commit c36b488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/python/Screens/FlashManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ def findImageFiles(path):
667667
cmdArgs = ["-r%s" % mtdRootFS, "-a"]
668668
elif BoxInfo.getItem("model") in ("dm820", "dm7080"): # Temp solution ofgwrite auto detection not ready.
669669
cmdArgs = ["-rmmcblk0p1"] if rootSubDir is None else ["-r%s" % mtdRootFS, "-c%s" % currentSlot, "-m%s" % self.slotCode]
670-
elif MultiBoot.canMultiBoot() and not self.slotCode == "R": # Receiver with SD card MultiBoot if (rootSubDir) is None.
670+
elif MultiBoot.canMultiBoot() and not (self.slotCode == "R" or self.slotCode == "F"): # Receiver with SD card MultiBoot if (rootSubDir) is None.
671671
if BoxInfo.getItem("chkrootmb"):
672672
cmdArgs = ["-r%s" % mtdRootFS, "-c%s" % currentSlot, "-m%s" % self.slotCode]
673673
else:

0 commit comments

Comments
 (0)