Skip to content

Commit 109b615

Browse files
committed
Update fp3 config
1 parent 6af5ed7 commit 109b615

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

openandroidinstaller/assets/configs/FP3.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ steps:
1818
adapting and repairing of the operating system.
1919
- title: "Flash a custom recovery"
2020
type: call_button
21-
content: Once the device is fully booted, you need to reboot into the bootloader again by pressing 'Confirm and run' here. Then continue.
21+
content: Turn on your device. Once the device is fully booted, you need to reboot into the bootloader again by pressing 'Confirm and run' here. Then continue.
2222
command: "adb reboot bootloader"
2323
- title: "Flash a custom recovery"
2424
type: call_button
25-
content: Flash a custom recovery (temporarily) by pressing 'Confirm and run'. Once it's done continue.
25+
content: Once the device is in fastboot mode, flash the custom recovery (temporarily) by pressing 'Confirm and run'. Once it's done continue.
2626
command: "fastboot flash boot <recovery>"
2727
- title: "Flash temporary recovery"
2828
type: confirm_button
@@ -33,7 +33,7 @@ steps:
3333
- title: "Flash LineageOS"
3434
type: confirm_button
3535
content: >
36-
Now tap Factory Reset, then Format data / Factory reset on your phone screen and continue with the formatting process.
36+
Now tap 'Factory Reset', then 'Format data / Factory reset' on your phone screen and continue with the formatting process.
3737
This will remove encryption and delete all files stored in the internal storage, as well as format your cache partition (if you have one).
3838
- title: "Flash LineageOS"
3939
type: confirm_button
@@ -49,4 +49,4 @@ steps:
4949
command: "adb sideload <image>"
5050
- title: "Flash LineageOS"
5151
type: confirm_button
52-
content: Flashing finished. Now press 'back' (arrow) and then 'Reboot system now' on the phone screen to finish the installation.
52+
content: Flashing finished. Now press 'back' (arrow) and then 'Reboot system now' on the phone screen to finish the installation. Then confirm here.

openandroidinstaller/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
def get_download_link(devicecode: str) -> Optional[str]:
2424
"""Check if a lineageOS version for this device exists on lineageosroms.com and return the respective download link."""
25-
url = f"https://lineageosroms.com/{devicecode}/"
25+
url = f"https://lineageosroms.com/{devicecode.lower()}/"
2626
try:
2727
logger.info(f"Checking {url}")
2828
# Get Url

0 commit comments

Comments
 (0)