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

Merge pull request #185 from Ysurac/develop

Dirty script to always mount FS as RW
This commit is contained in:
suyuan 2021-10-23 02:01:44 +08:00 committed by GitHub
commit b022070396
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
}