Revert "Fix doing silent update,power cut/restoration,screen is turned on"

This reverts commit d43ec47f3b52667fb00978db4e119c2355008659.

Bug: 245680635
Reason for revert: SoC specific solution, not standardized and documented for use by other OEMs.

Change-Id: Ide437e0db9d072c1199a715bac8014bc3f041ceb
diff --git a/bootloader_message/bootloader_message.cpp b/bootloader_message/bootloader_message.cpp
index 0a713ee..1ea56cd 100644
--- a/bootloader_message/bootloader_message.cpp
+++ b/bootloader_message/bootloader_message.cpp
@@ -209,11 +209,7 @@
   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) {