timmy10shoes
Member
Should be fixed
You Tube will work without Flash. Is Flash installed? Because on mine it was not, I had to manually install it. If it is installed then hit it in manage apps and delete all the cache and data and then uninstall and reinstall from the market.
@echo off
:ask_flash
set /p yesno=Are you sure you want to flash back to 902? (y/n)
if "%yesno%"=="y" goto flash_it
if "%yesno%"=="n" goto end
goto ask_flash
:flash_it
cls
echo Flashing 902 now...
ECHO * Fastboot flashing needed partitions...This will take about 5-10 minutes
moto-fastboot reboot-bootloader
moto-fastboot flash mbm allow-mbmloader-flashing-mbm.bin
moto-fastboot reboot-bootloader
moto-fastboot flash mbmloader mbmloader.bin
moto-fastboot flash mbm mbm.bin
moto-fastboot reboot-bootloader
moto-fastboot flash cdt.bin cdt.bin
moto-fastboot flash logo.bin logo.bin
moto-fastboot flash ebr ebr
moto-fastboot flash mbr mbr
moto-fastboot flash devtree device_tree.bin
moto-fastboot flash system system.img
moto-fastboot flash boot boot.img
moto-fastboot flash recovery recovery.img
moto-fastboot flash cdrom cdrom
moto-fastboot flash preinstall preinstall.img
moto-fastboot flash webtop grfs.img
cls
ECHO Successfully flashed to 902! Follow the next steps:
ECHO Turn off the phone
ECHO Hold volume up and down at the same time, press power
ECHO When the menu comes up, volume down to Recovery, then press volume up
ECHO Wait for the Android to show up, then press volume up and down at the same time
ECHO Select 'apply update from sdcard' and select the 905 update
ECHO Select 'apply update from sdcard' and select the latest ICS update
ECHO Select 'wipe cache partition'
ECHO Select 'reboot system now'
pause
ECHO Checking for razrs_edge root method
if not exist razrs_edge_windows goto end
set yesno=
:ask_root
set /p yesno=Do you wish to apply root? (y/n)
if "%yesno%"=="y" goto root
if "%yesno%"=="n" goto end
goto ask_root
:root
cls
cd razrs_edge_windows
call run.bat
:end
ECHO You have completed the upgrade. Thank you!
pause
moto-fastboot reboot-bootloader
moto-fastboot flash mbm allow-mbmloader-flashing-mbm.bin
moto-fastboot reboot-bootloader
moto-fastboot flash mbmloader mbmloader.bin
moto-fastboot flash mbm mbm.bin
moto-fastboot reboot-bootloader
moto-fastboot flash cdt.bin cdt.bin
moto-fastboot flash logo.bin logo.bin
moto-fastboot flash ebr ebr
moto-fastboot flash mbr mbr
moto-fastboot flash devtree device_tree.bin
moto-fastboot flash system system.img
moto-fastboot flash boot boot.img
moto-fastboot flash recovery recovery.img
moto-fastboot flash cdrom cdrom
moto-fastboot flash preinstall preinstall.img
moto-fastboot flash webtop grfs.img
[/code]