ORS engine fixes
Fix backup to not error when a non-existant partition is given.
Fix restore to run when no partition parameters are given.
Ensure that ORS runs after decryption and that zips install.
Fix a problem with the fake internal sdcard not mounting to
/sdcard on data media devices.
diff --git a/partition.cpp b/partition.cpp
index 9122596..b611e24 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -725,7 +725,9 @@
Update_Size(Display_Error);
if (!Symlink_Mount_Point.empty()) {
- mount(Symlink_Path.c_str(), Symlink_Mount_Point.c_str(), Fstab_File_System.c_str(), NULL, NULL);
+ string Command, Result;
+ Command = "mount '" + Symlink_Path + "' '" + Symlink_Mount_Point + "'";
+ TWFunc::Exec_Cmd(Command, Result);
}
return true;
}