summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-16 07:55:12 +0100
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-16 07:55:12 +0100
commit8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d (patch)
treeb1b4dc64ac57a1ee5dce0882d30a1d72090357eb
parentSnap for 9577577 from b333b13b9074745fe63b7f283201eec2ad5b6379 to udc-d1-release (diff)
parentSnap for 9613524 from 722b186153b403a6630f5b1073236a178b30d05b to udc-release (diff)
downloadandroid_bootable_recovery-8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d.tar
android_bootable_recovery-8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d.tar.gz
android_bootable_recovery-8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d.tar.bz2
android_bootable_recovery-8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d.tar.lz
android_bootable_recovery-8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d.tar.xz
android_bootable_recovery-8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d.tar.zst
android_bootable_recovery-8cc1864ea0ee389a31d8a5d3cde2a381b6735c4d.zip
-rw-r--r--bootloader_message/bootloader_message.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/bootloader_message/bootloader_message.cpp b/bootloader_message/bootloader_message.cpp
index 0a713eed5..1ea56cd4e 100644
--- a/bootloader_message/bootloader_message.cpp
+++ b/bootloader_message/bootloader_message.cpp
@@ -209,11 +209,7 @@ bool update_bootloader_message_in_struct(bootloader_message* boot,
memset(boot->command, 0, sizeof(boot->command));
memset(boot->recovery, 0, sizeof(boot->recovery));
- if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
- strlcpy(boot->command, "boot-recovery,quiescent", sizeof(boot->command));
- } else {
- strlcpy(boot->command, "boot-recovery", sizeof(boot->command));
- }
+ strlcpy(boot->command, "boot-recovery", sizeof(boot->command));
std::string recovery = "recovery\n";
for (const auto& s : options) {