Captain Throwback | 4747777 | 2020-12-01 17:29:33 -0500 | [diff] [blame] | 1 | --- |
| 2 | layout: device |
| 3 | title: "ASUS ZenFone 7/7 Pro" |
| 4 | codename: I002D |
| 5 | oem: ASUS |
| 6 | downloadfolder: I002D |
| 7 | supportstatus: Current |
| 8 | maintainer: Captain_Throwback |
| 9 | devicetree: https://github.com/TeamWin/android_device_asus_I002D |
Captain Throwback | 474ab80 | 2021-11-28 16:56:34 -0500 | [diff] [blame] | 10 | xdathread: https://forum.xda-developers.com/asus-zenfone-7/development/recovery-twrp-asus-zenfone-7-series-t4161719 |
| 11 | zuliptopic: https://twrp.zulipchat.com/#narrow/stream/290973-support-device/topic/ASUS.20ZenFone.207 |
Captain Throwback | 4747777 | 2020-12-01 17:29:33 -0500 | [diff] [blame] | 12 | --- |
| 13 | |
| 14 | |
| 15 | {% include disclaimer.html %} |
| 16 | |
| 17 | |
| 18 | {% include supportstatus.html %} |
| 19 | |
| 20 | |
| 21 | {% include dynamicpartitions.html %} |
| 22 | |
| 23 | |
| 24 | {% include download.html %} |
| 25 | |
| 26 | |
| 27 | {% include twrpinstall.html %} |
Captain Throwback | 9f9d4de | 2021-10-26 11:54:20 -0400 | [diff] [blame] | 28 | <b>NOTE:</b> By default, only the current slot will be flashed. Checking the \"Flash to both slots\" box will flash to both the active and inactive slots. |
Captain Throwback | 4747777 | 2020-12-01 17:29:33 -0500 | [diff] [blame] | 29 | |
| 30 | |
| 31 | <html> |
| 32 | <div class='page-heading' id='fastboot-install'>Fastboot Install Method (No Root Required):</div> |
| 33 | <a id='fastboot'></a> |
| 34 | <hr /> |
| 35 | <p class="text"><a href="https://developer.android.com/studio/releases/platform-tools">You will need the platform-tools from the Android SDK on your computer.</a> Download the platform-tools as per your operating system.</p> |
| 36 | <p class="text">Windows users will need proper drivers installed on their computer. You can try the <a href="https://forum.xda-developers.com/android/software-hacking/live-iso-adb-fastboot-driver-issues-t3526755" target=_blank>simple FWUL adb/fastboot ISO</a> or the <a href="https://forum.xda-developers.com/google-nexus-5/development/adb-fb-apx-driver-universal-naked-t2513339">Naked ADB drivers</a> or the <a href="https://adb.clockworkmod.com/">Universal ADB drivers</a> if you don't already have a working driver installed</p> |
| 37 | <p class="text">On your device, go into Settings -> About and find the Build Number and tap on it 7 times to enable developer settings. Press back and go into Developer Options and enable USB debugging. From your computer, open a command prompt and type:</p> |
| 38 | <p class="code">adb reboot bootloader</p> |
| 39 | <p class="text">You should now be in fastboot mode.</p> |
| 40 | <p class="text">Your device needs to be unlocked before it can flash custom images. To unlock your device, use <a href="https://www.asus.com/Mobile/Phones/ZenFone/ZenFone-7/HelpDesk_Download">the official ASUS app</a>.</p> |
| 41 | <p class="text">Download the correct image file and copy the file into the same folder as your platform-tools. Rename the image to twrp.img and type:</p> |
| 42 | <p class="code">fastboot flash recovery\_a twrp.img</p> |
| 43 | <p class="code">fastboot flash recovery\_b twrp.img</p> |
| 44 | <p class="code">fastboot reboot</p> |
| 45 | </html> |
| 46 | |
| 47 | |
| 48 | <html> |
| 49 | <div class='page-heading'>dd Install Method (Requires Root):</div> |
| 50 | <a id='dd'></a> |
| 51 | <hr /> |
| 52 | <p class="text">Download the latest image file (.img) from the download link above. Place it in the root of your /sdcard folder and rename it to twrp.img. Run the following commands via adb shell or a terminal emulator app:</p> |
| 53 | <p class="code">su</p> |
| 54 | <p class="code">dd if=/sdcard/twrp.img of=/dev/block/by-name/recovery\_a</p> |
| 55 | <p class="code">dd if=/sdcard/twrp.img of=/dev/block/by-name/recovery\_b</p> |
| 56 | </html> |
Captain Throwback | 474ab80 | 2021-11-28 16:56:34 -0500 | [diff] [blame] | 57 | |