Temporary disable module bootloop prevention

Some devices don't like it, need further tests before pushing to production
This commit is contained in:
topjohnwu
2018-08-31 03:23:59 -04:00
parent 6f9d493a18
commit 72cf5f3f9f
2 changed files with 4 additions and 0 deletions

View File

@@ -530,6 +530,7 @@ void startup() {
unblock_boot_process();
}
#if 0
// Increment boot count
int boot_count = 0;
FILE *cf = fopen(BOOTCOUNT, "r");
@@ -543,6 +544,7 @@ void startup() {
cf = xfopen(BOOTCOUNT, "w");
fprintf(cf, "%d", boot_count);
fclose(cf);
#endif
// No uninstaller or core-only mode
if (access(DISABLEFILE, F_OK) != 0) {