mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-05-22 19:08:55 +02:00
37 lines
1.1 KiB
Java
37 lines
1.1 KiB
Java
package com.topjohnwu.magisk.utils;
|
|
|
|
import android.content.Context;
|
|
import android.support.annotation.NonNull;
|
|
|
|
import com.topjohnwu.magisk.R;
|
|
import com.topjohnwu.superuser.BusyBox;
|
|
import com.topjohnwu.superuser.Shell;
|
|
import com.topjohnwu.superuser.ShellUtils;
|
|
|
|
import java.io.File;
|
|
import java.io.InputStream;
|
|
|
|
public class ShellInitializer extends Shell.Initializer {
|
|
|
|
static {
|
|
BusyBox.BB_PATH = new File(Const.BUSYBOX_PATH);
|
|
}
|
|
|
|
@Override
|
|
public boolean onRootShellInit(Context context, @NonNull Shell shell) throws Exception {
|
|
try (InputStream magiskUtils = context.getResources().openRawResource(R.raw.util_functions);
|
|
InputStream managerUtils = context.getResources().openRawResource(R.raw.utils)
|
|
) {
|
|
shell.execTask((in, err, out) -> {
|
|
ShellUtils.pump(magiskUtils, in);
|
|
ShellUtils.pump(managerUtils, in);
|
|
});
|
|
}
|
|
shell.run(null, null,
|
|
"mount_partitions",
|
|
"get_flags",
|
|
"run_migrations");
|
|
return true;
|
|
}
|
|
}
|