diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2017-09-08 19:17:03 +0200 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2017-09-08 19:17:53 +0200 |
commit | 75aa615767457f2b62dda65b16ded41b0e6df11f (patch) | |
tree | 98a4c6f60f45fd9746ba7b122fd1a82ce9113aee | |
parent | Update to AOSP 8.0 base (diff) | |
download | android_bootable_recovery-75aa615767457f2b62dda65b16ded41b0e6df11f.tar android_bootable_recovery-75aa615767457f2b62dda65b16ded41b0e6df11f.tar.gz android_bootable_recovery-75aa615767457f2b62dda65b16ded41b0e6df11f.tar.bz2 android_bootable_recovery-75aa615767457f2b62dda65b16ded41b0e6df11f.tar.lz android_bootable_recovery-75aa615767457f2b62dda65b16ded41b0e6df11f.tar.xz android_bootable_recovery-75aa615767457f2b62dda65b16ded41b0e6df11f.tar.zst android_bootable_recovery-75aa615767457f2b62dda65b16ded41b0e6df11f.zip |
-rw-r--r-- | data.cpp | 7 | ||||
-rw-r--r-- | gui/theme/common/landscape.xml | 6 | ||||
-rw-r--r-- | gui/theme/common/languages/en.xml | 1 | ||||
-rw-r--r-- | gui/theme/common/portrait.xml | 8 | ||||
-rw-r--r-- | gui/theme/common/watch.xml | 6 | ||||
-rw-r--r-- | twinstall.cpp | 27 |
6 files changed, 41 insertions, 14 deletions
@@ -833,15 +833,20 @@ void DataManager::SetDefaultValues() #else mConst.SetValue("tw_has_boot_slots", "0"); #endif - +#ifdef TW_NO_LEGACY_PROPS + LOGINFO("TW_NO_LEGACY_PROPS := true\n"); + mConst.SetValue("tw_enable_legacy_props", "0"); +#endif #ifdef TW_OEM_BUILD LOGINFO("TW_OEM_BUILD := true\n"); mConst.SetValue("tw_oem_build", "1"); + mConst.SetValue("tw_enable_legacy_props", "0"); #else mConst.SetValue("tw_oem_build", "0"); mPersist.SetValue("tw_app_prompt", "1"); mPersist.SetValue("tw_app_install_system", "1"); mData.SetValue("tw_app_install_status", "0"); // 0 = no status, 1 = not installed, 2 = already installed + mPersist.SetValue("tw_enable_legacy_props", "0"); #endif pthread_mutex_unlock(&m_valuesLock); diff --git a/gui/theme/common/landscape.xml b/gui/theme/common/landscape.xml index c3d89fe2d..5e640104d 100644 --- a/gui/theme/common/landscape.xml +++ b/gui/theme/common/landscape.xml @@ -447,6 +447,12 @@ <data variable="tw_install_reboot"/> </checkbox> + <checkbox> + <placement x="%col1_x_right%" y="%row13a_y%"/> + <text>{@enable_legacy_props_chk=Enable legacy properties for old zips}</text> + <data variable="tw_enable_legacy_props"/> + </checkbox> + <button style="main_button_half_width"> <placement x="%col1_x_left%" y="%row15a_y%"/> <text>{@zip_add_btn=Add more Zips}</text> diff --git a/gui/theme/common/languages/en.xml b/gui/theme/common/languages/en.xml index 5c208316c..435da36a2 100644 --- a/gui/theme/common/languages/en.xml +++ b/gui/theme/common/languages/en.xml @@ -82,6 +82,7 @@ <string name="folder">Folder:</string> <string name="file">File:</string> <string name="zip_sig_chk">Zip signature verification</string> + <string name="enable_legacy_props_chk">Enable legacy properties for old zips</string> <string name="inject_twrp_chk">Inject TWRP after install</string> <string name="install_reboot_chk">Reboot after installation is complete</string> <string name="options_hdr">Options</string> diff --git a/gui/theme/common/portrait.xml b/gui/theme/common/portrait.xml index f163bea8b..c101014ac 100644 --- a/gui/theme/common/portrait.xml +++ b/gui/theme/common/portrait.xml @@ -393,8 +393,14 @@ </checkbox> <checkbox> - <condition var1="tw_has_injecttwrp" var2="1"/> <placement x="%indent%" y="%row15_y%"/> + <text>{@enable_legacy_props_chk=Enable legacy properties for old zips}</text> + <data variable="tw_enable_legacy_props"/> + </checkbox> + + <checkbox> + <condition var1="tw_has_injecttwrp" var2="1"/> + <placement x="%indent%" y="%row16a_y%"/> <text>{@inject_twrp_chk=Inject TWRP after install}</text> <data variable="tw_inject_after_zip"/> </checkbox> diff --git a/gui/theme/common/watch.xml b/gui/theme/common/watch.xml index d5ef86972..2a8234559 100644 --- a/gui/theme/common/watch.xml +++ b/gui/theme/common/watch.xml @@ -555,6 +555,12 @@ <data variable="tw_install_reboot"/> </checkbox> + <checkbox> + <placement x="%indent%" y="%row5a_y%"/> + <text>{@enable_legacy_props_chk=Enable legacy properties for old zips}</text> + <data variable="tw_enable_legacy_props"/> + </checkbox> + <button> <placement x="%col1_x_left%" y="%row11_y%"/> <highlight color="%highlight_color%"/> diff --git a/twinstall.cpp b/twinstall.cpp index 70eb7efe5..b0b6f3d17 100644 --- a/twinstall.cpp +++ b/twinstall.cpp @@ -60,7 +60,6 @@ extern "C" { } #define AB_OTA "payload_properties.txt" -//#define TW_NO_LEGACY_PROPS 1 static const char* properties_path = "/dev/__properties__"; static const char* properties_path_renamed = "/dev/__properties_kk__"; @@ -174,11 +173,13 @@ static int Run_Update_Binary(const char *path, ZipWrap *Zip, int* wipe_cache, zi FILE* child_data; #ifndef TW_NO_LEGACY_PROPS - /* Set legacy properties */ - if (switch_to_legacy_properties() != 0) { - LOGERR("Legacy property environment did not initialize successfully. Properties may not be detected.\n"); - } else { - LOGINFO("Legacy property environment initialized.\n"); + if (DataManager::GetIntValue("tw_enable_legacy_props") != 0) { + /* Set legacy properties */ + if (switch_to_legacy_properties() != 0) { + LOGERR("Legacy property environment did not initialize successfully. Properties may not be detected.\n"); + } else { + LOGINFO("Legacy property environment initialized.\n"); + } } #endif @@ -259,12 +260,14 @@ static int Run_Update_Binary(const char *path, ZipWrap *Zip, int* wipe_cache, zi int waitrc = TWFunc::Wait_For_Child(pid, &status, "Updater"); #ifndef TW_NO_LEGACY_PROPS - /* Unset legacy properties */ - if (legacy_props_path_modified) { - if (switch_to_new_properties() != 0) { - LOGERR("Legacy property environment did not disable successfully. Legacy properties may still be in use.\n"); - } else { - LOGINFO("Legacy property environment disabled.\n"); + if (DataManager::GetIntValue("tw_enable_legacy_props") != 0) { + /* Unset legacy properties */ + if (legacy_props_path_modified) { + if (switch_to_new_properties() != 0) { + LOGERR("Legacy property environment did not disable successfully. Legacy properties may still be in use.\n"); + } else { + LOGINFO("Legacy property environment disabled.\n"); + } } } #endif |