Changes between Version 24 and Version 25 of gfree


Ignore:
Timestamp:
09/25/12 21:51:26 (12 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • gfree

    v24 v25  
    22
    33See [http://forum.xda-developers.com/wiki/index.php?title=HTC_Vision#How_To_Get_R.2FW_Access_.28Permanent_Root_.2F_.22Permaroot.22.29] for instructions.
     4
     5== gfree version 0.9 contained in gfree_09.zip ==
     6Changes:
     7* changed the functionality of the -w (or --disable_wp) option. It is now a yes|no option. Default is yes.
     8{{{
     9        -w | --disable_wp yes|no: disable write protect on eMMC
     10}}}
     11* added the -k (or --disable_kf) option. It is a yes|no option that can be used to turn off (or on) the functionality to remove the kernel filter that prohibits writes to low eMMC areas. Default is yes.
     12{{{
     13        -k | --disable_kf yes|no: remove kernel filter
     14}}}
     15* changed the functionality of the -b (or --hboot) option. It calculates and checks md5sums of the partition 18 before the installation (md5sum #1), of the hboot image (md5sum #2) that is to be installed and of partition 18 after the installation (md5sum #3).
     16
     17If md5sum #1 is equal to md5sum #2 the hboot image is already installed and gfree will skip the installation. The output would be something like:
     18{{{
     19Backing up current partition 18 and installing specified hboot image...
     20md5sum #1 = 7669ae12dc2faa10ae555a164980efd0
     21md5sum #2 = 7669ae12dc2faa10ae555a164980efd0
     22md5sum #1 == md5sum #2 - the hboot image is already installed -> skipping installation
     23}}}
     24If this is not the case gfree will write the hboot image to partition 18 and calculate md5sum #3 after the installation.
     25
     26If md5sum #2 is equal to md5sum #3 the installation was successful and the output would be something like:
     27{{{
     28Backing up current partition 18 and installing specified hboot image...
     29md5sum #1 = 7669ae12dc2faa10ae555a164980efd0
     30md5sum #2 = 2ce1bdd5e4c1119ccfcecb938710d742
     31Backing up partition /dev/block/mmcblk0p18 to /sdcard/part18backup-1348606912.bin ...
     32Writing image dz_hboot-eng.img to partition /dev/block/mmcblk0p18 ...
     33md5sum #3 = 2ce1bdd5e4c1119ccfcecb938710d742
     34md5sum #3 == md5sum #2 - the hboot image was successfully installed -> OK!
     35}}}
     36
     37If md5sum #2 is NOT equal to md5sum #3 the installation was NOT successful and the output would be something like:
     38{{{
     39...
     40md5sum #3 != md5sum #2 - the hboot image was NOT successfully installed -> PANIC!!!
     41DO NOT REBOOT and join the IRC channel #G2Root on Freenode for further help!!!
     42}}}
    443
    544== gfree version 0.7 contained in gfree_07.zip ==