7 lines
148 B
Bash
7 lines
148 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Device must be rooted!!"
|
||
|
echo "login as adb shell"
|
||
|
echo "remount /system/ as rw"
|
||
|
adb shell && su && mount -o rw,remount /system
|