Page 1 of 1

Revpi with minimal OS

Posted: 21 Mar 2022, 07:23
by EcoMan
Hi,

We are using revpi core 3 as an IIoT gateway.
We are not using any of the revpi proprietary connectors so no use of the piCon etc. is needed.

We want to have the most minimal OS- only CLI, running only our needed processes (which are basically network, USBs and our pythonic software, and some linux packages such as sqlite3 for example).

The only thing we do need is rPi's watchdog and maybe access to the revPi LEDs.

Is it possible (and advisable) to install a custom Linux without the revPi kernel etc.?

Re: Revpi with minimal OS

Posted: 21 Mar 2022, 12:11
by p.rosenberger
Hi EcoMan,

I would not recommend to install a RevPi without our kernel-package. You can disable piControl. Just remove "piControl" from /etc/modules.

To create an custom image you can use the imagebakery: https://github.com/RevolutionPi/imagebakery

It will install many things you might not want, but you can customize it in the if you edit the customize_image.sh:
https://github.com/RevolutionPi/imageba ... e_image.sh

We plan to release a lite image, but If you want to create an minimal image you are best of with the image bakery.

Best Regards
Philipp

Re: Revpi with minimal OS

Posted: 21 Mar 2022, 17:15
by EcoMan
Got it, thank you for the quick and detailed response.