Quote:
Originally Posted by apristel
not completely true....
if you have root ( with /system access ala toast part 1 & 2 )
you can just use adb shell to remove the bloatware...
Code:
adb shell
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
cd /system/app
rm whatever.apk
rm whatever.odex
the "mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system" may not be necessary.
|
Just adding to this... be careful with what you remove from there. Some apps might be required for the phone to boot properly and/or to function. Research before you start deleting stuff from the
/system/app/ folder.
And yes, the
mount... line is necessary to unlock (write permissions) the
/system folder.
Also... at the end you might want to 'close' (restore read only permissions) the
/system folder:
Code:
mount -o ro,remount -t yaffs2 /dev/block/mtdblock3 /system