Hello,
I am using imx8mq in android8.1. Now I want to remount /system to rw. I use the following command
1|evk_8mq:/dev/block # mount -o rw,remount /system
but the result is:
mount: '/system' not in /proc/mounts
Who can tell me how to do to remount /system?
Thanks!
Hi pingyuchen,
Follow this step,
1, adb shell
2, reboot bootloader
3, fastboot oem unlock
Reboot the devices,
4, adb root
5, adb disable-verity
6, adb root
7, adb reboot
8, adb remount
9, adb push <Path where your file is located> /system/app/
Wait until finish
10, adb reboot
Thanks & Regards,
VinothS,
Hi VinothS,
Thank you very much. Now I can remount it.
Alternatively you can set both device and mountpoint to the command:
# mount -o rw,remount /path/to/the/partition /system