system/corennnnn
修訂 | 568d0eebe0724f63c9829e7067e913e03ac49f99 (tree) |
---|---|
時間 | 2016-08-16 05:34:08 |
作者 | Jaap Jan Meijer <jjmeijer88@gmai...> |
Commiter | Jaap Jan Meijer |
Merge remote-tracking branch 'x86/marshmallow-x86' into cm-13.0-x86
Conflicts:
init/init.cpp
@@ -894,13 +894,12 @@ static int load_module_by_device_modalias(const char *id) | ||
894 | 894 | /* cannot load module. try another one since |
895 | 895 | * there may be another match. |
896 | 896 | */ |
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); | |
899 | 899 | } else { |
900 | 900 | /* loading was successful */ |
901 | 901 | INFO("loaded module %s due to uevents\n", alias->name); |
902 | 902 | ret = 0; |
903 | - break; | |
904 | 903 | } |
905 | 904 | } |
906 | 905 | } |
@@ -640,10 +640,10 @@ static int wait_for_coldboot_done_action(int nargs, char **args) { | ||
640 | 640 | Timer t; |
641 | 641 | |
642 | 642 | 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. | |
644 | 644 | // If you're hitting this timeout, check that you didn't make your |
645 | 645 | // sepolicy regular expressions too expensive (http://b/19899875). |
646 | - if (wait_for_file(COLDBOOT_DONE, 5)) { | |
646 | + if (wait_for_file(COLDBOOT_DONE, 10)) { | |
647 | 647 | ERROR("Timed out waiting for %s\n", COLDBOOT_DONE); |
648 | 648 | } |
649 | 649 |