@Huevos,
Is this better? https://github.com/O.../satellites.xml
Posted 9 August 2018 - 18:53
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.
Posted 9 August 2018 - 20:26
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
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.
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.
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.
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.
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.
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.
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.
Posted 14 August 2018 - 17:25
What is the problem with just copying the xml over?
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.
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?
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.
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.
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.
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.
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.
0 members, 9 guests, 0 anonymous users