diff options
author | ChampionSwimmer <android@championswimmer.tk> | 2013-02-03 09:29:22 +0100 |
---|---|---|
committer | Dees_Troy <dees_troy@teamw.in> | 2013-02-19 19:20:45 +0100 |
commit | cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2 (patch) | |
tree | f1dcafcd6c661e98ba876e6907cf2ee6b971d5e8 | |
parent | convert file_bps to be unsigned long long (diff) | |
download | android_bootable_recovery-cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2.tar android_bootable_recovery-cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2.tar.gz android_bootable_recovery-cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2.tar.bz2 android_bootable_recovery-cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2.tar.lz android_bootable_recovery-cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2.tar.xz android_bootable_recovery-cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2.tar.zst android_bootable_recovery-cf33e4dbcd2cdbf9574883330ed782ea7e8e98f2.zip |
Diffstat (limited to '')
-rw-r--r-- | Android.mk | 3 | ||||
-rw-r--r-- | partitionmanager.cpp | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index 1ad1e0dc9..58b060728 100644 --- a/Android.mk +++ b/Android.mk @@ -141,6 +141,9 @@ endif ifeq ($(TW_HAS_NO_RECOVERY_PARTITION), true) LOCAL_CFLAGS += -DTW_HAS_NO_RECOVERY_PARTITION endif +ifeq ($(TW_HAS_NO_BOOT_PARTITION), true) + LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION +endif ifeq ($(TW_NO_REBOOT_BOOTLOADER), true) LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER endif diff --git a/partitionmanager.cpp b/partitionmanager.cpp index bcabb1ca4..895d3617f 100644 --- a/partitionmanager.cpp +++ b/partitionmanager.cpp @@ -704,6 +704,7 @@ int TWPartitionManager::Run_Backup(void) { DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0); } } +#ifndef TW_HAS_NO_BOOT_PARTITION DataManager::GetValue(TW_BACKUP_BOOT_VAR, check); if (check) { backup_boot = Find_Partition_By_Path("/boot"); @@ -718,6 +719,7 @@ int TWPartitionManager::Run_Backup(void) { DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0); } } +#endif DataManager::GetValue(TW_BACKUP_ANDSEC_VAR, check); if (check) { backup_andsec = Find_Partition_By_Path("/and-sec"); @@ -962,6 +964,7 @@ int TWPartitionManager::Run_Restore(string Restore_Name) { partition_count++; } } +#ifndef TW_HAS_NO_BOOT_PARTITION DataManager::GetValue(TW_RESTORE_BOOT_VAR, check); if (check > 0) { restore_boot = Find_Partition_By_Path("/boot"); @@ -971,6 +974,7 @@ int TWPartitionManager::Run_Restore(string Restore_Name) { partition_count++; } } +#endif DataManager::GetValue(TW_RESTORE_ANDSEC_VAR, check); if (check > 0) { restore_andsec = Find_Partition_By_Path("/and-sec"); |