-
See removed files: bloatware-list.txt.
-
If you want to download the original stock rom visit the wayback archive: TUR-G530FXXS1ARK2-20210203212229.zip.
Just flash these files with heimdall on bootloader mode:
heimdall flash --BOOT boot.img --RECOVERY recovery.img --SYSTEM system.img.ext4
Specify the --RECOVERY recovery_twrp-3.5.2.img
to install TWRP.
Convert android sparse image to ext4 image as using simg2img:
simg2img system.img.ext4 system.img
Mount to system/
directory:
mount system.img system/
Then edit files:
cd system/
Convert ext4 image to android sparse image as using img2simg:
img2simg system.img system.img.ext4
OR:
dd if=/dev/zero of=system-new.img status=progress bs=1M count=1024
mount system-new.img system-new/
rsync -avz system/ system-new/
umount system-new/
img2simg system-new.img system.img.ext4