View Single Post
Old 10-01-2014, 02:06 PM   #56
Purple Lady
Grand Sorcerer
Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.Purple Lady ought to be getting tired of karma fortunes by now.
 
Purple Lady's Avatar
 
Posts: 5,698
Karma: 16542228
Join Date: Feb 2010
Location: Pennsylvania
Device: Huawei MediaPad M5, LG V30, Boyue T80S, Nexus 7 LTE, K3 3G, Fire HD8
Quote:
Originally Posted by Catire View Post
Areinu- Have you tried, if there is any way, to install the whole firmware again? are there even factory images for the t68?

For the dead device from one day to the next, try using an app to detect Wakelocks, there is probably some rougue app keeping the device awake.

As for the bootloops, I am inclined to agree that it seems like a hardware failure, once the battery reaches a certain level it just might not give out the same ammount of "power" as when it is fully charged , but then again android is a fickle beast and software might still be at fault, maybe try changing the cpu profiles with Setcpu or something like that, the device might be trying to save battery once it reaches a certain level and that causes it to freeze. is Log cat any help? there must be some way to track down that error.


I do not own a t68, just know a little (very little) about android and am interested in this device.
If you are considering a T68 make sure to buy from Amazon so you can return a defective device without paying postage.

The updates actually write the entire image when updating - I am using the same sd card in my new T62 so I have the update.zip still on it. Here's the update script:

ui_print("Checking Update Package Matching"); package_extract_file("android-info.txt", "/tmp/android-info.txt"); assert(file_getprop("/tmp/android-info.txt", "board") == getprop("ro.product.board")); ui_print("Done Package Matching\n"); package_extract_file("u-boot-no-padding.bin", "/tmp/u-boot-no-padding.bin"); ui_print("Writing Bootloader..."); simple_dd("/tmp/u-boot-no-padding.bin", "/dev/block/mmcblk0", 1024); delete("/tmp/u-boot-no-padding.bin"); package_extract_file("logo.bmp", "/tmp/logo.bmp"); ui_print("Writing Logo..."); simple_dd("/tmp/logo.bmp", "/dev/block/mmcblk0", 3145728); show_progress(0.1, 2); package_extract_file("boot.img", "/tmp/boot.img"); ui_print("Writing boot image."); simple_dd("/tmp/boot.img", "/dev/block/mmcblk0p1", 0); show_progress(0.2, 10); ui_print("Extracting system image...\n"); mount("vfat", "EMMC", "/dev/block/mmcblk0p4", "/tmp/flash"); package_extract_file("system.img", "/tmp/flash/system.img"); ui_print("Writing system partition...\n"); simple_dd("/tmp/flash/system.img", "/dev/block/mmcblk0p5", 0); delete("/tmp/flash/system.img"); unmount("/tmp/flash"); #ui_print("Formating data partition"); #format("ext4","EMMC","/dev/block/mmcblk0p7");
Purple Lady is offline   Reply With Quote