Commit 770c71bc7298bfe125b991e6cba515ae5f18b0eb

Authored by xiemeng
1 parent 6e9ceea5

四个标志位全部PSS 却不进行factoryreset

Showing 1 changed file with 5 additions and 3 deletions
... ... @@ -224,12 +224,14 @@ META_RESULT SmartPhoneSN::WriteNvramLoop()
224 224 g_pMainDlg->myscanimei2 == CString(a_imei_ary2))
225 225 {
226 226 UpdateUIMsg("IMEI matches successfully!!!");
227   - spNextStage = SP_END_STAGE;
  227 + g_pMainDlg->GetDlgItem(IDC_STATIC_FINAL_INFO)->SetWindowText("IMEI matches successfully!!!");
  228 + spNextStage = SP_MD2AP_STAGE;
228 229 iRet = SP_MD2AP_STAGE;
229 230 }
230 231 else
231 232 {
232   - UpdateUIMsg("IMEI wrong!!!");
  233 + UpdateUIMsg("IMEI does not match!!!");
  234 + g_pMainDlg->GetDlgItem(IDC_STATIC_FINAL_INFO)->SetWindowText("IMEI does not match!!!");
233 235 spNextStage = SP_MD2AP_STAGE;
234 236 iRetimei1 = META_FAILED;
235 237 }
... ... @@ -279,7 +281,7 @@ META_RESULT SmartPhoneSN::WriteNvramLoop()
279 281 spStage = spNextStage;
280 282 }
281 283 MTRACE (g_hEBOOT_DEBUG, "SmartPhoneSN::WriteNvramLoop() end...");
282   - return (META_RESULT)(iRet || SPMetaclear||iRetimei1||iRetimei2);
  284 + return (META_RESULT)(iRet || iRetimei1||iRetimei2);
283 285 }
284 286
285 287 int SmartPhoneSN::GetSPModemInfo_Ex()
... ...
Please register or login to post a comment