Fix APK installation on some devices

Close #367. Android 6.0 and before doesn't like the new path
This commit is contained in:
topjohnwu 2018-01-11 20:57:05 +08:00
parent 1c743839ea
commit 65511845d2

View File

@ -647,13 +647,14 @@ void late_start(int client) {
core_only: core_only:
// Install Magisk Manager if exists // Install Magisk Manager if exists
if (access(MANAGERAPK, F_OK) == 0) { if (access(MANAGERAPK, F_OK) == 0) {
rename(MANAGERAPK, "/data/magisk.apk");
while (1) { while (1) {
sleep(5); sleep(5);
int apk_res = -1, pid; int apk_res = -1, pid;
pid = exec_command(1, &apk_res, pm_setenv, pid = exec_command(1, &apk_res, pm_setenv,
"app_process", "app_process",
"/system/bin", "com.android.commands.pm.Pm", "/system/bin", "com.android.commands.pm.Pm",
"install", "-r", MANAGERAPK, NULL); "install", "-r", "/data/magisk.apk", NULL);
if (pid != -1) { if (pid != -1) {
waitpid(pid, NULL, 0); waitpid(pid, NULL, 0);
fdgets(buf, PATH_MAX, apk_res); fdgets(buf, PATH_MAX, apk_res);
@ -663,7 +664,7 @@ core_only:
break; break;
} }
} }
unlink(MANAGERAPK); unlink("/data/magisk.apk");
} }
// All boot stage done, cleanup everything // All boot stage done, cleanup everything