Xiaomi Redmi 2 with resolution 1280x720 (GUD RGB565 with compression)
FireTV 2nd gen Cube Firmware
github.com/Pro-me3us/raven_firmware
Date | Version | Download | MD5 |
---|---|---|---|
2019-05-24 | Fire OS 6.2.6.4 (NS6264/1995) | update-kindle-mantis-NS6264_user_1995_0002449984388.bin | bfd8358014e3d36e8fa6f06fbf9ec0e4 |
2019-08-20 | Fire OS 6.2.6.5 (NS6265/2157) | update-kindle-mantis-NS6265_user_2157_0002852679044.bin | 09289b141c8339fe675cb0204689071f |
2019-10-09 | Fire OS 6.2.6.6 (NS6266/2292) | [update-kindle-mantis-NS6266_user_2292_0003054040196.bin](https://d1s31zyz7dcc2d.cloudfront.net/0136f0aae52d9777b27399ed9ea7d13e/update-kindle-mantis-NS6266_use |
- 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 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
/* Nintendo sysmodules */ | |
0100000000000000 fs | |
0100000000000001 ldr | |
0100000000000002 ncm | |
0100000000000003 pm | |
0100000000000004 sm | |
0100000000000005 boot | |
0100000000000006 usb | |
0100000000000007 tma.stub/htc.stub | |
0100000000000008 boot2 |
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
# 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 |