worzzil wrote:Thanks for that. Sorry, I don't understand it though.
When you say "use adb" does that mean as in your reply above, try and boot into CWM and then connect to my PC? Where do I type adb devices, the command line? If I do that, and it works, how do I get it out of recovery?
Do I type mount /dev/block/nandf into terminal on the scroll itself or on my PC?
Apologies for my ignorance. I'd just like to be clear about what I'm doing before I tinker with it again. When I installed CWM it was just a case of right clicking on a .bat file which I can handle.
Ok I will try and explain a little better.
The tablet has got two distinct areas one is normal boot this is where you end up if you let the tablet power up normally. The other is recovery, ( think windows safe mode but with a completely separate set of files). You can't do a great deal in recovery but its handy as a way of backing up the main area or updating it.
Installing CWM on recent Excel tablets succeeds but because of hardware changes you can't see anything on the screen in recovery because it was designed for different hardware. So by taking the drivers from a working Excel and overwriting the bad ones CWM recovery now works. Note this only affects the recovery area the normal area is not touched, so you still have a perfectly working tablet.
-------------------------------------------------------------------
If you just want to check that you have CWM recovery but just can't see what's going on do the following:
Boot your tablet
normally and ensure you have USB debugging enabled, (Settings/Applications/Development)
Then plug in the USB lead.
On a windows machine do:
- Code: Select all
open android-sdk-windows folder on pc
right click platform-tools folder and open command prompt in there
You can then type:
- Code: Select all
> adb devices
List of devices attached
20080411 device
If it fails check you are in the correct directory and the tablet is recognised by Windows.
Now type:
- Code: Select all
> adb shell
This allows you to enter commands directly on the tablet
- Code: Select all
mkdir /data/recovery
mount -t ext4 /dev/block/nandf /data/recovery
ls /data/recovery/lib/modules
If it shows a few lines ending in .ko then you have CWM5 installed.
At this point
if you did unzip the file to your sdcard you can copy the modules from your sdcard and then unmount the recovery partition.
- Code: Select all
cd /data/recovery/lib/modules
busybox cp /mnt/extern_sd/modules/*.ko .
cd /
umount /data/recovery
rmdir /data/recovery
exit
OR if you are not ready to proceed just unmount the partition.
- Code: Select all
umount /data/recovery
rmdir /data/recovery
exit
------------------------------------------------------------------------------------
If you want to see if its booting into recovery when all you see is a black screen do the following:
Power off the tablet and remove any USB lead
Press menu then power and hold both for a count of 10, release power and then menu.
If you have the later build of tablet then your screen will remain blank.On a windows machine do:
- Code: Select all
open android-sdk-windows folder on pc
right click platform-tools folder and open command prompt in there
Attach the USB lead and at the prompt type
- Code: Select all
> adb devices
List of devices attached
20080411 recovery
If it shows the above then you are in recovery.
The easy way to leave recovery and return to normal is to type:
- Code: Select all
adb reboot
and the tablet will restart and boot normally.
I hope this helps.
Phil