I'm trying to root my ICS AVD, and have tried this:
adb shell mount -o rw,remount -t yaffs2 /dev/block/mtdblock03 /system
adb push su /system/xbin/su
adb shell chmod 06755 /system
adb shell chmod 06755 /system/xbin/su
It fails with the following error:
failed to copy 'su' to '/system/xbin/su': Out of memory
How can I fix this?
adb shell
to be executed, but doesn't have thesu
executable installed. – Electrophoresis