Xiaomi Redmi 2 with resolution 1280x720 (GUD RGB565 with compression)
🏳️🌈
This file contains hidden or 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
| #!/usr/bin/env python | |
| import os | |
| import sys | |
| import subprocess | |
| import tempfile | |
| import struct | |
| import shutil | |
| import hashlib |
Moved to https://ftvdb.com
- Download these 2 files
- Compile AOSP without fcm from stock and wait for check_vintf to error out
- Delete Python prefix from all lines (e.g.
checkvintf E 06-24 00:30:22 49120 49120 check_vintf.cpp:554]) - Paste the result in fqnames.txt
- Launch the script
This file contains hidden or 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
| /* Homebrew sysmodules */ | |
| 0000000000534C56 SaltyNX | |
| 00FF0000000002AA BootSoundNX | |
| 00FF0000636C6BF2 nx-reader | |
| 00FF0000636C6BFF sys-clk | |
| 00FF00006D7470FF mtp-server-nx | |
| 00FF0000A53BB665 SysDVR | |
| 00FF747765616BFF switch-sys-tweak | |
| 0100000000000052 switch-nfp-mitm | |
| 0100000000000081 nx-btred |
This file contains hidden or 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
| # Split a repository into batches to avoid `pack exceeds maximum allowed size` on git push | |
| REMOTE=origin | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| BATCH_SIZE=500 | |
| # check if the branch exists on the remote | |
| if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
| # if so, only push the commits that are not on the remote already | |
| range=$REMOTE/$BRANCH..HEAD |
