asuswrt-merlin.ng/release/src-rt-5.02axhnd/router-sysdep.rt-ax92u/scripts/fsys/rw-rootfs.sh
2022-10-02 16:38:00 +02:00

6 lines
182 B
Bash
Executable file

#!/bin/sh
if grep -q rootfs_ubifs /proc/mtd ; # grab line with "rootfs_ubifs"
then # UBIFS partition "rootfs_ubifs" was found
mount -t ubifs ubi:rootfs_ubifs / -o remount,rw ;
fi;