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. #521 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 12 December 2020 - 21:27

Some proc entries are needed to be there with exact names (which we define later) for all teams and some can be there if a team wanted them.

 

So we're going to have reserved names and optional names, you can't force a team to not have an optional proc as long as it follows the API.

 

Also "kernelversion" is not a folder it's a variable as we all know there so many kernel verions out there.


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


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

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 12 December 2020 - 21:30

How about?

 

/proc/hardware_data.ko

(for hardware data that distros put there)

 

/proc/enigma2_data.ko

(for enigma data, distro name, type, version, url etc. Several images already use /etc/image-version)

 

.ko file in /proc path?!

 

You can't even modprobe such thing, and there will be no two .ko files for sure, nobody wants to double the maintenance.


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


Re: One proc file for detecting the MACHINE in all enigma2 images. #523 Abu Baniaz

  • PLi® Contributor
  • 2,494 posts

+64
Good

Posted 12 December 2020 - 21:40

 

How about?

 

/proc/hardware_data.ko

(for hardware data that distros put there)

 

/proc/enigma2_data.ko

(for enigma data, distro name, type, version, url etc. Several images already use /etc/image-version)

 

.ko file in /proc path?!

 

You can't even modprobe such thing, and there will be no two .ko files for sure, nobody wants to double the maintenance.

 

So what was that test file you uploaded? Or are you saying it should not have a .ko extension?



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

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 12 December 2020 - 21:45

No. It has nothing to do with enigma2 or drivers. It is a kernel module to return hardware details. Calling it enigma2 is stupid. Enigma is software. And this runs from boot. It doesn't need enigma and has no dependence on it.


Edited by Huevos, 12 December 2020 - 21:50.


Re: One proc file for detecting the MACHINE in all enigma2 images. #525 Abu Baniaz

  • PLi® Contributor
  • 2,494 posts

+64
Good

Posted 12 December 2020 - 21:51

So distro data is part of hardware then is it?



Re: One proc file for detecting the MACHINE in all enigma2 images. #526 WanWizard

  • PLi® Core member
  • 70,235 posts

+1,798
Excellent

Posted 12 December 2020 - 21:59

The data is being added by an Enigma2 distro build process ( hopefully agreed by everyone), nothing intrinsic with the hardware (by manufacturer).

 

The process doesn't have to be agreed by everyone. Totally irrelevant. Only the end-result needs to be agreed.
 

I've been saying this since day one.


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: One proc file for detecting the MACHINE in all enigma2 images. #527 Abu Baniaz

  • PLi® Contributor
  • 2,494 posts

+64
Good

Posted 12 December 2020 - 22:08

 

The data is being added by an Enigma2 distro build process ( hopefully agreed by everyone), nothing intrinsic with the hardware (by manufacturer).

 

The process doesn't have to be agreed by everyone. Totally irrelevant. Only the end-result needs to be agreed.
 

I've been saying this since day one.

 

The hardware data needs to be in the same location, with the same filename. On all distros! This is what I was referring to. I didn't mention build process has to be agreed.

 

An image build is what creates the data and the images have their varying methods of accomplishing it.  



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

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 12 December 2020 - 22:48

So distro data is part of hardware then is it?

To me it is very clear distro is not hardware. If people want to add firmware to this it should be under that heading. e.g.

/proc/hardware/feature

/proc/firmware/feature



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

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 12 December 2020 - 23:36

 

 

How about?

 

/proc/hardware_data.ko

(for hardware data that distros put there)

 

/proc/enigma2_data.ko

(for enigma data, distro name, type, version, url etc. Several images already use /etc/image-version)

 

.ko file in /proc path?!

 

You can't even modprobe such thing, and there will be no two .ko files for sure, nobody wants to double the maintenance.

 

So what was that test file you uploaded? Or are you saying it should not have a .ko extension?

 

1) The ".ko" file is the kernel module. The file starts running when the stb boots. You don't access that file directly. The program in that file puts up entries in the /proc folder. These are not files but are readable from the file system as if they were files.

 

2) Any kernel module (the ".ko" file) can be analyzed by "modinfo" whether it is running or not. This has nothing to do with the entries in the /proc folder.


Edited by Huevos, 12 December 2020 - 23:37.


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

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 12 December 2020 - 23:42

 

The data is being added by an Enigma2 distro build process ( hopefully agreed by everyone), nothing intrinsic with the hardware (by manufacturer).

 

The process doesn't have to be agreed by everyone. Totally irrelevant. Only the end-result needs to be agreed.
 

I've been saying this since day one.

 

Yes, only thing that is relevant is x proc outputs this, y proc outputs that, etc. Right now that is what needs to be decided in this discussion.



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

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 13 December 2020 - 02:52

The data is being added by an Enigma2 distro build process ( hopefully agreed by everyone), nothing intrinsic with the hardware (by manufacturer).

 
The process doesn't have to be agreed by everyone. Totally irrelevant. Only the end-result needs to be agreed.
 
I've been saying this since day one.

Is my solution acceptable by PLi?

If the answer is yes we could start writing the API and decide about proc names.

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


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

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 13 December 2020 - 02:55

So distro data is part of hardware then is it?


To me it is very clear distro is not hardware. If people want to add firmware to this it should be under that heading. e.g.
/proc/hardware/feature
/proc/firmware/feature

I never said proc entries "should" be just about hardware and not software.

There is no need for two path, we could introduce new proc entries and sub-path.

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


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

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 13 December 2020 - 03:06

How about?
 
/proc/hardware_data.ko
(for hardware data that distros put there)
 
/proc/enigma2_data.ko
(for enigma data, distro name, type, version, url etc. Several images already use /etc/image-version)

 
.ko file in /proc path?!
 
You can't even modprobe such thing, and there will be no two .ko files for sure, nobody wants to double the maintenance.
So what was that test file you uploaded? Or are you saying it should not have a .ko extension?
1) The ".ko" file is the kernel module. The file starts running when the stb boots. You don't access that file directly. The program in that file puts up entries in the /proc folder. These are not files but are readable from the file system as if they were files.
 
2) Any kernel module (the ".ko" file) can be analyzed by "modinfo" whether it is running or not. This has nothing to do with the entries in the /proc folder.

A kernel module won't start unless you load it or some other module depends on it and loads it so "The file starts running when the stb boots." is wrong.

What I added to be acccessible from modinfo commamd is exactly because of this so even without loading the module data could be extracted.

image-version or any .py file is not secure as they could easily change so reliability of such those files is absolute 0

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


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

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 13 December 2020 - 03:16

How about?
 
/proc/hardware_data.ko
(for hardware data that distros put there)
 
/proc/enigma2_data.ko
(for enigma data, distro name, type, version, url etc. Several images already use /etc/image-version)

 
.ko file in /proc path?!
 
You can't even modprobe such thing, and there will be no two .ko files for sure, nobody wants to double the maintenance.
So what was that test file you uploaded? Or are you saying it should not have a .ko extension?

That was a presentation that a parent image could extract the child image's information no matter what the architecture is.

The reasons I told everyone to put .ko files in /tmp were:

1- I didn't want anyone to inject incompatible .ko modules in /lib/modules/ path and blame me.

2- There's no need to load a .ko module when want just the info about it.

3- It will destroy itself after a reboot.

Studying how kernel modules work is a requirement to understand how my solution works.

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


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

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 13 December 2020 - 05:39

Hi,

 

It seems that some people don't have the imagination or vision to work out what Persian Prince is trying to explain.  Nitpicking appears to be preferred over progress.  My comment also didn't appear to be explicit or clear enough to explain what I think Persian Prince is intending so I will try again.

 

Persian Prince appears to be suggesting that his proposed module be added/included onto *EVERY* Enigma2 system.  The file is intended to live in a directory something like "/lib/modules/<kernelversion>/kernel/drivers/enigma2/enigma2.ko" or "/lib/modules/<kernelversion>/kernel/drivers/enigma2.ko" so as to be acceptable for the kernel in use.  As has been pointed out as an issue the "<kernelversion>" element is dynamic.  On my test machine the "<kernelversion>" location is actually "4.10.12".  The previously unspoken intention was to create a link from that location to something more globally standard like "/lib/modules/enigma2.ko" or even "/lib/enigma2.ko".  This link can easily be the same on *all* Enigma2 images and builds so it can easily be found by Enigma2 code yet still be appropriately located for use by the kernel.

 

@Persian Prince, is my interpretation what you are intending?

 

Regards,

Ian.

 



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

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 13 December 2020 - 06:46

Hi,

 

It seems that some people don't have the imagination or vision to work out what Persian Prince is trying to explain.  Nitpicking appears to be preferred over progress.  My comment also didn't appear to be explicit or clear enough to explain what I think Persian Prince is intending so I will try again.

 

Persian Prince appears to be suggesting that his proposed module be added/included onto *EVERY* Enigma2 system.  The file is intended to live in a directory something like "/lib/modules/<kernelversion>/kernel/drivers/enigma2/enigma2.ko" or "/lib/modules/<kernelversion>/kernel/drivers/enigma2.ko" so as to be acceptable for the kernel in use.  As has been pointed out as an issue the "<kernelversion>" element is dynamic.  On my test machine the "<kernelversion>" location is actually "4.10.12".  The previously unspoken intention was to create a link from that location to something more globally standard like "/lib/modules/enigma2.ko" or even "/lib/enigma2.ko".  This link can easily be the same on *all* Enigma2 images and builds so it can easily be found by Enigma2 code yet still be appropriately located for use by the kernel.

 

@Persian Prince, is my interpretation what you are intending?

 

Regards,

Ian.

Yes 100%

 

:)


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


Re: One proc file for detecting the MACHINE in all enigma2 images. #537 Frenske

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

+397
Excellent

Posted 13 December 2020 - 09:18

@Persian Prince.

Congratulations with your 31th birthday. Enjoy this special day.


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: One proc file for detecting the MACHINE in all enigma2 images. #538 IanSav

  • PLi® Contributor
  • 1,491 posts

+51
Good

Posted 13 December 2020 - 10:23

Hi Persian Prince,

 

Happy Birthday!

 

Regards,

Ian.



Re: One proc file for detecting the MACHINE in all enigma2 images. #539 littlesat

  • PLi® Core member
  • 57,064 posts

+698
Excellent

Posted 13 December 2020 - 10:44

Hip hip hip hoera!

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


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

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 13 December 2020 - 12:32

 

 

 

 

How about?
 
/proc/hardware_data.ko
(for hardware data that distros put there)
 
/proc/enigma2_data.ko
(for enigma data, distro name, type, version, url etc. Several images already use /etc/image-version)

 
.ko file in /proc path?!
 
You can't even modprobe such thing, and there will be no two .ko files for sure, nobody wants to double the maintenance.
So what was that test file you uploaded? Or are you saying it should not have a .ko extension?
1) The ".ko" file is the kernel module. The file starts running when the stb boots. You don't access that file directly. The program in that file puts up entries in the /proc folder. These are not files but are readable from the file system as if they were files.
 
2) Any kernel module (the ".ko" file) can be analyzed by "modinfo" whether it is running or not. This has nothing to do with the entries in the /proc folder.

A kernel module won't start unless you load it or some other module depends on it and loads it so "The file starts running when the stb boots." is wrong.

What I added to be acccessible from modinfo commamd is exactly because of this so even without loading the module data could be extracted.

image-version or any .py file is not secure as they could easily change so reliability of such those files is absolute 0

 

What do you mean it is wrong? It is loaded at boot by /etc/modules-load.d/xxx.conf.


Edited by Huevos, 13 December 2020 - 12:32.



11 user(s) are reading this topic

0 members, 11 guests, 0 anonymous users