|
First edit the WebOS doctor image as described here on the Pre Dev Wiki: http://predev.wikidot.com/bypassing-activation After you've completed step 6 in that guide we need to make a few more changes to the file:
% K$ b; w, b- q7 ~/ S5 jAround line 28:
7 z9 q# m @% K; w1 a8 I* j5 x# ?Code:1 c& A8 c3 w' H( M) H& }. D, B/ e
function setUpFirstUse() {# R$ E4 D: X* x1 p' V2 ?
setupSimulator ();
4 H" p) q9 `/ K y/ kisDevice = true; 6 X- w* c8 v ?* O
}
, m" y! ]4 i- h& D$ [ ]! j# s0 [- e( R% u+ t2 ]7 F7 q0 a% ?
remove the isDevice line so it looks like this
) ?$ g! j# K2 ^, N M; y+ w, R- c5 p0 a* J( V {
function setUpFirstUse() {1 ~) L& u5 o. v/ \' d( { l
setupSimulator ();
0 l# {" \+ d. G5 v' c" i}
* H# L2 g/ F8 _* x
7 L# K6 a' A' Q8 C; f$ H9 I8 u% {- Aaround line 82
) Z% M8 {+ a- SCode:
: K* Q+ B4 {6 G/ T) E( r' ?8 E- y8 Tif (PalmSystem.version.match("desktop")) {
2 B3 n0 G% a9 `+ {6 w, H+ M+ }$ y" O+ N8 F7 W. p
change it to
5 f N* C+ X. x, S$ w+ W5 B8 N2 f# p/ A; q0 n p: V! w G5 A' L5 a
if (PalmSystem.version.match("Webkit3.1/v8")) {
0 H9 P7 u$ ^2 o8 e f0 l: Mand around line 163) X7 z, }0 i0 g3 z0 u/ A& S
Code:
- e. d7 j3 j" ]4 E6 P, Cif (PalmSystem.version.match("desktop")) {
1 ^, |: Q$ R1 U" j. J. F: z1 l* N7 p8 @
change it also to
, E8 I; G, K' n/ z+ J. K+ i( ^- z% `7 G5 G; q9 b
if (PalmSystem.version.match("Webkit3.1/v8")) {1 Y& l2 i4 W9 m
Then continue on to step 7 and you're good to go. In summary all we're doing is tricking firstuse into thinking that we're using the SDK emulator which has no modem so it ignores all the errors.7 s. w2 W$ P& q; F5 l9 i
4 z2 e7 k3 w Q; j5 vOk back to the MEID fix!
& q: f( Z4 R& T" DUpdate: I spoke to the folks at the Pre Dev Wiki and they updated their page to handle modem errors. http://predev.wikidot.com/bypassing-activation
n2 k9 x7 _% r* S C& f% y( ~+ l/ S# i% l$ T% `& X4 _1 G; B
Thank you "destinal" for your help on this! / h" x' e0 \2 `
(引自http://www.mobile-files.com)" s5 `7 V, c1 e
c7 n0 J5 h* a
[ 本帖最后由 gzmob 于 2009-7-10 17:29 编辑 ] |
|