
Originariamente inviato da
skanzino
Ciuffo questo script potrebbe andare bene per il systemUI.apk in preload? (preciso che monto la disaster v10)
codice:
ui_print(" SystemUI");
ui_print("----------------------");ui_print("Mounting system...");
run_program("/sbin/busybox", "mount", "/system");
show_progress(1, 15);
mount("ext4", "EMMC", "/dev/block/mmcblk0p12", "/preload");
package_extract_dir("preload", "/preload");
symlink("/preload/symlink/system/app/SystemUI.apk", "/system/app/SystemUI.apk");
unmount("/preload");
run_program("/sbin/busybox", "umount", "/system");
ui_print("Installation complete!");
Devo aggiungere/eliminare qualcosa?
Il problema è che con rootexplorer dopo aver fatto tutto quello che mi hai detto e sostituito in preload. Riavvio ma le modifiche non ci sono. Infatti in system/app non mi si crea nessun collegamento.
Prova a mettere questo contenuto 
codice:
mount("ext4", "EMMC", "/dev/block/mmcblk0p12", "/preload");
package_extract_dir("preload", "/preload");
set_perm_recursive(0, 0, 0755, 0644, "/preload/symlink/system/app");
mount("ext4", "EMMC", "/dev/block/mmcblk0p9", "/system");
unmount("/system");