Changes between Version 6 and Version 7 of SamsungGalaxyXcover2


Ignore:
Timestamp:
12/28/17 13:07:24 (6 years ago)
Author:
Rick van der Zwet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SamsungGalaxyXcover2

    v6 v7  
    80801. Enjoy your rooted phone
    8181
     82== Reset to factory defaults ==
     83 $ unzip XEN-S7710XWAOB1-20150206063723.zip
     84 $ tar -xf S7710XWAOB1_S7710XENAOA2_HOME.tar.md5
     85 $ ls *.img
     86{{{
     87 boot.img  cache.img  hidden.img  recovery.img  STE_boot1.img  STE_boot2.img  system.img
     88}}}
     89 
     90
     91 Use the PIT file to find out the mapping between image files and partition name to use:
     92 $ heimdall print-pit --file ./S7710.pit | grep -e '---' -e 'Partition Name' -e 'Flash Filename'
     93{{{
     94--- Entry #0 ---
     95Partition Name: MBR,GPT
     96Flash Filename:
     97--- Entry #1 ---
     98Partition Name: MasterTOC
     99Flash Filename: STE_boot.bin
     100--- Entry #2 ---
     101Partition Name: PIT
     102Flash Filename: skomerxx.pit
     103--- Entry #3 ---
     104Partition Name: MD5HDR
     105Flash Filename: md5.img
     106--- Entry #4 ---
     107Partition Name: STEboot1
     108Flash Filename: STE_boot1.img
     109--- Entry #5 ---
     110Partition Name: STEboot2
     111Flash Filename: STE_boot2.img
     112--- Entry #6 ---
     113Partition Name: Dnt
     114Flash Filename: dnt.ssw
     115--- Entry #7 ---
     116Partition Name: reserved
     117Flash Filename:
     118--- Entry #8 ---
     119Partition Name: CSPSAFS
     120Flash Filename: cspsa.img
     121--- Entry #9 ---
     122Partition Name: CSPSAFS2
     123Flash Filename: cspsa2.img
     124--- Entry #10 ---
     125Partition Name: EFS
     126Flash Filename: EFS.img
     127--- Entry #11 ---
     128Partition Name: ModemFS
     129Flash Filename: modemfs.img
     130--- Entry #12 ---
     131Partition Name: ModemFS2
     132Flash Filename: modemfs2.img
     133--- Entry #13 ---
     134Partition Name: Fota
     135Flash Filename: ssgtest.img
     136--- Entry #14 ---
     137Partition Name: IPL Modem
     138Flash Filename: ipl.bin
     139--- Entry #15 ---
     140Partition Name: Modem
     141Flash Filename: modem.bin
     142--- Entry #16 ---
     143Partition Name: Loke4
     144Flash Filename: normal.bin
     145--- Entry #17 ---
     146Partition Name: 2ndLoke4
     147Flash Filename: normal2.bin
     148--- Entry #18 ---
     149Partition Name: PARAM
     150Flash Filename: param.lfs
     151--- Entry #19 ---
     152Partition Name: Kernel
     153Flash Filename: boot.img
     154--- Entry #20 ---
     155Partition Name: Kernel2
     156Flash Filename: recovery.img
     157--- Entry #21 ---
     158Partition Name: SYSTEM
     159Flash Filename: system.img
     160--- Entry #22 ---
     161Partition Name: CACHEFS
     162Flash Filename: cache.img
     163--- Entry #23 ---
     164Partition Name: HIDDEN
     165Flash Filename: hidden.img
     166--- Entry #24 ---
     167Partition Name: DATAFS
     168Flash Filename: userdata.img
     169}}}
     170
     171Ensure device is connected using a good quality USB cable, battery is changed and turn it on to download mode using simultaneous press of Volume Down + Home + Power.
     172
     173
     174Now flash the device:
     175 $ sudo /usr/local/bin/heimdall flash --pit ~/S7710.pit --STEboot1 ./STE_boot1.img --STEboot2 ./STE_boot2.img --Modem ./modem.bin --Kernel ./boot.img --Kernel2 ./recovery.img --SYSTEM ./system.img --CACHEFS ./cache.img --HIDDEN ./hidden.img 
     176{{{
     177Heimdall v1.4.2
     178
     179Copyright (c) 2010-2017 Benjamin Dobell, Glass Echidna
     180http://www.glassechidna.com.au/
     181
     182This software is provided free of charge. Copying and redistribution is
     183encouraged.
     184
     185If you appreciate this software and you would like to support future
     186development please consider donating:
     187http://www.glassechidna.com.au/donate/
     188
     189Initialising connection...
     190Detecting device...
     191Claiming interface...
     192Setting up interface...
     193
     194Initialising protocol...
     195Protocol initialisation successful.
     196
     197Beginning session...
     198
     199Some devices may take up to 2 minutes to respond.
     200Please be patient!
     201
     202Session begun.
     203
     204Downloading device's PIT file...
     205PIT file download successful.
     206
     207Uploading STEboot1
     208100%
     209STEboot1 upload successful
     210
     211Uploading STEboot2
     212100%
     213STEboot2 upload successful
     214
     215Uploading Modem
     216100%
     217Modem upload successful
     218
     219Uploading Kernel
     220100%
     221Kernel upload successful
     222
     223Uploading Kernel2
     224100%
     225Kernel2 upload successful
     226
     227Uploading SYSTEM
     228100%
     229SYSTEM upload successful
     230
     231Uploading CACHEFS
     232100%
     233CACHEFS upload successful
     234
     235Uploading HIDDEN
     236100%
     237HIDDEN upload successful
     238
     239Ending session...
     240Rebooting device...
     241Releasing device interface...
     242}}}
    82243= References =
    83244* Heimdall 1.3.1 is NOT working, make sure to use a higher version.