| | 176 | |
| | 177 | At this point your phone will power down and reboot. |
| | 178 | |
| | 179 | === Steps 5 and 6 for Mac === |
| | 180 | |
| | 181 | To verify all went well on a mac, do this: |
| | 182 | |
| | 183 | 1. Plug in your mac to your phone |
| | 184 | 2. In the Terminal, type this: |
| | 185 | |
| | 186 | {{{ |
| | 187 | adb shell |
| | 188 | }}} |
| | 189 | |
| | 190 | this puts you in the phone's shell. now it's a simple matter of the following: |
| | 191 | |
| | 192 | (note the # is your prompt. Don't type the "#". The lines without the # are returned by the phone.) |
| | 193 | |
| | 194 | {{{ |
| | 195 | # stop ril-daemon |
| | 196 | # cat /dev/smd0 & |
| | 197 | # echo -e 'ATE1\r' > /dev/smd0 |
| | 198 | 0 |
| | 199 | # echo -e 'ATV1\r' > /dev/smd0 |
| | 200 | OK |
| | 201 | # echo -e 'AT@CID?\r' > /dev/smd0 |
| | 202 | @CID: 11111111 |
| | 203 | |
| | 204 | OK |
| | 205 | echo -e 'AT@SIMLOCK?40\r' > /dev/smd0 |
| | 206 | # AT@SIMLOCK?40 |
| | 207 | @SIMLOCK= 00 |
| | 208 | |
| | 209 | OK |
| | 210 | # echo -e 'AT$QCPWRDN\r' > /dev/smd0 |
| | 211 | # AT$QCPWRDN |
| | 212 | OK |
| | 213 | }}} |
| | 214 | |
| | 215 | Your phone should reboot. |
| | 216 | |
| | 217 | It should look something like that anyway. It may look slightly different if you were typing while the computer was sending you back information. |
| | 218 | |
| | 219 | But anyway. Here's what you're looking for: |
| | 220 | |
| | 221 | @CID: 11111111 <--- this response means you have superCID! Congrats! |
| | 222 | |
| | 223 | @SIMLOCK= 00 <--- this means your simlock is off. |
| | 224 | |