J
jedie
Fortgeschrittenes Mitglied
- 35
Das Paket von [CWM][ICS]CWM Recovery 6.0.1.2 for Locked Bootloader[v1.0][29/11/2012] - xda-developers kann man auch unter Linux flashen...
Dazu muß nur die enthaltene "install.bat" ein wenig auf bash skript umformatiert werden und gut. z.B.:
Die ausgabe davon (weil set -x):
In meinem Fall mußte ich noch vorher die udev Regeln anpassen:
/etc/udev/rules.d/51-android.rules
Dazu muß nur die enthaltene "install.bat" ein wenig auf bash skript umformatiert werden und gut. z.B.:
Code:
set -x
adb kill-server
adb start-server
adb wait-for-device
adb shell "mkdir /data/local/tmp/cwm"
adb push chargemon /data/local/tmp/cwm
adb push charger /data/local/tmp/cwm
adb push recovery.tar /data/local/tmp/cwm
adb push sh /data/local/tmp/cwm
adb push step3.sh /data/local/tmp/cwm
adb shell "chmod 755 /data/local/tmp/cwm/sh"
adb shell "chmod 755 /data/local/tmp/cwm/step3.sh"
adb shell "su -c /data/local/tmp/cwm/step3.sh"
adb shell "rm -r /data/local/tmp/cwm"
adb kill-server
Die ausgabe davon (weil set -x):
+ adb kill-server
+ adb start-server
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
+ adb wait-for-device
+ adb shell 'mkdir /data/local/tmp/cwm'
+ adb push chargemon /data/local/tmp/cwm
17 KB/s (738 bytes in 0.041s)
+ adb push charger /data/local/tmp/cwm
2566 KB/s (63456 bytes in 0.024s)
+ adb push recovery.tar /data/local/tmp/cwm
5282 KB/s (2723840 bytes in 0.503s)
+ adb push sh /data/local/tmp/cwm
6095 KB/s (735308 bytes in 0.117s)
+ adb push step3.sh /data/local/tmp/cwm
14 KB/s (596 bytes in 0.040s)
+ adb shell 'chmod 755 /data/local/tmp/cwm/sh'
+ adb shell 'chmod 755 /data/local/tmp/cwm/step3.sh'
+ adb shell 'su -c /data/local/tmp/cwm/step3.sh'
remount rw /system
copy recovery.tar to system.
copy chargemon to system.
copy charger to system.
copy sh to system.
remount ro /system
+ adb shell 'rm -r /data/local/tmp/cwm'
+ adb kill-server
In meinem Fall mußte ich noch vorher die udev Regeln anpassen:
/etc/udev/rules.d/51-android.rules
Code:
SUBSYSTEM=="usb", ATTR{idVendor}=="0fce", ATTR{idProduct}=="5173", MODE="0666"