docomo P-01D Part1

このエントリーをはてなブックマークに追加
354SIM無しさん
>>353
事態が変わったので質問を変えます。
パーティションのバックアップを持っている人がいれば、うpしてくれませんか。
種類は問いません。(できればbootとsystem)
もし持っていない方でもroot化している人がいれば、出来る範囲でいいのでバックアップを取ってくれませんか。
パーティションのバックアップの取り方は、
1:rootを取る。
2:adb shellを実行。
3:suを実行。(adb shell suをまとめて実行すると停止する場合がある。)
4:cd /dev/mtd
5:dd if=mtd0 of=/mnt/sdcard/boot.img bs=4096
dd if=mtd1 of=/mnt/sdcard/system.img bs=4096
dd if=mtd2 of=/mnt/sdcard/cache.img bs=4096
dd if=mtd3 of=/mnt/sdcard/misc.img bs=4096
dd if=mtd4 of=/mnt/sdcard/userdata.img bs=4096
dd if=mtd5 of=/mnt/sdcard/persist.img bs=4096
dd if=mtd6 of=/mnt/sdcard/recovery.img bs=4096
dd if=mtd7 of=/mnt/sdcard/recovery_m.img bs=4096
dd if=mtd8 of=/mnt/sdcard/MIBIB.img bs=4096
dd if=mtd9 of=/mnt/sdcard/SIM_SECURE.img bs=4096
dd if=mtd10 of=/mnt/sdcard/FSBL.img bs=4096
dd if=mtd11 of=/mnt/sdcard/FSBL_M.img bs=4096
dd if=mtd12 of=/mnt/sdcard/OSBL.img bs=4096
dd if=mtd13 of=/mnt/sdcard/OSBL_M.img bs=4096
dd if=mtd14 of=/mnt/sdcard/AMSS.img bs=4096
dd if=mtd15 of=/mnt/sdcard/AMSS_M.img bs=4096
dd if=mtd16 of=/mnt/sdcard/EFS2.img bs=4096
dd if=mtd17 of=/mnt/sdcard/APPSBL.img bs=4096
dd if=mtd18 of=/mnt/sdcard/APPSBL_M.img bs=4096
dd if=mtd19 of=/mnt/sdcard/DSP1.img bs=4096
dd if=mtd20 of=/mnt/sdcard/QDSP_Q5.img bs=4096
dd if=mtd21 of=/mnt/sdcard/FOTA.img bs=4096
dd if=mtd22 of=/mnt/sdcard/APPS.img bs=4096
を実行。
6:SDカードにバックアップデータが書き込まれる。
よろしくおねがいします。