Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/symbuzzer/livebootmodule
A Magisk, KernelSU and APatch module that enables unix-style (verbose) boot animation for Android devices
https://github.com/symbuzzer/livebootmodule
kernelsu liveboot magisk module
Last synced: 5 days ago
JSON representation
A Magisk, KernelSU and APatch module that enables unix-style (verbose) boot animation for Android devices
- Host: GitHub
- URL: https://github.com/symbuzzer/livebootmodule
- Owner: symbuzzer
- License: gpl-3.0
- Created: 2023-05-08T16:17:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-31T08:15:06.000Z (9 months ago)
- Last Synced: 2024-03-31T09:24:43.288Z (9 months ago)
- Topics: kernelsu, liveboot, magisk, module
- Language: Shell
- Homepage:
- Size: 728 KB
- Stars: 57
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - symbuzzer/livebootmodule - A Magisk, KernelSU and APatch module that enables unix-style (verbose) boot animation for Android devices (Shell)
- awesome-starred - symbuzzer/livebootmodule - A Magisk, KernelSU and APatch module that enables unix-style (verbose) boot animation for Android devices (Shell)
README
# LiveBoot Magisk & KernelSU & APatch Module
## Description
- A Magisk, KernelSU and APatch module that enables unix-style (verbose) boot animation for Android devices
- Magisk, KernelSU and APatch module of [Chainfire](https://github.com/Chainfire)'s [LiveBoot](https://github.com/Chainfire/liveboot) app without any app or UIPreview: https://www.youtube.com/watch?v=N0tqzVWxpJk
## Supported devices & ROMs
It has been successfully tested on many Android 14, 13 and 12 based ROMs. Should work all rooted devices via Magisk, KernelSU and APatch.
## Download
[Releases](https://github.com/symbuzzer/livebootmodule/releases)
## Changelog
[CHANGELOG.md](https://github.com/symbuzzer/livebootmodule/blob/main/CHANGELOG.md)
## LiveBoot Customization Guide
### Setting via an app interface
1. Install [MMRL](https://github.com/DerGoogler/MMRL/releases) by [DerGoogler](https://github.com/DerGoogler) if you haven't already.
2. Open the app, navigate to the "INSTALLED" section and search for the **LiveBoot** module and click on "CONFIG".### Setting manually
> [!NOTE]
> `0000liveboot` is stored in three directories, `/data/adb/service.d`, `/data/adb/post-fs-data.d` and `/data/adb/livebootmagisk`. It is recommended to have the same file content in each of the three directories.1. Open the `0000bootlive` files in three directories listed above using a text editor.
2. Modify the settings as per your requirements (listed below). **⚠️Warning: don't edit anything else in the file!⚠️**
3. Save the files and reboot your device to apply the changes.#### Manual Customization Options
- Background colors: ` ` (no character, it's the default LiveBoot app's gray-ish background color), `dark`, `transparent`
- Logcat levels: `V` (Verbose), `D` (Debug), `I` (Info), `W` (Warning), `E` (Error), `F` (Fatal), `S` (Silent)
- Logcat buffers: `M` (Main), `S` (System), `R` (Radio), `E` (Events), `C` (Crash)
- Logcat formats: `brief`, `process`, `tag`, `thread`, `time`, `threadtime`
- Logcat colors: `colors`, `logcatnocolors`
- DMESG: `0--1` (off), `0-99` (on)
- Lines: any value you want
- Wordwrap: `wordwrap`, ` ` (no character)
- Save logs: `save` (saves log in `/data/cache`, just like in the app), ` ` (no character)
- Fallback width and fallback height: usually your device's screen resolution, but you can put other values to spoof another screen size#### Example Configuration
```bash
transparent logcatlevels=VDIWEFS logcatbuffers=MSREC logcatformat=threadtime colors dmesg=0-99 lines=80 wordwrap save fallbackwidth=1080 fallbackheight=2340
```## Licenses
- 0000bootlive (original is 0000liveboot), liveboot(.apk), libdaemonize.so files are licensed under the [GPLv3](https://github.com/Chainfire/liveboot/blob/master/LICENSE) by [Jorrit "Chainfire" Jongma](https://github.com/Chainfire).
- For detailed licenses: [COPYING](https://github.com/Chainfire/liveboot/blob/master/COPYING), [LICENSE](https://github.com/Chainfire/liveboot/blob/master/LICENSE)
- Other parts of this project are licensed under [GPLv3](https://github.com/symbuzzer/livebootmagisk/blob/main/LICENSE) too.