diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2019-07-19 08:47:12 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2019-07-19 08:47:12 -0400 |
| commit | 72523795b9e71211a2d3d807e266c09d4882dca3 (patch) | |
| tree | 1704a0bb2470044c3f08e74fe172017816eafb88 | |
| parent | dac64e0cde49d56026f15f9762bad533c0ef3442 (diff) | |
add more detailed fastboot instructions
| -rw-r--r-- | static/install.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/static/install.html b/static/install.html index c138290f..b1f8f12e 100644 --- a/static/install.html +++ b/static/install.html @@ -90,6 +90,22 @@ scheme for platform-tools (adb, fastboot, etc.) with their own scheme and don't keep it up-to-date despite that being crucial.</p> + <p>If your distribution doesn't have a proper fastboot package, which is likely, + consider using the official releases of platform-tools from Google. You can either + obtain these as part of the standalone SDK or Android Studio which are self-updating + or via the standalone platform-tools releases. For one time usage, it's easiest to + obtain the <a href="https://developer.android.com/studio/releases/platform-tools">latest + standalone platform-tools release</a>, extract it and add it to your <code>PATH</code> + in the current shell. For example:</p> + + <pre>unzip platform-tools_r29.0.1-linux.zip +export PATH="$PWD/platform-tools:$PATH"</pre> + + <p>Sample output from <code>fastboot --version</code> afterwards:</p> + + <pre>fastboot version 29.0.1-5644136 +Installed as /home/username/downloads/platform-tools/fastboot</pre> + <p>Don't proceed with the installation process until this is set up properly in your current shell. A very common mistake is using an outdated copy of <code>fastboot</code> from a Linux distribution package not receiving regular updates. |
