Add update_bootloader_message() to fix two-step OTAs.
This is a retry of commit7e31f421a5. Commitbd56f1590cswitches to calling write_bootloader_message(<options>) in get_args(), which unintentionally resets the stage field thus breaks two-step OTAs. This CL adds update_bootloader_message(<options>), which only sets the command field (to "boot-recovery") and the recovery field (with the specified options). Bug: 33534933 Test: Apply a two-step package. Test: recovery_component_test passes. Change-Id: Ie0b1ed4053d2d3c97d9cb84310d616b28fcfc72e
This commit is contained in:
@@ -137,3 +137,29 @@ TEST_F(BootloaderMessageTest, write_bootloader_message_options_long) {
|
||||
ASSERT_EQ(std::string(sizeof(boot.reserved), '\0'),
|
||||
std::string(boot.reserved, sizeof(boot.reserved)));
|
||||
}
|
||||
|
||||
TEST_F(BootloaderMessageTest, update_bootloader_message) {
|
||||
// Inject some bytes into boot, which should be not overwritten later.
|
||||
bootloader_message boot;
|
||||
strlcpy(boot.recovery, "random message", sizeof(boot.recovery));
|
||||
strlcpy(boot.reserved, "reserved bytes", sizeof(boot.reserved));
|
||||
std::string err;
|
||||
ASSERT_TRUE(write_bootloader_message(boot, &err)) << "Failed to write BCB: " << err;
|
||||
|
||||
// Update the BCB message.
|
||||
std::vector<std::string> options = { "option1", "option2" };
|
||||
ASSERT_TRUE(update_bootloader_message(options, &err)) << "Failed to update BCB: " << err;
|
||||
|
||||
bootloader_message boot_verify;
|
||||
ASSERT_TRUE(read_bootloader_message(&boot_verify, &err)) << "Failed to read BCB: " << err;
|
||||
|
||||
// Verify that command and recovery fields should be set.
|
||||
ASSERT_EQ("boot-recovery", std::string(boot_verify.command));
|
||||
std::string expected = "recovery\n" + android::base::Join(options, "\n") + "\n";
|
||||
ASSERT_EQ(expected, std::string(boot_verify.recovery));
|
||||
|
||||
// The rest should be intact.
|
||||
ASSERT_EQ(std::string(boot.status), std::string(boot_verify.status));
|
||||
ASSERT_EQ(std::string(boot.stage), std::string(boot_verify.stage));
|
||||
ASSERT_EQ(std::string(boot.reserved), std::string(boot_verify.reserved));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user