Working on the tablet

razor950

Member
Nov 25, 2010
71
47
CURRENTLY NO BUILD ATM!

How to flash above builds:
Copy the cwrecovery.img or recovery.img to sdcard or sdcard2 and run flash_image recovery /sdcard/cwrecovery.img or /sdcard2/cwrecovery.img
Note: for build 2nd and 3rd, the name is recovery.img


I don't have one myself, I worked on a augen gentouch and didn't have one either while doing all this :p

I know its been rooted, I am wondering if anyone wouldn't mind helping me out by running a few commands, so I can cook up a custom recovery for you all (clockwork ofc) :)

After that, I'll see if I consider porting 2.2 depends on kernel version, since source isn't available...

Either in ADB shell after doing su or on a terminal on the tablet after running su command...
type in cat /proc/mtd and you can post that here or pm it.
Code:
# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 00040000 00020000 "misc"
mtd1: 00500000 00020000 "recovery"
mtd2: 00280000 00020000 "boot"
mtd3: 04380000 00020000 "system"
mtd4: 04380000 00020000 "cache"
mtd5: 04ac0000 00020000 "userdata"
mtd6: 10000000 00020000 "msm_nand"

Then whichever mtd is boot and whichever is recovery run the following
Code:
dd if=/dev/mtd/mtd2(this might change) of=/sdcard/boot.img bs=4096
dd if=/dev/mtd/mtd1(this might change) of=/sdcard/recovery.img bs=4096

Then upload those two and send them.

http://www.sendspace.com/file/3n5o79 boot.img and recovery.img
http://www.sendspace.com/file/jlqw0q system.img

Edited: Fixed post with more links and updates.
 
Last edited:

brachiopod

Member
Nov 22, 2010
114
6
Sounds great, If nobody else comes forward I'll help you with this in a bit, got to deal with T-day at the moment.
 

razor950

Member
Nov 25, 2010
71
47
Alright that is fine, I know its T-day and not the best day to ask for things like this

It's just I used one yesterday at bestbuy and the slowness of it made me want to work on this :p
 

shanksv

Member
Nov 13, 2010
117
23
Here you go. Hope it helps.

# cat /proc/mtd
cat /proc/mtd
dev: size erasesize name
mtd0: 00500000 00020000 "boot"
mtd1: 0a000000 00020000 "system"
mtd2: 00500000 00020000 "recovery"
mtd3: 00060000 00020000 "splash"
mtd4: 06000000 00020000 "cache"
mtd5: 0af00000 00020000 "userdata"
mtd6: 00500000 00020000 "logo"

# dd if=/dev/mtd/mtd2 of=/sdcard/recovery.img bs=4096
dd if=/dev/mtd/mtd2 of=/sdcard/recovery.img bs=4096
1280+0 records in
1280+0 records out
5242880 bytes transferred in 1.694 secs (3094970 bytes/sec)

# dd if=/dev/mtd/mtd0 of=/sdcard/boot.img bs=4096
dd if=/dev/mtd/mtd0 of=/sdcard/boot.img bs=4096
1280+0 records in
1280+0 records out
5242880 bytes transferred in 1.566 secs (3347943 bytes/sec)
#

# mount
mount
rootfs / rootfs rw 0 0
tmpfs /dev tmpfs rw,mode=755 0 0
devpts /dev/pts devpts rw,mode=600 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
tmpfs /sqlite_stmt_journals tmpfs rw,size=4096k 0 0
/dev/block/mtdblock1 /system yaffs2 rw 0 0
/dev/block/mtdblock5 /data yaffs2 rw 0 0
/dev/block/mtdblock4 /cache yaffs2 rw 0 0
/dev/block//vold/179:17 /sdcard vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid
=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,
shortname=mixed,utf8,flush 0 0
/dev/block//vold/179:1 /sdcard2 vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid
=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,
shortname=mixed,utf8,flush 0 0
#
 
Last edited:

razor950

Member
Nov 25, 2010
71
47
alright i need you to run this and send me the boot.img and recovery.img which would be on ur sd card :)

Code:
dd if=/dev/mtd/mtd0 of=/sdcard/boot.img bs=4096
dd if=/dev/mtd/mtd2 of=/sdcard/recovery.img bs=4096

you can use mediafire or sendspace or any other file hosting site :p

Also, if you can run the mount command and paste all it gives to you, it should show system, data, etc partitions...
To do this just type it as you did with the cat command, just type mount and just paste what it gives
 
Last edited:

razor950

Member
Nov 25, 2010
71
47
Alright, so I don't have a tablet to test but this won't cause any issues to your tablet, you might get stuck in a recovery loop when we try to boot into it, just remove battery and reflash to the old recovery you sent earlier.

Run this command after you have downloaded and put the img on the root of your sd card.
Download cwrecovery.img from Sendspace.com - send big files the easy way

Code:
flash_image recovery /sdcard/cwrecovery.img
reboot recovery or adb reboot recovery (depends if your using adb on your pc or just using terminal on your tablet)
 
Last edited:

razor950

Member
Nov 25, 2010
71
47
Feel free to link the thread for me over there, I can't post links at xda, im a new member (blah)
 

shanksv

Member
Nov 13, 2010
117
23
Alright, so I don't have a tablet to test but this won't cause any issues to your tablet, you might get stuck in a recovery loop when we try to boot into it, just remove battery and reflash to the old recovery you sent earlier.

Run this command after you have downloaded and put the img on the root of your sd card.
Download cwrecovery.img from Sendspace.com - send big files the easy way

Code:
flash_image recovery /sdcard/cwrecovery.img
reboot recovery or adb reboot recovery (depends if your using adb on your pc or just using terminal on your tablet)


I am assuming the flash_image is also an adb shell command. When I try it, it says flash_image: not found
 

razor950

Member
Nov 25, 2010
71
47
Do me a favor, I forgot to check for this, do the following and upload it for me.
Code:
dd if=/dev/mtd/mtd1 of=/sdcard/system.img bs=4096

Edited:
Feel free to do that still, I'd need a dump of system for future projects. But look at my last reply for what to do to get flash_image working...
 
Last edited:

razor950

Member
Nov 25, 2010
71
47
I assume your not using adb, all you need to do is install astro or any file manager, have the flash_image in sdcard and copy it to /system/bin using the file manager.
so mount usb, put flash_image on sdcard, unmountm, go to /sdcard, copy flash_image and paste to /system/bin then just runs the commands above :)
Download flash_image from Sendspace.com - send big files the easy way

btw if anyone is using adb, just have flash_image wherever adb is on your system and do
Code:
adb push flash_image /system/bin
 
Last edited:
Top