1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-14 19:41:51 +00:00

Dirty script to always mount FS as RW

This commit is contained in:
Ycarus (Yannick Chabanois) 2021-10-22 15:34:45 +02:00
parent c5889009cb
commit f7179d5455

View file

@ -0,0 +1,7 @@
#!/bin/sh /etc/rc.common
START=10
boot() {
[ "$(mount | grep '/dev/root' | grep 'ext4' | grep '(ro')" != "" ] && mount -o remount,rw /dev/root
}