mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 07:51:46 +02:00
6 lines
182 B
Bash
Executable file
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;
|