Replies: 1 comment
-
There's already a guide for it in the wiki. https://github.com/phhusson/treble_experimentations/wiki/Lenovo-Tab-K10 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone, I recently got a Tab K10, so I decided to make a complete guide on installing a gsi ROM.
Unlocking the Bootloader. To do this, open the settings app > system > about and tap Build Number 7 times.
Go back to system > developer options > and enable OEM Unlocking and USB Debugging.
Now connect your tablet to you PC, grab the latest adb and fastboot from here , unzip, and in the directory name of where you extracted, type "cmd". In CMD, type
adb reboot bootloader && fastboot flashing unlock
. You will see a prompt on your tablet's screen, press volume up and in cmd typefastboot reboot
after unlock pass. Go through the initial setup now.Let's begin! power off your tablet, press
Volume Down + Power Button
simultaneously and quickly connect the USB cable. You will see "FASTBOOT MODE..". Now in CMD, typefastboot reboot fastboot
and wait until the tablet boots into fastbootd.Now let's flash that GSI! first, type
fastboot delete-logical-partition product_a && fastboot create-logical-partition product_a 1000
to free up System space.Erase the system partition to prepare flashing: type
fastboot erase system
.Flashing the system image. First get one, from here. Type
fastboot flash system PATH_TO_SYSTEM_IMG
and replace "PATH_TO_SYSTEM_IMG" with the directory in which you have the GSI\system.img.After the flashing is done, it is very important to regenerate the partitions to avoid any bootloops. To do so, type
fastboot -w
.Disabling Dm-Verity, Verifications and flashing Vbmeta. To do so, type
fastboot reboot bootloader && fastboot flash --disable-verity --disable-verification vbmeta PATH_TO_STOCK_VBMETA
in which you replace "PATH_TO_STOCK_VBMETA with the path to the vbmeta from stock firmware\vbmeta.img.Flashing Stock Boot image. Although it's not really necessary, it's recommended. Type
fastboot reboot fastboot && fastboot flash boot PATH_TO_STOCK_BOOT
in which you replace "PATH_TO_STOCK_BOOT" with path to boot image from stock firmware\boot.img.Almost done! Now using the volume keys, navigate to "Enter Recovery" and Format Data (Wipe data/Factory Reset).
Congratulations! Now select reboot system, wait around 5-10 minutes for the tablet to boot and enjoy your brand new, fresh system!
Short update: you may encounter some bugs with your GSI, such as Wifi/LTE not working.
Screenshots of RisingOS running on Tab K10:
Beta Was this translation helpful? Give feedback.
All reactions