I know how to extract files from ext4 system.img, unpack/unsmali them so in order to get the process get done faster, i was only asking for an already done picture :
- Get framework-res.apk (either from system.img with ext2Explorer or directly from the device with any root filemanager -> SDCard|Computer over lan)
- Unpack f-res.apk to get its ressources.
- Modify the relevant files.
- Compile back and sign the f-res.apk.
- Send back to dongle through root filemanager or make an update.zip for recovery.
I still need to investigate the recovery flashing option, so if anyone got a working one (no matter what is the stuff to be flashed, i'm only interested in the META.INF folder who got the relevant update-binary file), thanks to share the link.
Edit :
Nevermind, i've found one in Leolas thread here, gonna make some test later -
(http://www.freaktab.com/showthread.p...4448#post94448)
The script should be roughly this:
run_program("/sbin/busybox", "mount", "/system"); package_extract_dir("system", "/system"); set_perm_recursive(0, 0, 0755, 0644, "/system/framework/framework-res.apk"); run_program("/sbin/busybox", "umount", "/system");
Comment