Jump to content


Photo

VU Solo 2 OpenPli 8.1 Unicable II Probleme


  • Please log in to reply
11 replies to this topic

#1 shinji82

  • Senior Member
  • 66 posts

0
Neutral

Posted 30 August 2021 - 18:25

Hallo zusammen,

 

habe auf meine VU's überall OpenPLi 8.1 neugeflast und neu eingerichtet. Bei meinen Vu Solo2 Boxen habe ich jedoch ein Problem.

 

An LNB2 (Tuner B) hängt eine Sat Leitung zu einem Inverto IDLU-32-UL40-UNBOO-OPP. Wenn ich nun LNB1 (Tuner A) die Einstellungen so vornehme wie im Anhang und dann speichere wir Tuner A deaktiviert. Tuner A ist verbunden mit Tuner B (Loopthrough) funktioniert so unter OpenPLi 7.3

 

Könnte da ein Fehler im OS vorliegen?

Die Frenquenz vom LNB ist nur 1 mal vorhanden, das habe ich schon Überprüft. Ich habe noch 2 weitere Solo2 Geräte mit dem gleichen Fehler (andere Frequenz).

Unsere Uno 4K SE's funktionieren dahingehend Fehlerfrei

Attached Files


2 * VU+ Uno 4K SE  @ OpenPLi 8.1

5 * VU+ Solo2 @ OpenPli 8.0

2 * MK-Digital XP 1000 @ OpenPLi 8.1

1 * Edision OS mini @ OpenPLi 8.1

1 * Dream Multimedia DM800 SE @ OpenPLi 4.0

 

 


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #2 Dimitrij

  • PLi® Core member
  • 9,994 posts

+338
Excellent

Posted 30 August 2021 - 21:37

Sorry, your receiver will not work correctly in openPli 8.1 due to a bug in the drivers(wrong tuner number).

Use skin PLi-FullNightHD (tuner A setup) for check.

[NimManager] fix wrong internally_connectable vu solo2

https://forums.openp...loop-out/page-2


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #3 WanWizard

  • PLi® Core member
  • 68,559 posts

+1,737
Excellent

Posted 30 August 2021 - 21:49

Merged. I'll try to find time to do an 8.1 update this weekend.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #4 shinji82

  • Senior Member
  • 66 posts

0
Neutral

Posted 31 August 2021 - 08:04

the interesting thing is that when I flash from OpenPLi 8.0 with a backup to 8.1, both tuners work correctly.
But if I go into the tuner settings, check them and save: it comes back to the setting and it sayes disabled.

 

@ Dimi: I use this Skin as default, so nothing will happend


2 * VU+ Uno 4K SE  @ OpenPLi 8.1

5 * VU+ Solo2 @ OpenPli 8.0

2 * MK-Digital XP 1000 @ OpenPLi 8.1

1 * Edision OS mini @ OpenPLi 8.1

1 * Dream Multimedia DM800 SE @ OpenPLi 4.0

 

 


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #5 rantanplan

  • PLi® Contributor
  • 1,805 posts

+83
Good

Posted 31 August 2021 - 10:26

Du kannst das Image aus dem develop nehmen, da würde es funktionieren.
Es wurde noch nicht in 8.1 übernommen.
Umgekehrt wurden in den Branch 8.0 die vorherigen Anpassungen nicht übernommen, daher funktioniert es dort noch einwandfrei.

Also das nächste nightly build testen, ist im Prinzip das 8.1 mit weiteren Aktualisierungen.
Ein paar davon gehen aber auch ins 8.1 zurück.
Diese Fehlerbehebung sollte dann auch dahin gehen.

Grüße

 

edit:

 

Wenn du dich etwas auskennst, dann kannst auch ins Image via ftp gehen und die betreffende NimManager.py austauschen.
Anschließend Neustart und es sollte wieder klappen.


Edited by rantanplan, 31 August 2021 - 10:34.


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #6 Dimitrij

  • PLi® Core member
  • 9,994 posts

+338
Excellent

Posted 31 August 2021 - 12:06

This really solution is vusolo2

old

			if "frontend_device" in entry: # check if internally connectable
				if os.path.exists("/proc/stb/frontend/%d/rf_switch" % entry["frontend_device"]) and id > 0 and entries[id]["name"] == entries[id - 1]["name"]:
					entry["internally_connectable"] = entry["frontend_device"] - 1
				else:
					entry["internally_connectable"] = None
			else:
				entry["frontend_device"] = entry["internally_connectable"] = None

 

new

            entry["internally_connectable"] = None
            if "frontend_device" in entry: # check if internally connectable
                if os.path.exists("/proc/stb/frontend/%d/rf_switch" % entry["frontend_device"]) and (not id or entries[id]["name"] == entries[id - 1]["name"]):
                    if HardwareInfo().get_device_model() == "vusolo2":
                        if not id:
                            entry["internally_connectable"] = 1
                    else:
                        entry["internally_connectable"] = entry["frontend_device"] - 1
            else:
                entry["frontend_device"] = None
            if "multi_type" not in entry:

old

	def linkNIMs(self, sec, nim1, nim2):
		print "[SecConfigure] link tuner", nim1, "to tuner", nim2
		if nim2 == (nim1 - 1):
			self.linkInternally(nim1)
		sec.setTunerLinked(nim1, nim2)

 

new

	def linkNIMs(self, sec, nim1, nim2):
		print "[SecConfigure] link tuner", nim1, "to tuner", nim2
		if (nim2 == nim1 - 1) or HardwareInfo().get_device_model() == "vusolo2":
			self.linkInternally(nim1)
		sec.setTunerLinked(nim1, nim2)

 

 


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #7 shinji82

  • Senior Member
  • 66 posts

0
Neutral

Posted 31 August 2021 - 16:51

Bin aktuell noch auf Arbeit, werde das aber auf jedenfall testen.


2 * VU+ Uno 4K SE  @ OpenPLi 8.1

5 * VU+ Solo2 @ OpenPli 8.0

2 * MK-Digital XP 1000 @ OpenPLi 8.1

1 * Edision OS mini @ OpenPLi 8.1

1 * Dream Multimedia DM800 SE @ OpenPLi 4.0

 

 


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #8 Dimitrij

  • PLi® Core member
  • 9,994 posts

+338
Excellent

Posted 31 August 2021 - 17:54

Bin aktuell noch auf Arbeit, werde das aber auf jedenfall testen.

update

/usr/lib/enigma/python/Components/NimManager.py


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #9 shinji82

  • Senior Member
  • 66 posts

0
Neutral

Posted 1 September 2021 - 05:01

 

Bin aktuell noch auf Arbeit, werde das aber auf jedenfall testen.

update

/usr/lib/enigma/python/Components/NimManager.py

 

 

Danke, funktioniert hervorragend!


2 * VU+ Uno 4K SE  @ OpenPLi 8.1

5 * VU+ Solo2 @ OpenPli 8.0

2 * MK-Digital XP 1000 @ OpenPLi 8.1

1 * Edision OS mini @ OpenPLi 8.1

1 * Dream Multimedia DM800 SE @ OpenPLi 4.0

 

 


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #10 Dimitrij

  • PLi® Core member
  • 9,994 posts

+338
Excellent

Posted 1 September 2021 - 05:28

[NimManager] really fix "loop through" vusolo2


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #11 rantanplan

  • PLi® Contributor
  • 1,805 posts

+83
Good

Posted 1 September 2021 - 10:28

But it would then also have to be ported to Branch 8.1. otherwise the problem remains.



Re: VU Solo 2 OpenPli 8.1 Unicable II Probleme #12 WanWizard

  • PLi® Core member
  • 68,559 posts

+1,737
Excellent

Posted 1 September 2021 - 11:50

I'll do a rebase with develop when I get back from holiday.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.



1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users