| | 1 | = Talking to hboot - and the AT-Command processor = |
| | 2 | == start hboot == |
| | 3 | Start hboot by holding the Vol-Down Key while powering on the phone. |
| | 4 | |
| | 5 | == start rtask c in hboot == |
| | 6 | |
| | 7 | Plug your phone into your computer, and in a terminal, type the following: |
| | 8 | |
| | 9 | On your computer: |
| | 10 | {{{ |
| | 11 | sudo modprobe -r usbserial |
| | 12 | sudo modprobe usbserial vendor=0x0BB4 product=0x0C94 |
| | 13 | sudo screen /dev/ttyUSB0 |
| | 14 | |
| | 15 | rtask c |
| | 16 | }}} |
| | 17 | |
| | 18 | This will terminate your console session and change the USB-ID of your phone. |
| | 19 | |
| | 20 | == Talking to the AT-command processor == |
| | 21 | Attach the serial to the new USB-device |
| | 22 | |
| | 23 | On your computer: |
| | 24 | {{{ |
| | 25 | sudo modprobe -r usbserial |
| | 26 | sudo modprobe usbserial vendor=0x05c6 product=0x9002 |
| | 27 | sudo screen /dev/ttyUSB2 |
| | 28 | }}} |
| | 29 | |
| | 30 | The following is an example to verify radio S-OFF. The commands are mixed with the answers. You only type the commands the start with AT. |
| | 31 | {{{ |
| | 32 | ATE1 |
| | 33 | ATV1 |
| | 34 | AT@CID? |
| | 35 | @CID: 11111111 |
| | 36 | |
| | 37 | OK |
| | 38 | AT@SIMLOCK?AA |
| | 39 | @secu_flag: 0 |
| | 40 | |
| | 41 | AT@SIMLOCK?40 |
| | 42 | @SIMLOCK: 00 |
| | 43 | |
| | 44 | OK |
| | 45 | }}} |