Integrate sepolicy patching with MagiskSU fixed

This commit is contained in:
topjohnwu
2017-04-16 02:42:24 +08:00
parent 2f7cfa7ab2
commit dfe4b33f2f
12 changed files with 113 additions and 16 deletions

15
jni/daemon/post_fs_data.c Normal file
View 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();
}