(2014-05-06, 21:24)PMoto Wrote: I can try to help you... post the procedure...
Anyway, the needrom site of Ulefone Star N9002, have a threat with a upgrade ROm for MARCH, that will change thoose values of RAM, internal memory and so on...
But in the same threat, you can find the original ROM, from JAN, and if you flash it it will restore all to real values, RAM, Memory...
PMoto.
its pretty simple in my opinion, but that is only the case if you are familiar with using ADB and the shell and whatnot. your device needs busybox installed for the chmod command to work. i am assuming that busybox is installed in /system/xbin. nothing here can really mess up your phone except for the brief moment when you make your /system folder read/write.
first, you need to get a copy of sfdisk and put it on your phone. you can get sfdisk from github.
https://github.com/onyx-intl/platform_prebuilt/blob/master/android-arm/bin/sfdisk
right click on the "view raw" and choose "save link" or how ever to save it to your computer.
got to a command prompt window so you can use adb commands. i use mtkdroid tools to do this. In the bottom right corner, you’ll see ‘ADB Terminal’. Click it. A small black program window will open.
now push sfdisk to your busybox installation folder with adb.
adb push sfdisk /system/xbin/sfdisk (if you saved it somewhere else adb push c:\path\to\save\sfdisk /system/xbin/sfdisk)
now we have to make it executable. type:
adb shell
su
mount -o remount,rw /system
cd /system/xbin
chmod 755 sfdisk
mount -o remount,ro /system
so we should be ready to go at this point
we should put the dump somewhere writable so type (we still haven't exited the adb shell)
cd /storage/sdcard0
to output sfdisk type:
sfdisk -d /dev/block/mmcblk0
it will tell you what i need. now to put it in a handy file that you can attach here for me to download:
sfdisk -d /dev/block/mmcblk0 >pt.out
now you can exit the adb shell
exit
exit
(once to exit the "su" wrapper, once to exit the shell)
now transfer /storage/sdcard0/pt.out to your computer however you usually do it, come back here and post it for me to get, and i will be eternally in your debt!
let me know if you get lost anywhere in here
now we need to make it executable