diff --git a/RootShell/RootShell.aar b/RootShell/RootShell.aar index b44ba84..186af06 100644 Binary files a/RootShell/RootShell.aar and b/RootShell/RootShell.aar differ diff --git a/src/main/java/com/stericson/RootTools/Constants.java b/src/main/java/com/stericson/RootTools/Constants.java index 3914f27..06c3b05 100644 --- a/src/main/java/com/stericson/RootTools/Constants.java +++ b/src/main/java/com/stericson/RootTools/Constants.java @@ -2,7 +2,7 @@ public class Constants { - public static final String TAG = "RootTools v4.4"; + public static final String TAG = "RootTools v4.6"; public static final int FPS = 1; public static final int BBA = 3; public static final int BBV = 4; diff --git a/src/main/java/com/stericson/RootTools/internal/Remounter.java b/src/main/java/com/stericson/RootTools/internal/Remounter.java index 7a5d5c6..be3e8e8 100644 --- a/src/main/java/com/stericson/RootTools/internal/Remounter.java +++ b/src/main/java/com/stericson/RootTools/internal/Remounter.java @@ -119,13 +119,15 @@ public boolean remount(String file, String mountType) Command command = new Command(0, true, "busybox mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath(), + "busybox mount -o remount," + mountType.toLowerCase() + " " + file, "toolbox mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath(), - "toybox mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath(), + "toolbox mount -o remount," + mountType.toLowerCase() + " " + file, "toybox mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath(), "mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath(), "mount -o remount," + mountType.toLowerCase() + " " + file, "/system/bin/toolbox mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath(), - "/system/bin/toybox mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath() - ); + "/system/bin/toolbox mount -o remount," + mountType.toLowerCase() + " " + file, + "/system/bin/toybox mount -o remount," + mountType.toLowerCase() + " " + mountPoint.getDevice().getAbsolutePath() + " " + mountPoint.getMountPoint().getAbsolutePath(), + "/system/bin/toybox mount -o remount," + mountType.toLowerCase() + " " + file); Shell.startRootShell().add(command); commandWait(command);