From 250dc16007c77899c311be91cb08a48bebf7d369 Mon Sep 17 00:00:00 2001 From: Wang Han <1701210638@pku.edu.cn> Date: Tue, 17 Sep 2024 12:01:50 +0800 Subject: [PATCH] Fix post-fs-data blocking time in doc https://github.com/topjohnwu/Magisk/commit/f7d3d1eeaffd6ace0b7c3c654bbd389575126f3c. --- docs/guides.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides.md b/docs/guides.md index 8d073a6ad..b11720c35 100644 --- a/docs/guides.md +++ b/docs/guides.md @@ -232,7 +232,7 @@ The list above will result in the following files being created: `$MODPATH/syste In Magisk, you can run boot scripts in 2 different modes: **post-fs-data** and **late_start service** mode. - post-fs-data mode - - This stage is BLOCKING. The boot process is paused before execution is done, or 10 seconds have passed. + - This stage is BLOCKING. The boot process is paused before execution is done, or 40 seconds have passed. - Scripts run before any modules are mounted. This allows a module developer to dynamically adjust their modules before it gets mounted. - This stage happens before Zygote is started, which pretty much means everything in Android - **WARNING:** using `setprop` will deadlock the boot process! Please use `resetprop -n ` instead.