I wonder if it is a proper way to flash CWM like below (all commands are executed on linux PC):
$ unzip x7-cwm-recovery.zip
$ adb connect <android device IP>
$ adb push x7-cwm-recovery.img /sdcard/
$ adb shell dd if=/sdcard/x7-cwm-recovery.img of=/dev/mtd/mtd3
<wait util the command above is finished>
$ adb reboot recovery
Such method looks easier since it doesn't require device to be rooted.
So should that method work?
Comment