Maybe fix issue #2881233: reboot loop at boot on stingray

Change-Id: I4bd88fdd506d061146c441143d39b796a8df2f49
This commit is contained in:
Dianne Hackborn
2010-07-29 19:15:19 -07:00
parent 5aa1c034d9
commit 154db5f635
2 changed files with 2 additions and 6 deletions

View File

@@ -5529,10 +5529,6 @@ public class WindowManagerService extends IWindowManager.Stub
}
public void systemReady() {
mPolicy.systemReady();
}
public void initDisplay() {
synchronized(mWindowMap) {
if (mDisplay != null) {
throw new IllegalStateException("Display already initialized");
@@ -5548,6 +5544,8 @@ public class WindowManagerService extends IWindowManager.Stub
mActivityManager.updateConfiguration(null);
} catch (RemoteException e) {
}
mPolicy.systemReady();
}
// -------------------------------------------------------------