-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f69149
commit f440d9d
Showing
3 changed files
with
57 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,40 @@ | ||
# Anti bootloop | ||
Protection from bootloop. Press your button combination at boot to disable magisk modules | ||
> [Vol-] + [Power key], [Vol+] + [Power key], [Power key] + [Power key], [Vol+] + [Vol-]... OR just [Power key], [Vol+] and etc. | ||
###### [Touch screen] option | ||
[Touch screen] option is avaliable only in the button combination, this is trigering the module when you move your finger across the screen. [Touch screen] + [Vol+] for example | ||
[![](https://img.shields.io/github/downloads/Magisk-Modules-Alt-Repo/abootloop/total?logo=GitHub)](https://github.com/Magisk-Modules-Alt-Repo/abootloop/releases) | ||
[![](https://img.shields.io/github/license/Magisk-Modules-Alt-Repo/abootloop)](https://github.com/Magisk-Modules-Alt-Repo/abootloop/blob/main/LICENSE) | ||
|
||
Bootloop protection\ | ||
The module works in both `late_start` and `post-fs-data` modes | ||
|
||
## Usage | ||
### General | ||
Customize your button combination on module installation\ | ||
and press it in case of bootloop to disable all Magisk modules | ||
|
||
#### Button combination examples: | ||
- [Vol+] + [Power key] | ||
- [Power key] + [Power key] (double press) | ||
- [Vol+] + [Vol-] | ||
- [Touch screen] + [Vol-] | ||
|
||
OR just | ||
- [Power key] | ||
- [Vol+] | ||
|
||
and etc. | ||
> [!NOTE] | ||
> The [Touch screen] option triggers the module when you move your finger across the screen,\ | ||
> this is avaliable only in the button combination | ||
### Magisk action button | ||
The action button of this module **enables** all Magisk modules\ | ||
Also, it can be executed using a command like this: | ||
```shell | ||
sh /data/adb/modules/abootloop/action.sh | ||
``` | ||
|
||
### Custom recovery | ||
Rename the module zip file to `disableall.zip`\ | ||
and flash it in your custom recovery to disable all Magisk modules\ | ||
This will automatically mount `modules.img` | ||
> [!IMPORTANT] | ||
> Not all recoveries can mount `modules.img` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
- Fixed installation on devices without volume buttons | ||
- Compatibility improvements | ||
- Other minor improvements | ||
### v1.3.2 | ||
- Install process improvements | ||
- Disabling mechanism improvements | ||
- Action button (enabling all modules) | ||
- Modules disabling via custom recovery\ | ||
(flash this module as `disableall.zip`) | ||
|
||
[README.md](https://github.com/Magisk-Modules-Alt-Repo/abootloop/blob/main/README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
id=abootloop | ||
name=Anti bootloop | ||
version=v1.3.1 | ||
versionCode=5 | ||
version=v1.3.2 | ||
versionCode=6 | ||
author=nedorazrab0 | ||
description=Protection from bootloop | ||
description=Bootloop protection | ||
updateJson=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/abootloop/main/update.json | ||
|
||
zipUrl=https://github.com/Magisk-Modules-Alt-Repo/abootloop/releases/download/v1.3.2/abootloop.zip | ||
changelog=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/abootloop/main/changelog.md | ||
|
||
license=MIT | ||
category=Bootloop protection | ||
homepage=https://github.com/Magisk-Modules-Alt-Repo/abootloop |