Jump to content


Photo

tuxbox-common updates


  • Please log in to reply
139 replies to this topic

Re: tuxbox-common updates #121 WanWizard

  • PLi® Core member
  • 70,220 posts

+1,798
Excellent

Posted 9 August 2018 - 18:53

@Huevos,

 

Is this better? https://github.com/O.../satellites.xml


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (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: tuxbox-common updates #122 Huevos

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 9 August 2018 - 19:38

I think you are pretty close. -08 and -09 have a leading zero.

And your west slots are not quiet in natural order e.g. -9 should come before -8.

And by the way I convert all PLS codes and modes to gold as that is what enigma now uses internally.

Re: tuxbox-common updates #123 littlesat

  • PLi® Core member
  • 57,062 posts

+698
Excellent

Posted 9 August 2018 - 20:26

The first east then west order was an invention that was already there since the custom software dr. Overflow on the good old d-box.... dmm took the same order with enigma1 that time...

Edited by littlesat, 9 August 2018 - 20:27.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: tuxbox-common updates #124 Huevos

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 10 August 2018 - 00:13

On closer inspection there are a few more problems.

 

1) Something is failing when reading FEC. 129.0W is a good example of a major failure to read FEC but it is a common problem in the file currently on the repo.

2) Some transponders are completely missing. e.g. 121.0W, 11990H, 12016V. Not sure if this is intetional but I'm guessing not.

3) You are replacing "&" in the satellite names with "..". Should be "&".

4) Something weird going on with the satellite names. Lyngsat: "Star One C1 & Eutelsat 65 West A", satellites.xml: "Eutelsat 65 West A..Star One C1".

5) 61.0W, transponders not listed in frequency order, nor Lyngsat order, may be the same on some other satellites, e.g. 3.0E has the same problem.

6) Transponders missing when the frequency exists on more than one beam. e.g. 4.8E, Sub-Sahara 11747 V 27500 and Europe BSS 11747 V 30000. (On closer inspection it seems to be tagged on the end, but the frequency order is a mess).
 

The above problems seem to be recurring throughout the file. While they are there it makes it hard to run a diff on it to find other problems.



Re: tuxbox-common updates #125 WanWizard

  • PLi® Core member
  • 70,220 posts

+1,798
Excellent

Posted 10 August 2018 - 00:18

Check. Will be something for after the weekend.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (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: tuxbox-common updates #126 Huevos

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 10 August 2018 - 00:29

And if you did want to convert PLS values here are the functions ported to Python.

def gold2root(gold):
	if gold >= 0x3ffff:
		print "[gold2root] gold code invalid %d, returning default.\n" % gold
		gold = 0;
	g = 0
	x = 1
	while g < gold:
		x = (((x ^ (x >> 7)) & 1) << 17) | (x >> 1)
		g += 1
	return x

def root2gold(root):
	if root > 0 and root < 0x40000:
		g = 0
		x = 1
		while g < 0x3ffff:
			if root == x:
				return g
			x = (((x ^ (x >> 7)) & 1) << 17) | (x >> 1)
			g += 1
		print "[gold2root] input invalid %d, returning default.\n" % root
		return gold2root(0x1); # when input is wrong just return default gold value

Edited by Huevos, 10 August 2018 - 00:29.


Re: tuxbox-common updates #127 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 14 August 2018 - 09:39

Hi,

 

For future reference, which one repository should I direct my pull requests for all future updates of the Australian terrestrial data?

 

Regards,

Ian.



Re: tuxbox-common updates #128 Huevos

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 14 August 2018 - 11:08

Probably better off sending PRs to oe-alliance-tuxbox-common where the file is maintained and then Abu can send a PR from time to time. The main problem is the folder structure of these repos is different so it is impossible to cherry-pick and needs to be updated manually meaning the commit details are lost.



Re: tuxbox-common updates #129 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 14 August 2018 - 13:06

Hi Huevos,

 

Okay, as the Australian data is updated I will file pull requests with the OE-Alliance repository.  (The updates were occurring very frequently but have now settled down.  Still when I get an update I will pass it on.)

 

As for the differences between the repositories, I cleaned up the OE-Alliance repository and was about to make the equivalent fixes to the OpenPLi repository when the first half of the job was reverted.  If I would have been given the opportunity to complete the task then both repositories should have been directly comparable.

 

Regards,

Ian.



Re: tuxbox-common updates #130 WanWizard

  • PLi® Core member
  • 70,220 posts

+1,798
Excellent

Posted 14 August 2018 - 13:36

What is the problem with just copying the xml over?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (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: tuxbox-common updates #131 Huevos

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 14 August 2018 - 15:08

What is the problem with just copying the xml over?

Yes, of course you can do that but you have to make sure any commits made to the PLi copy are not lost in the process. Whereas if we could cherry pick we could sync the file in both directions and the details such as the original commit author, etc would not be lost in the process.

 

Not really sure why the folder structure is different or why PLi sees a need to send the grabber logs to the repo. Anyway it is what it is.



Re: tuxbox-common updates #132 Abu Baniaz

  • PLi® Contributor
  • 2,494 posts

+64
Good

Posted 14 August 2018 - 17:25

What is the problem with just copying the xml over?


Some PRs are only sent to PLI, so copying will overwrite those changes.

As mentioned before, there are changes to layout which were questioned. Please decide the format you want to use and I'll adopt it.

It would be better to get rid of logs IMO or change folder layout by removing sub folder.

Sent from my Moto G (5S) using Forum Fiend v1.3.3.

Re: tuxbox-common updates #133 WanWizard

  • PLi® Core member
  • 70,220 posts

+1,798
Excellent

Posted 14 August 2018 - 18:47

We're in charge of merging any PR's, so if we agree that we will (automatically?) merge the cable and terrestrial xml files, we can do so? And redirect any PR's to the OE-A repo? I don't see the problem.

 

Also, what else is in the repo is not really relevant to updates to those two files?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (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: tuxbox-common updates #134 Abu Baniaz

  • PLi® Contributor
  • 2,494 posts

+64
Good

Posted 14 August 2018 - 20:40

Also, what else is in the repo is not really relevant to updates to those two files?

But cherry picking commits is not possible, so the history won't show the changes and  we'll have to just replace the file as you said.

 

Can we also "squash and merge" instead of just plain merging requests please?



Re: tuxbox-common updates #135 WanWizard

  • PLi® Core member
  • 70,220 posts

+1,798
Excellent

Posted 14 August 2018 - 20:44

What history are you talking about? it is only about changing a single file, and the changes show up as a commit diff. I don't really care about the commit history, if we want to see that, we can check the upstream OE repo.

 

We "squash and merge" by default, unless a PR contains non-related commits (which should not happen) that need to be kept seperate.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (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: tuxbox-common updates #136 WanWizard

  • PLi® Core member
  • 70,220 posts

+1,798
Excellent

Posted 14 August 2018 - 20:45

I can see if I can make changes to make upstream pulling possible, but I'm travelling the next few weeks, so that has to wait until I'm back home.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (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: tuxbox-common updates #137 Token

  • Senior Member
  • 33 posts

+2
Neutral

Posted 20 August 2021 - 11:40

Openpli 7.3 on VU+ Solo2 (Kernel 3.13.5):

 

root@vusolo2:~# opkg upgrade

Upgrading tuxbox-common from 3+git289+5e0b745-r0.0 to 3+git309+843d4e3 on root

Downloading http://downloads.ope...e3-r0.0_all.ipk.

Segmentation fault

 

Upgrading tuxbox-common from 3+git289+5e0b745-r0.0 to 3+git309+843d4e3 on root

*** Error in `opkg': corrupted double-linked list: 0x00d9ca80 ***

Aborted

 

Please compare an repair this!

 

Thank You!


Edited by Token, 20 August 2021 - 11:43.


Re: tuxbox-common updates #138 Frenske

  • Forum Moderator
    PLi® Core member
  • 27,487 posts

+397
Excellent

Posted 20 August 2021 - 12:17

We noticed there error more often but due to lack of available free time 7.3 won’t be repaired for a while.


Mijn schotel is een T90 met 10 LNB's. Daarnaast voor de fun nog een draaibaar systeem met een Triax TD 78.

Dreamboxen heb ik niet meer echt actief. Verder heb ik ook nog een een VU+ duo2 met 500Gb harddisk + een VU+ Uno, Zero, Solo 4K, Ultimo 4K, Zero 4K, Uno 4Kse. + ook nog een Xtrend ET7x00. Daarnaast heb ik ook nog diverse andere modellen w.o. een Formuler F4, ET8500, ET7500, Mut@nt 2400HD, Xsarius Fusion HD se en verder nog wel het e.e.a. waarmee op verzoek vanalles wordt getest. Iemand moet het tenslotte doen. ;) :)
Los van de eerder genoemde modellen heb ik nog wel een rits aan testsamples als Mut@nt 2400HD, HD60, GB UE4K, GB Trio4K, Maxitec Multibox combo en Twin, Octagon sf8008, sf8008 mini en last but nog least enkele modellen van het Grieks Duitse Edision.

Voor centrale opslag van media gebruik ik een Qnap 219P 
met tweemaal 2 Tb harddisks + een Synology DS414 met 12 Tb Totale opslag.

-------------------------------------------------------------------------------------------
Many answers to your question can be found in our wiki: Just one click away from this "solutioncentre".

Als ik alles al wist hoefde ik ook niets te vragen. If I had all the knowledge I had no questions at all.


Re: tuxbox-common updates #139 Token

  • Senior Member
  • 33 posts

+2
Neutral

Posted 20 August 2021 - 12:24

Can you describe the error in more detail, and is it possible to fix this bug manually?
Or is there a workaround?
 
P.S.:
Same Error on Openpli8!

Edited by Token, 20 August 2021 - 12:25.


Re: tuxbox-common updates #140 WanWizard

  • PLi® Core member
  • 70,220 posts

+1,798
Excellent

Posted 20 August 2021 - 13:50

Did you do an opkg update before that?

 

they error says

Upgrading tuxbox-common from 3+git289+5e0b745-r0.0 to 3+git309+843d4e3 on root
Downloading http://downloads.openpli.org/feeds/openpli-7-release/all/tuxbox-common_3+git309+843d4e3-r0.0_all.ipk

which is a sign there's something odd with the package index.
 

Tested it on OpenPLi 8 last night, and no issues?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (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.



7 user(s) are reading this topic

0 members, 7 guests, 0 anonymous users