Hello Everyone, hello Satpong,
my dm920 does now start, with image 20240707.
I had to make 2 minor changes in /usr/lib/enigma2/python/Components/NimManager.py
The variable 'model' seems to be unknown in 2 sections.
I added 'model = BoxInfo.getItem("machine")' 2 times, see here:
1st change:
...
class NIM:
def __init__(self, slot, type, description, has_outputs=True, internally_connectable=None, multi_type={}, frontend_id=None, i2c=None, is_empty=False, supports_blind_scan=False, is_fbc=[0, 0, 0], number_of_slots=0):
nim_types = ["DVB-S", "DVB-S2", "DVB-S2X", "DVB-C", "DVB-T", "DVB-T2", "ATSC"]
if type and type not in nim_types:
print("[NIM] warning: unknown NIM type %s, not using." % type)
type = None
model = BoxInfo.getItem("machine") # 20240710 ws
self.slot = slot
...
2nd change:
...
def enumerateNIMs(self):
# enum available NIMs. This is currently very dreambox-centric and uses the /proc/bus/nim_sockets interface.
# the result will be stored into nim_slots.
# the content of /proc/bus/nim_sockets looks like:
# NIM Socket 0:
# Type: DVB-S
# Name: BCM4501 DVB-S2 NIM (internal)
# NIM Socket 1:
# Type: DVB-S
# Name: BCM4501 DVB-S2 NIM (internal)
# NIM Socket 2:
# Type: DVB-T
# Name: Philips TU1216
# NIM Socket 3:
# Type: DVB-S
# Name: Alps BSBE1 702A
#
# Type will be either "DVB-S", "DVB-S2", "DVB-T", "DVB-C" or None.
# nim_slots is an array which has exactly one entry for each slot, even for empty ones.
self.nim_slots = []
model = BoxInfo.getItem("machine") # 20240710 ws
try:
nimfile = open("/proc/bus/nim_sockets")
except IOError:
return
...
After this , enigma2 starts reliably here !
(However, rtc setting by disabling IPv6 is still necessary here)
And the best of all:
So far, i could'nt configure the fbc tuners in a way that made the box do recordings/zapping/etc. reliable on a sat connection, as it was with the old NN2 images.
In NN2, the 2 fbc twin tuners are shown as 4 tuners (A1, B1, A2, B2)
With the openpli/satpong images til 20240629, i saw 16 tuners (A..P), and no configuration was reliable, so i used this box only for streaming.
But now, there are also shown 4 Tuners (A,B,I,J)
I will try the next days if recording/zapping/etc is better now.
If so, the openpli/satpong images would be a perfect replacement for NN2, at least for me.
Thanks for your attention