Changes between Initial Version and Version 1 of flashgc


Ignore:
Timestamp:
11/08/11 22:51:15 (12 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • flashgc

    v1 v1  
     1= flashgc (by skorgon) =
     2
     3flashgc is a tool for the HTC android phones to create a goldcard directly on the phone without the use of a external card reader or external service.
     4
     5It creates the goldcard image standalone and writes it to the micro-sdcard that is in the phone.
     6== License ==
     7flashgc is licensed under the GPL v3.
     8
     9It's source code can be found at [https://github.com/skorgon/flashgc].
     10
     11'''Please respect the license'''!
     12
     13== Mini How-To ==
     14Download flashgc that is in the attachments of this page and copy it to your platform-tools directory.
     15
     16temp-root your phone and then do from a terminal / command window from within your platform-tools directory:
     17{{{
     18adb push flashgc /data/local/tmp
     19adb shell
     20cd /data/local/tmp
     21./flashgc
     22}}}
     23
     24== flashgc and it's options ==
     25
     26{{{
     27flashgc usage:
     28Usage:
     29        ./flashgc [options]
     30Options:
     31        --help                          Print this help message and exit.
     32        --cid <cid>                     Read CID from file <cid>.
     33        --backupfile <file>             Specify a path and file for the backup.
     34        --restore <backup image>        Restore backup image to sd-card.
     35        --dumpgc                        Dump gold-card image to a file.
     36}}}
     37
     38'''Note'''
     39Running flashgc without options will generate and install the goldcard image to your sdcard and creade a backup file of the first 512bit of the sdcard in your current directory that is called sdcardMbr-backup.img.
     40
     41So make sure that you either run flashgc from a directory like /data/local/tmp or specify the --backupfile option.