I have the following situation with which I need some help.
I have a Linux-based OS running on a RaspberryPi Compute Module. The system was shutdown abruptly, which led to an issue where now the boot process keeps looping endlessly. This is because of a systemd service which cannot startup.
My approach to interrupting the endless loop is to try and disable the systemd service from starting up, by mounting the Compute Module and removing the systemd symlink. But here comes my problem:
The system is divided into several partitions, one of which (the root partition) is ReadOnly (squashfs). On this root partition is the /etc/systemd/system folder where I want to remove the symlink to the problematic service, so I can disable it.
My question is: How do I go about making changes to this ReadOnly partition so I can disable the systemd service?
Alternatives are also welcomed.