Jump to content

OK!GUYS!Uploading Over!


Guest WellBeing

Recommended Posts

Guest Phoenix Silver

wait and see ;) it's my devise

i have just installed alpha 4 from paul after 2 days of looking for the details :(

but worth it system is running perfectly ;)

so guys take a breath wait for the experts ;) (i'm not one of them just a network administrator)

and merry Christmas (yes it's today hehe)

p.s. : thank you to use search function in forum and google

thank you not to ask for stupids questions like is this need root ; is this need a yellow box for the phone to work ;)

this don't help experts for the development

Edited by Phoenix Silver
Link to comment
Share on other sites

Is there any kind soul who could turn his this system.tar.gz into a system.img to use as recovery, or tell me how to do it? it may sound stupid, but i have an idea to test on the portuguese "blade" Sapo a5, which is giving tons of problems with all the custom froyos available here, more than the usual problems on orange/other Blades, like having no touch etc.

That problem seemed to have disappeared with the FroyoBlade_0.3.zip (not the testPort one) made from this dump.

Edited by fufax
Link to comment
Share on other sites

Guest WellBeing
Could you confirm that this is from a production (retail) unit? or is it another leaked version?

Thanks for your work!

It is a production unit, economics at 12/24

Link to comment
Share on other sites

Well done, waiting for the Modaco custom Froyo, BTW, I find that you are using the "softbank" network service, are you living in Japan now? you buy your blade from softbank?

Link to comment
Share on other sites

Guest Sebastian404
Hi m8 can u install clockwork and reset user data, then backup all via clockwork backup option, then zip all files and upload them please?

Why do you need that?

Link to comment
Share on other sites

Guest WellBeing
Well done, waiting for the Modaco custom Froyo, BTW, I find that you are using the "softbank" network service, are you living in Japan now? you buy your blade from softbank?

Yes, I'm living in japan now, for working。

Buy it from softbank~~

Link to comment
Share on other sites

Guest WellBeing
I think I saw it before, but I cant find it now...

anyone got the results of /proc/mtd ? Im interested in how big the OEM partition is..

I try to get mtd, but faild

# dd if=/dev/block/mtdblock1 of=/sdcard/boot.img

dd if=/dev/block/mtdblock1 of=/sdcard/boot.img

/dev/block/mtdblock1: read error: I/O error

0+0 records in

0+0 records out

0 bytes transferred in 0.001 secs (0 bytes/sec)

# dd if=/dev/block/mtdblock2 of=/sdcard/system.img

dd if=/dev/block/mtdblock2 of=/sdcard/system.img

/dev/block/mtdblock2: read error: I/O error

0+0 records in

0+0 records out

0 bytes transferred in 0.002 secs (0 bytes/sec)

#

Link to comment
Share on other sites

Guest Sebastian404
I try to get mtd, but faild

# dd if=/dev/block/mtdblock1 of=/sdcard/boot.img

dd if=/dev/block/mtdblock1 of=/sdcard/boot.img

/dev/block/mtdblock1: read error: I/O error

0+0 records in

0+0 records out

0 bytes transferred in 0.001 secs (0 bytes/sec)

# dd if=/dev/block/mtdblock2 of=/sdcard/system.img

dd if=/dev/block/mtdblock2 of=/sdcard/system.img

/dev/block/mtdblock2: read error: I/O error

0+0 records in

0+0 records out

0 bytes transferred in 0.002 secs (0 bytes/sec)

#

Ah, sorry, no I ment:

'cat /proc/mtd/'

it will show you what partitions there is on the device

Link to comment
Share on other sites

Guest WellBeing
Ah, sorry, no I ment:

'cat /proc/mtd/'

it will show you what partitions there is on the device

# cat /proc/mtd

cat /proc/mtd

dev: size erasesize name

mtd0: 00500000 00020000 "recovery"

mtd1: 00500000 00020000 "boot"

mtd2: 00180000 00020000 "splash"

mtd3: 00080000 00020000 "misc"

mtd4: 02580000 00020000 "cache"

mtd5: 0dc00000 00020000 "system"

mtd6: 0a280000 00020000 "userdata"

mtd7: 01500000 00020000 "oem"

mtd8: 00180000 00020000 "persist"

Link to comment
Share on other sites

Guest WellBeing
# cat /proc/mtd

cat /proc/mtd

dev: size erasesize name

mtd0: 00500000 00020000 "recovery"

mtd1: 00500000 00020000 "boot"

mtd2: 00180000 00020000 "splash"

mtd3: 00080000 00020000 "misc"

mtd4: 02580000 00020000 "cache"

mtd5: 0dc00000 00020000 "system"

mtd6: 0a280000 00020000 "userdata"

mtd7: 01500000 00020000 "oem"

mtd8: 00180000 00020000 "persist"

I try it yestoday~~

Link to comment
Share on other sites

sorry

the command is

su

cat /proc/partitions > /sdcard/info.txt

cat /dev/mtd/mtd0 > /sdcard/recovery.img

cat /dev/mtd/mtd1 > /sdcard/boot.img

cat /dev/mtd/mtd2 > /sdcard/splash.img

cat /dev/mtd/mtd3 > /sdcard/misc.img

cat /dev/mtd/mtd4 > /sdcard/cache.img

cat /dev/mtd/mtd5 > /sdcard/system.img

cat /dev/mtd/mtd6 > /sdcard/userdata.img

cat /dev/mtd/mtd7 > /sdcard/oem.img

cat /dev/mtd/mtd8 > /sdcard/persist.img

Edited by godmd5
Link to comment
Share on other sites

Maybe this will be more general:

cat /proc/partitions > /sdcard/info.txt

cat /dev/mtd > /sdcard/mtd.txt

cat /dev/mtd | grep '^mtd' |

while read dev size erasesize label

do

  label=${label#\"*}

  label=${label%\"}

  cat /dev/mtd/${dev%%:} > /sdcard/$label.img

done

I've not tried it on the phone but it seems to work-ish* on busybox on my linux box

* tries to do the right thing

Link to comment
Share on other sites

Guest Sebastian404
sorry

the command is

su

cat /proc/partitions > /sdcard/info.txt

cat /dev/mtd/mtd0 > /sdcard/recovery.img

cat /dev/mtd/mtd1 > /sdcard/boot.img

cat /dev/mtd/mtd2 > /sdcard/splash.img

cat /dev/mtd/mtd3 > /sdcard/misc.img

cat /dev/mtd/mtd4 > /sdcard/cache.img

cat /dev/mtd/mtd5 > /sdcard/system.img

cat /dev/mtd/mtd6 > /sdcard/userdata.img

cat /dev/mtd/mtd7 > /sdcard/oem.img

cat /dev/mtd/mtd8 > /sdcard/persist.img

Erm, you do know this device has already been dumped?

Link to comment
Share on other sites

Guest Sebastian404

Thanks for that, it helped me a little....

can I ask another question?

can you do a 'uname -a' and see what you get back?

you might need to do 'busybox uname -a' if the first one will not work.

Thanks

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.