From c3a0abf0586b2bcf24916479ef4db4703a3a9ee1 Mon Sep 17 00:00:00 2001 From: gutosie Date: Wed, 23 Feb 2022 21:08:21 +0200 Subject: [PATCH] Update unpack.py --- NeoBoot/unpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NeoBoot/unpack.py b/NeoBoot/unpack.py index f7e78aa..f7fe562 100644 --- a/NeoBoot/unpack.py +++ b/NeoBoot/unpack.py @@ -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)