ksud: Add support for post-fs-data and system.prop

This commit is contained in:
tiann
2023-01-05 14:10:38 +08:00
parent 800f66467c
commit e37d0148e1
2 changed files with 47 additions and 2 deletions

View File

@@ -92,7 +92,8 @@ pub fn on_post_data_fs() -> Result<()> {
// module mounted, exec modules post-fs-data scripts
// todo: Add timeout
crate::module::exec_post_fs_data()?;
let _ = crate::module::exec_post_fs_data();
let _ = crate::module::load_system_prop();
Ok(())
}