summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSen Jiang <senj@google.com>2018-01-26 01:58:01 +0100
committerandroid-build-merger <android-build-merger@google.com>2018-01-26 01:58:01 +0100
commit7441ee7affdf2773c4e3c9408361f83f88acdc92 (patch)
treec44c4c92125107f8ea3cbd5691ad3dcd13203aa1
parentMerge "StartsWith allows a std::string prefix now." (diff)
parentMerge "Add update_channel field to bootloader_message_ab." (diff)
downloadandroid_bootable_recovery-7441ee7affdf2773c4e3c9408361f83f88acdc92.tar
android_bootable_recovery-7441ee7affdf2773c4e3c9408361f83f88acdc92.tar.gz
android_bootable_recovery-7441ee7affdf2773c4e3c9408361f83f88acdc92.tar.bz2
android_bootable_recovery-7441ee7affdf2773c4e3c9408361f83f88acdc92.tar.lz
android_bootable_recovery-7441ee7affdf2773c4e3c9408361f83f88acdc92.tar.xz
android_bootable_recovery-7441ee7affdf2773c4e3c9408361f83f88acdc92.tar.zst
android_bootable_recovery-7441ee7affdf2773c4e3c9408361f83f88acdc92.zip
-rw-r--r--bootloader_message/include/bootloader_message/bootloader_message.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/bootloader_message/include/bootloader_message/bootloader_message.h b/bootloader_message/include/bootloader_message/bootloader_message.h
index 798f3bb8c..95c19ae54 100644
--- a/bootloader_message/include/bootloader_message/bootloader_message.h
+++ b/bootloader_message/include/bootloader_message/bootloader_message.h
@@ -103,13 +103,17 @@ static_assert(sizeof(struct bootloader_message) == 2048,
* implementations are free to use all 32 bytes and may store private
* data past the first NUL-byte in this field. It is encouraged, but
* not mandatory, to use 'struct bootloader_control' described below.
+ *
+ * The update_channel field is used to store the Omaha update channel
+ * if update_engine is compiled with Omaha support.
*/
struct bootloader_message_ab {
struct bootloader_message message;
char slot_suffix[32];
+ char update_channel[128];
// Round up the entire struct to 4096-byte.
- char reserved[2016];
+ char reserved[1888];
};
/**