Skip to main content

How To Flash / Install Firmware Samsung Galaxy Mini S5570




This Tutorial is about flashing firmware on your Samsung Galaxy Mini S5570 . I posted a step by and easy tutorials , please read complete guide once and then apply , if you skip any step then you will have bricked phone.
Disclaimer: Follow this Guide on your risk and if your device gets damaged or bricked during the process, DJ-Android is not responsible.

Download required things

  1. Download ODIN v4.38  – it is a tool that is used to flash firmware on your phone
  2. Drivers – Download and install drivers that are required to detect your phone by pc
  3. Download Firmware for your phone
  4. Download  TASS_v1.0.ops File
  5. An Archive (.zip / .rar) file extractor, usually all pc owners have this tool . In case you don’t have any use7zip archive extractor

Instructions to Install Firmware on Galaxy Mini S5570

  • First extract SAMSUNG_USB.rar and install drivers on pc
  • Extract Firmware files on safe place, you will get some .tar files , please don’t extract .tar files
  • Run S5570_Odin Multi Downloader v4.38.exe by right click and select run as administrator  

  • Make sure you have Auto Reboot and Protect OPS checked
  • Click on OPS box in odin and select TASS_v1.0.ops  


  • Now its time to Select .tar files from firmware folder,    =>(A)  If you got three or more files then 

    Click on BOOT tab and select file with  APBOOT in the name 
    Click on PHONE tab and Select .tar file with MODEM in the name 
    Click on PDA tab and Select .tar file with CODE / PDA in the name 
    Click on CSC tab and Select .tar file csc / csc-multi in the name  
    Choose Nothing in  EFS 
    (See Image below to understand which files to select)    

=>(B)  If you got only single files , then  Check One package check box then Click the One package tab , and select single pack .tar file
  •  Switch off your phone
  • Now boot it in download mode , to do that press & hold volume down and middle key and while holding both press power on key  
  • Connect your phone to PC with the help of USB cable ,
  • Just after connecting you will see first box from left in odin will turn yellow and ADDED message will appear, that means your phone is ready to start flashing process 
  • If you done all above step successfully then you can hit “START” button in odin to begin flashing process 
  • Do not disconnect the cable or turn off the device, wait for 5 minutes , your phone will reboot after successful installation. COM Port box should indicate blue color and display “PASS” it means flashing process was successful  



Congratulations you have successfully installed firmware on your Samsung Galaxy Mini S5570, Now last step left is

Clearing Cache Data

  1. boot your phone in recovery mode ,to do that  press and hold MIDDLE KEY + POWER ON
  2. you will see your phone booted in recovery mode , in recovery mode touch screen will not work so use volume UP and Down navigate through options and MIDDLE KEY to confirm
  3. choose “wipe cache partition” from menu
  4. it will clear the cache data
  5. now select reboot system now



Comments

  1. THANK YOU VERY MUCH!!!! I bricked my phone and with your help I made it work again!!!

    ReplyDelete
    Replies
    1. search on xdadevelopers... replace old rom if you have backup..

      Delete

Post a Comment

Popular posts from this blog

Android - Google MAP V2 PART 3 (add Polyline)

Download Full Code  of  PART-1 , 2 , 3 , 4 Before go ahead Please look in to PART-1 & PART-2 I have just modify Main Activity class: package com.djandroid.mapsv2; import android.graphics.Color; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.GoogleMap.OnMapClickListener; import com.google.android.gms.maps.GoogleMap.OnMarkerClickListener; import com.google.android.gms.maps.SupportMapFragment; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.Marker; import com.google.android.gms.maps.model.MarkerOptions; import com.google.android.gms.maps.model.Polyline; import com.google.android.gms.maps.model.PolylineOptions; public class MainActivity extends FragmentActivity { private GoogleMap MAP; private boolean markClic...

Android show Data from Sqlite DB into Grid View

Shaadi.com Matrimonials Shaadi.com Indian Matrimonials Your Main Activity class package com . Sqlite_grid_view ; import java . util . ArrayList ; import java . util . List ; import android . app . Activity ; import android . os . Bundle ; import android . util . Log ; import android . view . View ; import android . widget . AdapterView ; import android . widget . AdapterView . OnItemClickListener ; import android . widget . ArrayAdapter ; import android . widget . GridView ; import android . widget . TextView ; import android . widget . Toast ; public class AndroidSQLiteTutorialActivity extends Activity { private GridView gridView ; public static ArrayList < String > ArrayofName = new ArrayList < String >(); /** Called when the activity is first created. */ @ Override public void onCreate ( Bundle savedInstanceState ) { super . onCreate ( savedInstanceState ); setContentView ( R . l...

Connecting mysql Database in ANDROID using PHP & JSON

 To implement this tutorial you should have basic knowledge of how to run PHP script and start server.  If we talk about client-server architecture, client is Android device and in server side there is a combination of PHP Script and MySQL. In short, PHP Script sits in middle as shown in image. Lets suppose that we have a MySQL database named Employee, and a table int created, with the following SQL: CREATE TABLE `employee` (   `emp_id` int(11) NOT NULL auto_increment,   `emp_name` varchar(100) NOT NULL,   PRIMARY KEY  (`emp_id`) ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; The PHP code will be very simple: Now Create Android Project :  The Android part is only a bit more complicated: -use a HttpPost to get the data -convert response to string -parse JSON data in to List In Your First Activity : O/P :