Skip to content

Commit

Permalink
Disable stock recovery replacing TWRP during ORS
Browse files Browse the repository at this point in the history
-Create a separate function to disable stock recovery flashing
-Add a call to that function to the reboot section of the ORS
 action so that an OTA update will not inadvertantly replace TWRP

Change-Id: I43eae81e0e76971b6e8d34c38785dc73772242d2
  • Loading branch information
Dees-Troy committed Feb 2, 2015
1 parent a3fa75f commit 9132d91
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
2 changes: 2 additions & 0 deletions gui/action.cpp
Expand Up @@ -1555,6 +1555,8 @@ int GUIAction::openrecoveryscript(std::string arg)
}
}
if (reboot) {
// Disable stock recovery reflashing
TWFunc::Disable_Stock_Recovery_Replace();
usleep(2000000); // Sleep for 2 seconds before rebooting
TWFunc::tw_reboot(rb_system);
} else {
Expand Down
14 changes: 13 additions & 1 deletion twrp-functions.cpp
Expand Up @@ -864,7 +864,7 @@ void TWFunc::Fixup_Time_On_Boot()

}

LOGINFO("TWFunc::Fixup_Time: will attempt to use the ats files now.\n", sepoch.c_str());
LOGINFO("TWFunc::Fixup_Time: will attempt to use the ats files now.\n");

// Devices with Qualcomm Snapdragon 800 do some shenanigans with RTC.
// They never set it, it just ticks forward from 1970-01-01 00:00,
Expand Down Expand Up @@ -1038,4 +1038,16 @@ std::string TWFunc::to_string(unsigned long value) {
return os.str();
}

void TWFunc::Disable_Stock_Recovery_Replace(void) {
if (PartitionManager.Mount_By_Path("/system", false)) {
// Disable flashing of stock recovery
if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
gui_print("Renamed stock recovery file in /system to prevent\nthe stock ROM from replacing TWRP.\n");
sync();
}
PartitionManager.UnMount_By_Path("/system", false);
}
}

#endif // ndef BUILD_TWRPTAR_MAIN
2 changes: 1 addition & 1 deletion twrp-functions.hpp
Expand Up @@ -83,8 +83,8 @@ class TWFunc
static int Set_Brightness(std::string brightness_value); // Well, you can read, it does what it says, passing return int from TWFunc::Write_File ;)
static bool Toggle_MTP(bool enable); // Disables MTP if enable is false and re-enables MTP if enable is true and it was enabled the last time it was toggled off
static std::string to_string(unsigned long value); //convert ul to string

static void SetPerformanceMode(bool mode); // support recovery.perf.mode
static void Disable_Stock_Recovery_Replace(); // Disable stock ROMs from replacing TWRP with stock recovery

private:
static void Copy_Log(string Source, string Destination);
Expand Down
7 changes: 2 additions & 5 deletions twrp.cpp
Expand Up @@ -337,13 +337,10 @@ int main(int argc, char **argv) {
// Launch the main GUI
gui_start();

// Disable flashing of stock recovery
TWFunc::Disable_Stock_Recovery_Replace();
// Check for su to see if the device is rooted or not
if (PartitionManager.Mount_By_Path("/system", false)) {
// Disable flashing of stock recovery
if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
gui_print("Renamed stock recovery file in /system to prevent\nthe stock ROM from replacing TWRP.\n");
}
if (TWFunc::Path_Exists("/supersu/su") && !TWFunc::Path_Exists("/system/bin/su") && !TWFunc::Path_Exists("/system/xbin/su") && !TWFunc::Path_Exists("/system/bin/.ext/.su")) {
// Device doesn't have su installed
DataManager::SetValue("tw_busy", 1);
Expand Down

0 comments on commit 9132d91

Please sign in to comment.