Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: Released under the GNU General Public License version 3 by J2897.
- @echo OFF
- setlocal
- set "FASTBOOT=C:\Android\fastboot.exe"
- REM Make sure Fastboot is installed.
- if not exist "%FASTBOOT%" (
- echo File not found...
- echo %FASTBOOT%
- goto :End
- )
- if [%1]==[] (
- echo This script is meant only to speed up the process of flashing different
- echo recovery images.
- echo.
- echo WARNING: Don't use a recovery image that wasn't created for your specific model
- echo or else you will brick your device!
- echo.
- echo Boot into the boot loader on your Android device and plug it in via USB. Make
- echo sure it's in Fastboot mode. Then drag ^& drop a recovery image on top of
- echo this file. The recovery image should immediately be flashed onto your device.
- goto :End
- )
- "%FASTBOOT%" flash recovery "%1"
- :End
- endlocal
- echo.
- pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement