mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-03 10:11:52 +00:00
Integrate sepolicy patching with MagiskSU fixed
This commit is contained in:
15
jni/daemon/post_fs_data.c
Normal file
15
jni/daemon/post_fs_data.c
Normal file
@@ -0,0 +1,15 @@
|
||||
/* post_fs_data.c - post-fs-data actions
|
||||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include "utils.h"
|
||||
#include "daemon.h"
|
||||
|
||||
void post_fs_data(int client) {
|
||||
// ack
|
||||
write_int(client, 0);
|
||||
// TODO: Do something
|
||||
close(client);
|
||||
unblock_boot_process();
|
||||
}
|
||||
Reference in New Issue
Block a user