Skip to content

Commit

Permalink
wiki: List device model numbers in the device_install template
Browse files Browse the repository at this point in the history
Change-Id: I266b3295cf694791ef4f7ec1eb85a269f52dcdfb
  • Loading branch information
ButterflyAtHeart authored and luk1337 committed Nov 26, 2024
1 parent 628da4b commit 9843749
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion _includes/templates/device_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ Do **not** continue after something fails!
2. Make sure your computer has `adb`{% unless device.install_method == 'heimdall' or device.install_method == 'dd' %} and `fastboot`{% endunless %}. Setup instructions can be found [here]({{ "adb_fastboot_guide.html" | relative_url }}).
3. Enable [USB debugging]({{ "adb_fastboot_guide.html#setting-up-adb" | relative_url }}) on your device.
{%- if device.models %}
4. Make sure that your model is actually listed in the "Supported models" section [here]({{ device | device_link | append: "#supported-models" | relative_url }}) (exact match required!)
4. Make sure that your model number is one of the following (exact match required!):
{%- for model in device.models %}
* {{ model }}
{%- endfor %}
{%- endif %}
5. Boot your device with the stock OS at least once and check every functionality.
{%- if device.type == "phone" %}
Expand Down

0 comments on commit 9843749

Please sign in to comment.