You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openandroidinstaller/views/select_view.py
+20-5Lines changed: 20 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@
30
30
FilePicker,
31
31
FilePickerResultEvent,
32
32
)
33
+
fromflet.buttonsimportCountinuosRectangleBorder
33
34
34
35
fromviewsimportBaseView
35
36
fromapp_stateimportAppState
@@ -56,16 +57,30 @@ def build(self):
56
57
title=Text("What is an OS image and recovery and why do I need it?"),
57
58
content=Markdown(
58
59
"""
59
-
To do this, tap seven times on the build number in the 'System'- or 'About the phone'-Menu in Settings. You can also use the phones own search to look for `build number`.
60
-
Then go back to the main menu and look for 'developer options'. You can also search for it in your phone.
61
-
When you are in developer options, toggle OEM unlocking and USB-Debugging. If your phone is already connected to your PC, a pop-up might appear. Allow USB debugging in the pop-up on your phone.
62
-
Now you are ready to continue.
63
-
"""
60
+
## OS image or ROM
61
+
An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs.
62
+
Popular, custom operating systems for mobile devices based on Android are
63
+
- [LineageOS](https://lineageos.org/)
64
+
- [/e/OS](https://e.foundation/e-os/) or
65
+
- [LineageOS for microG](https://lineage.microg.org/)
66
+
- and many others.
67
+
68
+
Often, the related OS images are called 'ROM'. 'ROM' stands for *R*ead-*o*nly *m*emory, which is a type of non-volatile memory used in computers
69
+
for storing software that is rarely changed during the life of the system, also known as firmware.
70
+
71
+
# Recovery Image
72
+
A custom recovery is used for installing custom software on your device.
73
+
This custom software can include smaller modifications like rooting your device or even
74
+
replacing the firmware of the device with a completely custom ROM. .
75
+
76
+
OpenAndroidInstaller works with the [TWRP recovery project](https://twrp.me/about/).
0 commit comments