Quote:
Originally Posted by katzki
Thanks,
You mean I just need to push the build.prop file into the system folder.
Now, another problem I've been facing is the "adb shell ln -s /system/bin/busybox /system/xbin/su".
It only results in "link failed File exists"...
What do you think is the problem here?
|
Code:
adb shell mv /system/xbin/su /system/xbin/su.orig
adb shell ln -s /system/bin/busybox /system/xbin/su
adb shell rm /system/bin/su # (an error here can beignored)
adb shell chmod 6755 /system/bin/busybox
The second command failing means in your case that the
previous command (which moves the non-working "su" out of the way) did not work, for whatever reason. Make sure you use paste and copy to enter the commands. In any case, these steps are only needed for apps that require root (like, for example, Titanium Backup), Market is not affected by this.
Quote:
The line still shows 'failed' but Market successfully works on my IQ.
I really appreciate your help
|
You are welcome