82DVdoCsZGpj6GYskFMVo changeset

Changeset656632643561 (b)
ParentNone (a)
ab
0+01 - Plug your phone into your USB port and choose mount USB storage from your status bar.
0+02 - Copy the required files (flash_image binary and recoveryX.XX.X.img X.XX.X will be the numbers of the current build of the recovery img).
0+03 - Rename recoveryX.XX.X.img to recovery.img (this makes thigs easier later).
0+04 - Unmount your SD card from your status bar and unplug your USB cord.
0+05 - Fire up Terminal Emulator you downloaded from market place (or you can adb).
0+06 - Type su                                                            - To get a Super User prompt (#).
0+07 - Type mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system    - This makes /system writable.
0+08 - Type mkdir /system/xbin                                            - If it already exists you will simply get an error.
0+09 - Type cd /system/xbin                                               - This will change your directory to where the flash_image copy will go.
0+10 - Type cat /sdcard/flash_image > flash_image                         - This will copy flash_image to a place where you can execute it.
0+11 - Type chmod 700 flash_image                                         - This will make flash_image executable.
0+12 - Type sync                                                          - Flush changes to block device.
0+13 - Type mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system    - Remount in read-only - you shouldn't need to make any more changes.
0+14 - Type /system/xbin/ flash_image recovery /sdcard/recovery.img       - This does the actual business of flashing your recovery partition (gulp) should only take 2 seconds
0+15 - Hold down the power button for a few seconds and choose "Power Off"
0+16 - Hold x and hold the power button until you see the Motorola logo.
0+17 - You should be greated by the custom recovery firmware.  Choose reboot and wait for the first set of custom roms!
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- Revision None
+++ Revision 656632643561
@@ -0,0 +1,17 @@
+01 - Plug your phone into your USB port and choose mount USB storage from your status bar.
+02 - Copy the required files (flash_image binary and recoveryX.XX.X.img X.XX.X will be the numbers of the current build of the recovery img).
+03 - Rename recoveryX.XX.X.img to recovery.img (this makes thigs easier later).
+04 - Unmount your SD card from your status bar and unplug your USB cord.
+05 - Fire up Terminal Emulator you downloaded from market place (or you can adb).
+06 - Type su - To get a Super User prompt (#).
+07 - Type mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system - This makes /system writable.
+08 - Type mkdir /system/xbin - If it already exists you will simply get an error.
+09 - Type cd /system/xbin - This will change your directory to where the flash_image copy will go.
+10 - Type cat /sdcard/flash_image > flash_image - This will copy flash_image to a place where you can execute it.
+11 - Type chmod 700 flash_image - This will make flash_image executable.
+12 - Type sync - Flush changes to block device.
+13 - Type mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system - Remount in read-only - you shouldn't need to make any more changes.
+14 - Type /system/xbin/ flash_image recovery /sdcard/recovery.img - This does the actual business of flashing your recovery partition (gulp) should only take 2 seconds
+15 - Hold down the power button for a few seconds and choose "Power Off"
+16 - Hold x and hold the power button until you see the Motorola logo.
+17 - You should be greated by the custom recovery firmware. Choose reboot and wait for the first set of custom roms!