I made progress. I can boot again past the initial screen. I was able to write the maint image and regular boot image back to the PE.
Here is the beef:
Connect to a TFTP server. Copy ramdisk.android.gz.crc and ramdisk.maint.gz.crc into the tftp share folder
Boot into the uboot menu and run the following commands:
Quote:
//Restore regular boot
tftp 0x7D00000 ramdisk.android.gz.crc
nand erase 0x1200000 0x140000
nand write 0x7D00000 0x1200000 0x100000
//Restore boot_user (PE Restore Mode)
tftp 0x7D00000 ramdisk.maint.gz.crc
nand erase 0x1300000 0x700000
nand write 0x7D00000 0x1300000 0x6C0000
run boot_user
|
I still can't boot all the way into the PE, but I see that the adb service has started, so I am currently installing the Android SDK for Linux on my Ubuntu box.
I will post my results before I go to bed in..... Crap it is already after midnight.... I guess it will be a late one again.
--Jim