yifanlu / KindleTool

Tool for creating/extracting Kindle updates and more
106 stars 59 forks source link

usage: KindleTool dm [ ] [ ] Obfuscates data using Amazon's update algorithm. If no input is provided, input from stdin If no output is provided, output to stdout

KindleTool md [ ] [ ] Deobfuscates data using Amazon's update algorithm. If no input is provided, input from stdin If no output is provided, output to stdout

KindleTool convert [options] Converts a Kindle update package to a gzipped TAR file, and delete input

Options:
  -c, --stdout                Write to standard output, keeping original files unchanged
  -i, --info                  Just print the package information, no conversion done
  -s, --sig <output>          OTA V2 updates only. Extract the package signature to <output> file.

KindleTool extract Extracts a Kindle update package to a directory

KindleTool create [options] <dir|file> [ ] Creates a Kindle update package If input is a directory, all files in it will be packed into an update If input is a GZIP file, it will be converted to an update. If no output is provided, output to stdout. In case of OTA updates, all files with the extension ".ffs" and will be treated as update scripts

Type:
  ota                         OTA V1 update package. Works on Kindle 3.0 and below.
  ota2                        OTA V2 signed update package. Works on Kindle 4.0 and up.
  recovery                    Recovery package for restoring partitions.

Devices:
  OTA V1 packages only support one device. OTA V2 packages can support multiple devices.

  -d, --device k1             Kindle 1
  -d, --device k2             Kindle 2 US
  -d, --device k2i            Kindle 2 International
  -d, --device dx             Kindle DX US
  -d, --device dxi            Kindle DX International
  -d, --device dxg            Kindle DX Graphite
  -d, --device k3w            Kindle 3 Wifi
  -d, --device k3g            Kindle 3 Wifi+3G
  -d, --device k3gb           Kindle 3 Wifi+3G Europe
  -d, --device k4             Kindle 4 (No Touch)
  -d, --device k5w            Kindle 5 (Kindle Touch) Wifi
  -d, --device k5g            Kindle 5 (Kindle Touch) Wifi+3G

Options:
  All the following options are optional and advanced.
  -k, --key <file>            PEM file containing RSA private key to sign update. Default is popular jailbreak key.
  -b, --bundle <type>         Manually specify package magic number. Overrides "type". Valid bundle versions:
                                FB01, FB02 = recovery; FC02, FD03 = ota; FC04, FD04, FL01 = ota2
  -s, --srcrev <ulong|uint>   OTA updates only. Source revision. OTA V1 uses uint, OTA V2 uses ulong.
                                Lowest version of device that package supports. Default is 0.
  -t, --tgtrev <ulong|uint>   OTA updates only. Target revision. OTA V1 uses uint, OTA V2 uses ulong.
                                Highest version of device that package supports. Default is max int value.
  -1, --magic1 <uint>         Recovery updates only. Magic number 1. Default is 0.
  -2, --magic2 <uint>         Recovery updates only. Magic number 2. Default is 0.
  -m, --minor <uint>          Recovery updates only. Minor number. Default is 0.
  -c, --cert <ushort>         OTA V2 updates only. The number of the certificate to use (found in /etc/uks on device). Default is 0.
                                0 = pubdevkey01.pem, 1 = pubprodkey01.pem, 2 = pubprodkey02.pem
  -o, --opt <uchar>           OTA V1 updates only. One byte optional data expressed as a number. Default is 0.
  -r, --crit <uchar>          OTA V2 updates only. One byte optional data expressed as a number. Default is 0.
  -x, --meta <str>            OTA V2 updates only. An optional string to add. Multiple "--meta" options supported.
                                Format of metastring must be: key=value

KindleTool info Get the default root password

notices: 1) Kindle 4.0+ has a known bug that prevents some updates with meta-strings to run. 2) Currently, even though OTA V2 supports updates that run on multiple devices, it is not possible to create a update package that will run on both the Kindle 4 (No Touch) and Kindle 5 (Kindle Touch).