i do have cwm installed. and where can i get a flashable zip for stock? and i was using the front ports on the computer lol.
I've never had an issue with using the front ports on a PC, and I've been developing for years.. As long as they're clean (dust free) they're as good as the back ports.
There should be a thread in this sub forum with a link to an admire stock ROM (Im using a vitality, so I'd be no help there)
*edit:
http://androidforums.com/admire-all...m-backup-samsung-admire-2-3-4-stock-eh02.html
If you dont have the su binary present in your /system/xbin folder, then you can manually root the phone (provided you have a working system image/rom loaded).
You'll need the su binary, and superuser.apk.
Boot to CWM (assuming you have that flashed)
Mount /system and /sdcard
Then navigate to your adb directory (assuming you have not put adb in your system path) and drop the su binary and superuser.apk there
Then open up a command prompt, navigate to your adb directory, then:
Code:
adb push su /sdcard/
adb push superuser.apk /sdcard/
adb shell
mount -o remount rw /system
cat /sdcard/su > /system/xbin/su
cat /sdcard/superuser.apk > /system/app/superuser.apk
chmod 4755 /system/xbin/su
chmod 0755 /system/app/superuser.apk
mount -o remount ro /system
reboot
You can install superuser.apk to /system/app or /data/app, your choice really.
Hope that helps.