Jump to content


Photo

One proc file for detecting the MACHINE in all enigma2 images.


  • Please log in to reply
772 replies to this topic

Re: One proc file for detecting the MACHINE in all enigma2 images. #761 zeros

  • PLi® Contributor
  • 1,635 posts

+61
Good

Posted 2 April 2021 - 12:01

  • By the way, did you get the RPi video working?

DM920UHD DVB-S2X TRIPLE tuner + Triple M.S tuner DVB-S2X, DVB-T2/T, QboxHD, QboxHD Mini, Icecrypt T2300HD,
Qviart Lunix3 4K, Raspberry Pi 4 Model B 4GB & 8GB

Vertex 4K60 4:4:4 600MHz


Re: One proc file for detecting the MACHINE in all enigma2 images. #762 Huevos

  • PLi® Contributor
  • 4,244 posts

+158
Excellent

Posted 24 April 2021 - 19:12

Our core plugin from our repository: https://github.com/O...0d38c6d33c9e4dd



Re: One proc file for detecting the MACHINE in all enigma2 images. #763 zeros

  • PLi® Contributor
  • 1,635 posts

+61
Good

Posted 30 April 2021 - 18:18

I think it would be nice to post some kind of answer here to Huevos!? So, is that OK, what you think? NOK in my opinion.

The answer to my question is that NO, the video still does not work with Raspberry Pi & OV. That’s what I thought.


DM920UHD DVB-S2X TRIPLE tuner + Triple M.S tuner DVB-S2X, DVB-T2/T, QboxHD, QboxHD Mini, Icecrypt T2300HD,
Qviart Lunix3 4K, Raspberry Pi 4 Model B 4GB & 8GB

Vertex 4K60 4:4:4 600MHz


Re: One proc file for detecting the MACHINE in all enigma2 images. #764 Huevos

  • PLi® Contributor
  • 4,244 posts

+158
Excellent

Posted 30 April 2021 - 18:25

No need for a reply. Everyone has said their peace.



Re: One proc file for detecting the MACHINE in all enigma2 images. #765 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 3 May 2021 - 18:43

Hi All,

 

It has been a while since this thread had a post on the topic.  This post is to let you know what has been happening in the background.

 

The OpenVision developers have been working on the proposal for a boxbranding replacement.  We have now committed our efforts to the OpenVision repository.

 

The core of the new code is a new class in SystemInfo called BoxInfo.  Here are the commit notes introducing this new class:

BoxInfo is a new Python class in SystemInfo that is designed to replace the old boxbranding system. The class offers methods to list, get, set or delete system information variables. The code implements controls to protect variables/values defined to be immutable.

The code is designed to find and use an enigma kernel module to supply the system variables. If the kernel module is loaded the variables will be directly extracted from the kernel module. If the module is found but not loaded then the variables will be extracted from the module directly with modinfo. (This same concept can allow modules from non active slots or partitions to be accessed for purposes like MultiBoot.)

The BoxInfo system also defines and allows a file called "/etc/enigma.conf" to be created and supply replacement / override values for the kernel module. This feature is designed to allow developers to simulate other boxes or settings to facilitate firmware development and testing. The file is a simple text format with each line replacing or adding a new kernel module definition. Each line has the form "variable=value". Note that spaces *ARE* significant.

When a variable is initially loaded the code attempts to convert text string representations of Python objects into the real Python object. So, for example, if the string contains '("One", "Two", "Three")' then this will be converted to a tuple with the three string elements. A similar conversion is done for lists. The single word "None" in any case is converted to None. The single words "False", "No", "Off" and "Disabled" in any case are converted to False while "True", "Yes", "On" and "Enabled" in any case are converted to True. Binary, octal, decimal and hexadecimal numbers are converted to Python integers and floating point number strings are converted to type float. Please note that at this time only single conversions are performed. Thus a conversion of a string to a list will not process the elements of the list.

This is an initial presentation of a proposal I designed and presented many months ago. Given there has been no progress with the concept I am committing this code to further progress and discussion. This initial variable names have been taken from the OpenVision interpretation of the boxbranding code. The variable names should be better defined, as suggested / requested by WanWizard on OpenPLi, such changes can easily be made to this code infrastructure.

 

 

 

We have been going through all the OpenVision Enigma2 code removing all references to boxbranding.  I think those efforts are now complete / almost complete.  More in depth testing is now going to commence.

 

We invite other developers to review our work.  We welcome constructive questions, comments and suggestions.

 

Regards,

Ian and the OpenVision team.



Re: One proc file for detecting the MACHINE in all enigma2 images. #766 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 3 May 2021 - 19:20

I'm ready to send the needed PRs for PLi, OE-A (ATV, ViX, ...) :)


Open Vision sources: https://github.com/OpenVisionE2


Re: One proc file for detecting the MACHINE in all enigma2 images. #767 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 3 May 2021 - 19:32

Hi,

 

I should add that the names in the current code refer to the OpenVision image.  For example, "/proc/openvision", "openvision.ko" etc.  These will all soon be changed to be a more universally acceptable "/proc/enigma", "enigma.ko" etc.

 

Regards,

Ian.



Re: One proc file for detecting the MACHINE in all enigma2 images. #768 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 4 May 2021 - 06:39

I'm ready to send the needed PRs for PLi, OE-A (ATV, ViX, ...) :)


Maybe better first send a link to the code that everyone can look at the changes.
Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: One proc file for detecting the MACHINE in all enigma2 images. #769 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 4 May 2021 - 07:05

Hi Betacentauri,

 

Sorry, I thought my description would be enough to help you locate the files.  Anyway here are some links for you:

This is the modified SystemInfo.py that implements the BoxInfo class:
https://github.com/O...s/SystemInfo.py

 

This is an example screen that used a lot of boxbranding calls that now uses BoxInfo.  This screen is the new OpenVision version of the old About.py screen.  (Basically any OpenVision Enigma2 core code that used boxbranding now uses BoxInfo.)

https://github.com/O.../Information.py

 

This is the kernel module:
https://github.com/O...envision-module

 

If there is anything else you would like to know then please ask.

 

Regards,

Ian.



Re: One proc file for detecting the MACHINE in all enigma2 images. #770 zeros

  • PLi® Contributor
  • 1,635 posts

+61
Good

Posted 5 May 2021 - 20:31

Is it tested with different boxes? If so, then exactly which ones have been tested on OV and was everything OK? I think it's a nice job, but it's hard to judge without testing. I generally like IanSav style.


DM920UHD DVB-S2X TRIPLE tuner + Triple M.S tuner DVB-S2X, DVB-T2/T, QboxHD, QboxHD Mini, Icecrypt T2300HD,
Qviart Lunix3 4K, Raspberry Pi 4 Model B 4GB & 8GB

Vertex 4K60 4:4:4 600MHz


Re: One proc file for detecting the MACHINE in all enigma2 images. #771 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 6 May 2021 - 03:39

Hi Zeros,

 

Thank you for the compliment but this was a joint effort, I wrote the Python code and Persian Prince wrote the C++ code.

 

I know that a few of the developers and probably others are running the code.  I believe that some boxes are having issues and we are awaiting logs and are actively investigating the problem.  We believe the core of this change is correct and solid and it is one of the converted Enigma2 modules that may have a typo.

 

I should also point out that our conversion efforts are not yet complete.  We are in the process of converting all direct references to the SystemInfo dictionary variable to use the BoxInfo methods.  When this task is complete the global SystemInfo variable will be no more.

 

Regards,

Ian.



Re: One proc file for detecting the MACHINE in all enigma2 images. #772 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 27 May 2021 - 16:35

Hi,

 

Just an update to let everyone know that boxbranding and the old legacy /etc/openvision/ directory hierarchy is no longer used in OpenVision.  We have completely switched over to using BoxInfo class and the enigma kernel module.  We are also moving quickly to remove all usage of the global SystemInfo dictionary system variables.  These are being replaced with the BoxInfo.getItem() and BoxInfo.setItem() methods.  Immutable values can not be changed with the BoxInfo.setItem() method.  Any item created can be set to be immutable, that is BoxInfo variables can be made to be write once/read many.

 

The SystemInfo dictionary items themselves can't and won't be removed until all plugins are updated to use the new system.  As previously mentioned the BoxInfo call calls also manage and use the old SystemInfo dictionary.

 

The kernel module is now called enigma.ko and it creates /proc/enigma/xxx entries.  This has been done, as promised, to remove all hard coded references to OpenVision.  Please understand that some values stored and served by the module are OpenVision specific.  Other images are free to introduce and use them if they are helpful.

 

We have also started the documentation process of the values defined in the kernel module in https://github.com/O...oc/KERNELMODULE .  This is a work in progress.  As the facility is discussed and enhanced I expect that this documentation will grow and improve.

 

If OpenPLi is interested / ready to adopt this system please let us know and we would be pleased to help out.

 

Regards,

Ian.


Edited by IanSav, 27 May 2021 - 16:54.


Re: One proc file for detecting the MACHINE in all enigma2 images. #773 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 28 May 2021 - 09:55

Backup Suite NG is now compatible with enigma module so no need the image to be OV, just needs the module: https://github.com/O...nE2/BackupSuite


Open Vision sources: https://github.com/OpenVisionE2



1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users