• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

system/corennnnn


Commit MetaInfo

修訂568d0eebe0724f63c9829e7067e913e03ac49f99 (tree)
時間2016-08-16 05:34:08
作者Jaap Jan Meijer <jjmeijer88@gmai...>
CommiterJaap Jan Meijer

Log Message

Merge remote-tracking branch 'x86/marshmallow-x86' into cm-13.0-x86

Conflicts:
init/init.cpp

Change Summary

差異

--- a/init/devices.cpp
+++ b/init/devices.cpp
@@ -894,13 +894,12 @@ static int load_module_by_device_modalias(const char *id)
894894 /* cannot load module. try another one since
895895 * there may be another match.
896896 */
897- INFO("cannot load module %s due to uevents\n",
898- alias->name);
897+ NOTICE("failed to load %s for modalias %s\n",
898+ alias->name, id);
899899 } else {
900900 /* loading was successful */
901901 INFO("loaded module %s due to uevents\n", alias->name);
902902 ret = 0;
903- break;
904903 }
905904 }
906905 }
--- a/init/init.cpp
+++ b/init/init.cpp
@@ -640,10 +640,10 @@ static int wait_for_coldboot_done_action(int nargs, char **args) {
640640 Timer t;
641641
642642 NOTICE("Waiting for %s...\n", COLDBOOT_DONE);
643- // Any longer than 1s is an unreasonable length of time to delay booting.
643+ // Any longer than 10s is an unreasonable length of time to delay booting.
644644 // If you're hitting this timeout, check that you didn't make your
645645 // sepolicy regular expressions too expensive (http://b/19899875).
646- if (wait_for_file(COLDBOOT_DONE, 5)) {
646+ if (wait_for_file(COLDBOOT_DONE, 10)) {
647647 ERROR("Timed out waiting for %s\n", COLDBOOT_DONE);
648648 }
649649