Hovatek Forum DEVELOPMENT Android TWRP - no "Repair or change filesystem" and "Format data" buttons
Try our Online TWRP Builder..its free!
Can't login? Please, reset your password.


TWRP - no "Repair or change filesystem" and "Format data" buttons

TWRP - no "Repair or change filesystem" and "Format data" buttons

Pages (3): 1 2 3 Next
ktl20
ktl20
ktl20
Junior Member
36
20-10-2019, 04:18 PM
#1



Hi 

I have ported TWRP recovery for my Finow Q7 plus smartwatch. I dont have repair or change filesystem and Format data buttons in Wipe section in menu. Can someone check this recovery for me? or has solution?
unpacked twrp
twrp img file
X3non
X3non
X3non
Recognized Contributor
22,062
21-10-2019, 12:52 AM
#2
(20-10-2019, 04:18 PM)ktl20 Hi 

I have ported TWRP recovery for my Finow Q7 plus smartwatch. I dont have repair or change filesystem and Format data buttons in Wipe section in menu. Can someone check this recovery for me? or has solution?
unpacked twrp
twrp img file

its likely from the twrp you used for porting, you might want to use a different one.
you also mentioned the twrp is unable to mount system as well, are you able to mount other partitions asides from system?
ktl20
ktl20
ktl20
Junior Member
36
21-10-2019, 06:22 AM
#3
I used hovatek porting tool 1.4 with lollipop support so how to change twrp version? At the first boot in recovery It couldn't mount cache partition too but after wipe cache it mounts and other partition without problems only system can't mount.

I think I know where is the problem. I had problems with font size it was to small and i copy twres folder from recovery that has big buttons. But that recovery dont have repair option now I have 3.2.1 twrp recovery but with xml file from older one.How to modify this file with big icons to have all 3.2.1 twrp functionality ? I have no idea where to start :/

XML file from older twrp
XML file from ported twrp
This post was last modified: 21-10-2019, 07:40 AM by ktl20.
X3non
X3non
X3non
Recognized Contributor
22,062
21-10-2019, 09:11 AM
#4
(21-10-2019, 06:22 AM)ktl20 I used hovatek porting tool 1.4 with lollipop support so how to change twrp version? At the first boot in recovery It couldn't mount cache partition too but after wipe cache it mounts and other partition without problems only system can't mount.

I think I know where is the problem. I had problems with font size it was to small and i copy twres folder from recovery that has big buttons. But that recovery dont have repair option now I have 3.2.1 twrp recovery but with xml file from older one.How to modify this file with big icons to have all 3.2.1 twrp functionality ? I have no idea where to start :/
...

open both xml files side by side in a tool such as notepad++, you can compare the differences to find and add whats missing
This post was last modified: 21-10-2019, 09:14 AM by X3non.
ktl20
ktl20
ktl20
Junior Member
36
21-10-2019, 10:43 AM
#5



I flashed twrp with small icons and the buttons were there so i triied like on video to mount system partition but its not working.

https://www.youtube.com/watch?v=ZB5D0n4Z5s4

how to mount system partition? I want flash zip file but i cant.
shankar1790
shankar1790
shankar1790
Senior Member
474
21-10-2019, 04:05 PM
#6
(21-10-2019, 10:43 AM)ktl20 I flashed twrp with small icons and the buttons were there so i triied like on video to mount system partition but its not working.

https://www.youtube.com/watch?v=ZB5D0n4Z5s4

how to mount system partition? I want flash zip file but i cant.
if your twrp has wromg fstab in /etc folder then this problem usually occurs. try to find fstab in your boot.img  fstab and also from recovery fstab. that will be same for system, cache and userdata. 
otherwise 
there is mount option in twrp for system too but for file manager editing. you can mount also from terminal command 
Code:

mount -o rw, remount ext4 /system
This post was last modified: 22-10-2019, 02:20 AM by shankar1790.
X3non
X3non
X3non
Recognized Contributor
22,062
21-10-2019, 04:15 PM
#7
(21-10-2019, 10:43 AM)ktl20 ...
how to mount system partition? I want flash zip file but i cant.

find the mount points of your device using the guide @ https://www.hovatek.com/forum/thread-11203.html
then unpack twrp and replace the mount points in /ramdisk/etc/*.fstab
This post was last modified: 21-10-2019, 04:16 PM by X3non.
ktl20
ktl20
ktl20
Junior Member
36
22-10-2019, 08:39 AM
#8
(21-10-2019, 04:15 PM)X3non
(21-10-2019, 10:43 AM)ktl20 ...
how to mount system partition? I want flash zip file but i cant.

find the mount points of your device using the guide @ https://www.hovatek.com/forum/thread-11203.html
then unpack twrp and replace the mount points in /ramdisk/etc/*.fstab

This is my mount points (see pic) 
Now in recovery.fstab i have
boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p2      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p3      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p6      /system    ext4      defaults        defaults

and in twrp.fstab

boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p2      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p3      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p6      /system    ext4      defaults        defaults

so I must change mmcblk0pX in both fstab files like this?:
recovery.fstab
boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p7      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p20      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p18      /system    ext4      defaults        defaults
twrp.fstab

boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p7      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p20      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p18      /system    ext4      defaults        defaults
Attached Files
.jpg
IMG_20191022_092139.jpg
Size: 478.6 KB / Downloads: 4
shankar1790
shankar1790
shankar1790
Senior Member
474
22-10-2019, 12:01 PM
#9
(22-10-2019, 08:39 AM)ktl20
(21-10-2019, 04:15 PM)X3non
(21-10-2019, 10:43 AM)ktl20 ...
how to mount system partition? I want flash zip file but i cant.

find the mount points of your device using the guide @ https://www.hovatek.com/forum/thread-11203.html
then unpack twrp and replace the mount points in /ramdisk/etc/*.fstab

This is my mount points (see pic) 
Now in recovery.fstab i have
boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p2      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p3      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p6      /system    ext4      defaults        defaults

and in twrp.fstab

boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p2      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p3      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p6      /system    ext4      defaults        defaults

so I must change mmcblk0pX in both fstab files like this?:
recovery.fstab
boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p7      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p20      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p18      /system    ext4      defaults        defaults
twrp.fstab

boot        /boot      emmc      defaults        defaults
/dev/block/mmcblk0p7      /cache      ext4      defaults        defaults
/dev/block/mmcblk0p20      /data      ext4      defaults        defaults
misc        /misc      emmc      defaults        defaults
recovery    /recovery  emmc      defaults        defaults
/dev/block/mmcblk0p4      /sdcard    vfat      defaults        defaults
/dev/block/mmcblk0p18      /system    ext4      defaults        defaults
yes . what is the results After changes you made in twrp?
X3non
X3non
X3non
Recognized Contributor
22,062
22-10-2019, 12:28 PM
#10



(22-10-2019, 08:39 AM)ktl20 This is my mount points (see pic) 
...

you can remove the lines for misc and sdcard, then modify the line for recovery, you can also add the lines for secro, nvram and nvdata (if you wish to backup baseband and imei)
Code:

/dev/block/mmcblk0p8      /recovery    emmc      defaults        defaults
/dev/block/mmcblk0p16    /secro         emmc      defaults        defaults
/dev/block/mmcblk0p2     /nvram         emmc      defaults        defaults
/dev/block/mmcblk0p13   /nvdata        emmc      defaults        defaults

try this adding this line for external sd if you have one or use internal storage which should work once userdata can be mounted
Code:

/dev/block/mmcblk1p1     /external_sd    vfat       flags=display="External SDCard";storage;wipeingui;removable
Pages (3): 1 2 3 Next
Users browsing this thread:
 1 Guest(s)
Users browsing this thread:
 1 Guest(s)
YtWhTl
live chat
whatsapp telegram instagram