Update unpack.py

This commit is contained in:
gutosie
2022-02-23 21:08:21 +02:00
committed by GitHub
parent 33f0e34130
commit c3a0abf058

View File

@@ -151,7 +151,7 @@ class InstallImage(Screen, ConfigListScreen):
self.PiconR = ConfigYesNo(default=False)
self.Kodi = ConfigYesNo(default=False)
self.BlackHole = ConfigYesNo(default=False)
if getCPUtype() == 'MIPS' and getBoxHostName() != 'dm500hd' or getBoxHostName() != 'dm800se' or getBoxHostName() != 'dm800' or getBoxHostName() != 'dm8000':
if getCPUtype() == 'MIPS' and not "dm500hd" in line and not "dm800se" in line and not "dm800" in line and not "dm8000" in line :
self.Nandsim = ConfigYesNo(default=True)
else:
self.Nandsim = ConfigYesNo(default=False)