Differences between revisions 1 and 2
Revision 1 as of 2016-01-09 16:44:25
Size: 236
Editor: PieterSmit
Comment:
Revision 2 as of 2016-01-10 16:47:19
Size: 1574
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:
 * 2016-01 Problem the sg-i9001 just loops on "teamwin" blue screen, not booting.
   * adb shell works while the screen loops, and i can push files to the phone.
   * from http://forum.xda-developers.com/showthread.php?t=1694617 got
     * 2.3.2.1 as flashable image file
   * fastboot devices http://wiki.cyanogenmod.com/wiki/Fastboot
   * fixed with
     * adb shell
       * /sdcard # dd if=twrp2.3.2.1-recovery.img of=/dev/block/mmcblk0p13
       * found partition from # cat fstab.qcom

   HBOOT
   * Recovery using adb
     1. adb push twrp2.3.2.1-recovery.img /sdcard/.
     1. adb shell
        1. flash_image recovery /sdcard/twrp2.3.2.1-recovery.img
        1. # flash_image partition file.img
adb push flash_image /data/local
adb push recovery.img /sdcard
chmod 755 /data/local/flash_image

     /android/gt-i9001-s+# adb push flash_image /sdcard/
     /android/gt-i9001-s+# adb push twrp2.3.2.1-recovery.img /sdcard/recovery.img
 cp /sdcard/flash_image /system/bin
cd /system/bin
chmod 777 flash_image
/system # cp /sdcard/recovery.img .
# cat fstab.qcom | grep rec


 * Reboot into fastboot mode with abd
   * grab new usb id 04e8:6601 Samsung Electronics Co., Ltd Mobile Phone
   * new udev file
   * 04e8:685e Samsung Electronics Co., Ltd GT-I9100 / GT-C3350 Phones (USB Debugging mode)

adb - Android debug

adb start-server

adb reboot-bootloader adb root

adb logcat

adb push C:\SANKET\apps\papertoss.apk /sdcard/nimbuzz

adb shell Run remote shell interactively

  • 2016-01 Problem the sg-i9001 just loops on "teamwin" blue screen, not booting.
    • adb shell works while the screen loops, and i can push files to the phone.
    • from http://forum.xda-developers.com/showthread.php?t=1694617 got

      • 2.3.2.1 as flashable image file
    • fastboot devices http://wiki.cyanogenmod.com/wiki/Fastboot

    • fixed with
      • adb shell
        • /sdcard # dd if=twrp2.3.2.1-recovery.img of=/dev/block/mmcblk0p13
        • found partition from # cat fstab.qcom
      HBOOT
    • Recovery using adb
      1. adb push twrp2.3.2.1-recovery.img /sdcard/.
      2. adb shell
        1. flash_image recovery /sdcard/twrp2.3.2.1-recovery.img
        2. # flash_image partition file.img

adb push flash_image /data/local adb push recovery.img /sdcard chmod 755 /data/local/flash_image

  • /android/gt-i9001-s+# adb push flash_image /sdcard/ /android/gt-i9001-s+# adb push twrp2.3.2.1-recovery.img /sdcard/recovery.img
  • cp /sdcard/flash_image /system/bin

cd /system/bin chmod 777 flash_image /system # cp /sdcard/recovery.img . # cat fstab.qcom | grep rec

  • Reboot into fastboot mode with abd
    • grab new usb id 04e8:6601 Samsung Electronics Co., Ltd Mobile Phone
    • new udev file
    • 04e8:685e Samsung Electronics Co., Ltd GT-I9100 / GT-C3350 Phones (USB Debugging mode)

...

mobilephone/adb (last edited 2019-12-24 11:10:28 by PieterSmit)