├── whatnew.txt ├── nb.json ├── api.json └── nabu-instructions.md /whatnew.txt: -------------------------------------------------------------------------------- 1 | -> Changelog for 16-03-2019 :- 2 | 3 | * Added auto face unlock on face match 4 | * Added back support for disabling Sim 5 | * Rotation Fixes 6 | * Binder backported form android kernel common 4.19 7 | * Performance fixes 8 | * All lineage upstream changes 9 | 10 | -> Instructions. 11 | Once the update is installed give it sometime to settle and wait for the device to cool down, Then start using like normal. 12 | -------------------------------------------------------------------------------- /nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "response": [ 3 | { 4 | "datetime": 1738949239, 5 | "filename": "lineage-22.1-20250207-UNOFFICIAL-nabu.zip", 6 | "id": "54ce307493b070f3122255fcaa2395d57cabc701966e64ef143ca9cb8b041fcb", 7 | "romtype": "UNOFFICIAL", 8 | "size": 1597492065, 9 | "url": "https://github.com/dev-harsh1998/ota/releases/download/v1.5.2-qpr1-feb/lineage-22.1-20250207-UNOFFICIAL-nabu.zip", 10 | "version": "22.1" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /api.json: -------------------------------------------------------------------------------- 1 | { 2 | "response": [ 3 | { 4 | "datetime": 1565245006, 5 | "filename": "lineage-16.0-20190808-UNOFFICIAL-a6000.zip", 6 | "id": "e10b3d2486336f7cbcd1967aff9ae9f5", 7 | "romtype": "UNOFFICIAL", 8 | "size": 424632038, 9 | "url": "https://doc-04-6k-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/n2rsjslu88mr9drm2h4h6ld6cfbtdtet/1567425600000/03435077170507140826/*/1-1WLelwlhjHS0FMtCfXrBs5VMs5LU7pf?e=download", 10 | "version": "16.0" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /nabu-instructions.md: -------------------------------------------------------------------------------- 1 | ### TIPS 2 | 3 | * Instructions below are for people flashing lineage for the first time, Old users should get OTA. (Highly recommended) 4 | * Old users can also use Local update option from inside of the Updater App in system settings to manually import the package. 5 | 6 | #### Rare 7 | * Very old lineage users (Who don't recieve ota or don't have option for local update) can force the OTA on old lineage build by executing the below command in shell (These lineage builds ship with KernelSU). 8 | 9 | `setprop lineage.updater.uri https://raw.githubusercontent.com/dev-harsh1998/ota/master/nb.json` 10 | > Once executed check for update in lineage updater app to get ota 11 | 12 | ### Flashing nabu via recovery mode. 13 | 14 | > This guide assumes you know what you are doing and you have latest platform tools installed along with drivers. 15 | 16 | * Download `boot.img`, `vendor_boot.img` and `dtbo.img` 17 | > You will find them in the release page 18 | 19 | * Boot into bootloader (not fastbootd) 20 | > Poweroff the tablet, Press vol down and power key until you see fastboot written. 21 | 22 | * Once in fastboot flash the artifacts that you downloaded, execute the following commands 23 | * boot 24 | 25 | `fastboot flash boot_a boot.img` 26 | 27 | `fastboot flash boot_b boot.img` 28 | 29 | * dtbo 30 | 31 | `fastboot flash dtbo_a dtbo.img` 32 | 33 | `fastboot flash dtbo_b dtbo.img` 34 | 35 | * vendor_boot 36 | 37 | `fastboot flash vendor_boot_a vendor_boot.img` 38 | 39 | `fastboot flash vendor_boot_b vendor_boot.img` 40 | 41 | ##### That's it you are done with the hard one time part. 42 | 43 | > Reboot to recovery by entering the following command. 44 | 45 | `fastboot reboot recovery` 46 | 47 | #### In recovery do the following. (You should see LineageOS logo if not then something isn't right) 48 | > Touchscreen takes a little bit of time to probe sometimes so give it 20 seconds if you see that touchscreen is not working. 49 | 50 | 1: Tap Factory Reset, then Format data / factory reset and continue with the formatting process. This will remove encryption and delete all files stored in the internal storage. 51 | 52 | 2: Return to the main menu. 53 | 54 | 3: Sideload the LineageOS .zip package but do not reboot before you read/followed the rest of the instructions! 55 | * On the device, select “Apply Update”, then “Apply from ADB” to begin sideload. 56 | * On the host machine, sideload the package using: adb sideload filename.zip. 57 | > Normally, adb will report Total xfer: 1.00x, but in some cases, even if the process succeeds the output will stop at 47% and report adb: failed to read command: Success. In some cases it will report adb: failed to read command: No error or adb: failed to read command: Undefined error: 0 which is fine. 58 | 59 | If there are no errors in the recovery screen and everything looks good selecting reboot from the main menu should allow you to boot into LineageOS. 60 | --------------------------------------------------------------------------------