From 9893608f39205246662bec099d3f3d080ff2813a Mon Sep 17 00:00:00 2001 From: RedLintu16 Date: Fri, 5 Jun 2026 11:40:58 -0700 Subject: [PATCH 1/5] Add installation guide for Infiniti --- 12/infiniti.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 12/infiniti.md diff --git a/12/infiniti.md b/12/infiniti.md new file mode 100644 index 0000000..f92d84f --- /dev/null +++ b/12/infiniti.md @@ -0,0 +1,38 @@ +### Pre-installation: + +* Optional Google Applications: https://sourceforge.net/projects/nikgapps/files/Elite-Releases/crdroid-official/Android-16/23-Feb-2026/NikGapps-crdroid-official-arm64-16-20260223-signed.zip/download + + +### First time installation (clean flash): + +* Reboot your phone into the bootloader by either restarting it and then when it's off holding down Volume Down and Power or doing adb reboot bootloader +* Flash the Boot Image, the DTBO Image, the Init_boot Image, the Recovery Image, the VBMeta Image, the Vendor_Boot Image +* fastboot flash boot boot.img +* fastboot flash dtbo dtbo.img +* fastboot flash init_boot init_boot.img +* fastboot flash recovery recovery.img +* `fastboot flash vbmeta vbmeta.img` +* `fastboot flash vendor_boot vendor_boot.img` +* Then reboot into recovery by doing `fastboot reboot recovery` +* Once in Recovery Mode, use the Volume Up and Volume Down keys to highlight "Apply update" +* Once "Apply update" is highlighted, select it with the Power Key +* Then do `adb sideload OTAName.zip` +* Once done, it'll prompt you to either choose if you want to restart into Recovery Mode to flash more packages or if you don't want to reboot +* Reboot if you want to flash something like a Google Applications package or don't reboot if you don't want to flash anything else. +* Use the Volume Up and Down Keys to highlight "Factory reset" +* Select "Factory reset' with the Power Key +* Then Select "Format data/Factory Reset" +* Once it asks if you want to format data, choose "YES" +* Once done, it should be automatically highlighted on "Reboot system now" choose that and wait for it to start up! +* Enjoy! + +### Update installation: + +* Reboot into Recovery Mode by using the Power Menu, `adb reboot recovery`, or by choosing the option in the bootloader with the Volume Keys +* Once in Recovery Mode, use the Volume Up and Volume Down keys to highlight "Apply update" +* Once "Apply update" is highlighted, select it with the Power Key +* Then do `adb sideload OTAName.zip` +* Once done, it'll prompt you to either choose if you want to restart into Recovery Mode to flash more packages or if you don't want to reboot +* If you had Google Applications installed, install them again +* Once done, it should be automatically highlighted on "Reboot system now" choose that and wait for it to start up! +* Enjoy! \ No newline at end of file From 4ccdbef19a28e9936227641cd791811aa8bbb5b6 Mon Sep 17 00:00:00 2001 From: Lup Gabriel Date: Sat, 6 Jun 2026 20:50:18 +0300 Subject: [PATCH 2/5] formatting --- 12/infiniti.md | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/12/infiniti.md b/12/infiniti.md index f92d84f..0d72dce 100644 --- a/12/infiniti.md +++ b/12/infiniti.md @@ -1,22 +1,29 @@ ### Pre-installation: -* Optional Google Applications: https://sourceforge.net/projects/nikgapps/files/Elite-Releases/crdroid-official/Android-16/23-Feb-2026/NikGapps-crdroid-official-arm64-16-20260223-signed.zip/download +* Optional Gapps (from download page, gapps button) ### First time installation (clean flash): * Reboot your phone into the bootloader by either restarting it and then when it's off holding down Volume Down and Power or doing adb reboot bootloader * Flash the Boot Image, the DTBO Image, the Init_boot Image, the Recovery Image, the VBMeta Image, the Vendor_Boot Image -* fastboot flash boot boot.img -* fastboot flash dtbo dtbo.img -* fastboot flash init_boot init_boot.img -* fastboot flash recovery recovery.img -* `fastboot flash vbmeta vbmeta.img` -* `fastboot flash vendor_boot vendor_boot.img` -* Then reboot into recovery by doing `fastboot reboot recovery` + +``` +fastboot flash boot boot.img +fastboot flash dtbo dtbo.img +fastboot flash init_boot init_boot.img +fastboot flash recovery recovery.img +fastboot flash vbmeta vbmeta.img +fastboot flash vendor_boot vendor_boot.img +``` +* Then reboot into recovery by doing + +```fastboot reboot recovery``` * Once in Recovery Mode, use the Volume Up and Volume Down keys to highlight "Apply update" * Once "Apply update" is highlighted, select it with the Power Key -* Then do `adb sideload OTAName.zip` +* Then do + +```adb sideload OTAName.zip``` * Once done, it'll prompt you to either choose if you want to restart into Recovery Mode to flash more packages or if you don't want to reboot * Reboot if you want to flash something like a Google Applications package or don't reboot if you don't want to flash anything else. * Use the Volume Up and Down Keys to highlight "Factory reset" @@ -28,11 +35,15 @@ ### Update installation: -* Reboot into Recovery Mode by using the Power Menu, `adb reboot recovery`, or by choosing the option in the bootloader with the Volume Keys +* Reboot into Recovery Mode by using the Power Menu + +```adb reboot recovery``` * Once in Recovery Mode, use the Volume Up and Volume Down keys to highlight "Apply update" * Once "Apply update" is highlighted, select it with the Power Key -* Then do `adb sideload OTAName.zip` +* Then do + +```adb sideload OTAName.zip``` * Once done, it'll prompt you to either choose if you want to restart into Recovery Mode to flash more packages or if you don't want to reboot * If you had Google Applications installed, install them again * Once done, it should be automatically highlighted on "Reboot system now" choose that and wait for it to start up! -* Enjoy! \ No newline at end of file +* Enjoy! From ae6be3fe9c4a226a7798935ba21c3f77a194448e Mon Sep 17 00:00:00 2001 From: RedLintu16 Date: Sat, 6 Jun 2026 12:11:33 -0700 Subject: [PATCH 3/5] Update infiniti.md --- 12/infiniti.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12/infiniti.md b/12/infiniti.md index 0d72dce..949326f 100644 --- a/12/infiniti.md +++ b/12/infiniti.md @@ -1,6 +1,6 @@ ### Pre-installation: -* Optional Gapps (from download page, gapps button) +* [Optional Google Applications](https://sourceforge.net/projects/nikgapps/files/Elite-Releases/crdroid-official/Android-16/23-Feb-2026/) ### First time installation (clean flash): From 47240b472db699a24408c9ae4d92401fc17a8797 Mon Sep 17 00:00:00 2001 From: RedLintu16 Date: Sat, 6 Jun 2026 15:04:41 -0700 Subject: [PATCH 4/5] Update infiniti.md --- 12/infiniti.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/12/infiniti.md b/12/infiniti.md index 949326f..d8150cd 100644 --- a/12/infiniti.md +++ b/12/infiniti.md @@ -1,6 +1,6 @@ -### Pre-installation: +d### Pre-installation: -* [Optional Google Applications](https://sourceforge.net/projects/nikgapps/files/Elite-Releases/crdroid-official/Android-16/23-Feb-2026/) +* Optional Google Applications ### First time installation (clean flash): From 3bcddb1cb0753d5eff3155febdd7a6c952954cee Mon Sep 17 00:00:00 2001 From: Lup Gabriel Date: Sun, 7 Jun 2026 15:45:22 +0300 Subject: [PATCH 5/5] formatting --- 12/infiniti.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/12/infiniti.md b/12/infiniti.md index d8150cd..b2d1a60 100644 --- a/12/infiniti.md +++ b/12/infiniti.md @@ -1,8 +1,7 @@ -d### Pre-installation: +### Pre-installation: * Optional Google Applications - ### First time installation (clean flash): * Reboot your phone into the bootloader by either restarting it and then when it's off holding down Volume Down and Power or doing adb reboot bootloader