Merge "Set LOCAL_INJECT_BSSL_HASH for updater"
diff --git a/boot_control/libboot_control.cpp b/boot_control/libboot_control.cpp
index fa7dc47..89cf878 100644
--- a/boot_control/libboot_control.cpp
+++ b/boot_control/libboot_control.cpp
@@ -204,10 +204,16 @@
 
   std::string err;
   std::string device = get_bootloader_message_blk_device(&err);
-  if (device.empty()) return false;
+  if (device.empty()) {
+    LOG(ERROR) << "Could not find bootloader message block device: " << err;
+    return false;
+  }
 
   bootloader_control boot_ctrl;
-  if (!LoadBootloaderControl(device.c_str(), &boot_ctrl)) return false;
+  if (!LoadBootloaderControl(device.c_str(), &boot_ctrl)) {
+    LOG(ERROR) << "Failed to load bootloader control block";
+    return false;
+  }
 
   // Note that since there isn't a module unload function this memory is leaked.
   misc_device_ = strdup(device.c_str());
diff --git a/tests/Android.bp b/tests/Android.bp
index a867040..8e15017 100644
--- a/tests/Android.bp
+++ b/tests/Android.bp
@@ -91,8 +91,6 @@
     "libfs_mgr",
     "libhidl-gen-utils",
     "libhidlbase",
-    "libhidltransport",
-    "libhwbinder_noltopgo",
     "libbinderthreadstate",
     "liblp",
     "libvndksupport",