diff options
author | David Zeuthen <zeuthen@google.com> | 2015-09-02 21:49:58 +0200 |
---|---|---|
committer | Rom Lemarchand <romlem@google.com> | 2015-11-16 23:28:40 +0100 |
commit | 846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce (patch) | |
tree | b3a7bff1cd97765a46ac579df59c10760d2a1938 /bootloader.h | |
parent | recovery: Allow "Mount /system" for system_root_image. (diff) | |
download | android_bootable_recovery-846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce.tar android_bootable_recovery-846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce.tar.gz android_bootable_recovery-846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce.tar.bz2 android_bootable_recovery-846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce.tar.lz android_bootable_recovery-846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce.tar.xz android_bootable_recovery-846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce.tar.zst android_bootable_recovery-846c094fee9e50ed2b2e63dee17f5bafb2b9d1ce.zip |
Diffstat (limited to 'bootloader.h')
-rw-r--r-- | bootloader.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bootloader.h b/bootloader.h index c2895dd91..fd003a076 100644 --- a/bootloader.h +++ b/bootloader.h @@ -43,6 +43,13 @@ extern "C" { * multiple times, so that the UI can reflect which invocation of the * package it is. If the value is of the format "#/#" (eg, "1/3"), * the UI will add a simple indicator of that status. + * + * The slot_suffix field is used for A/B implementations where the + * bootloader does not set the androidboot.ro.boot.slot_suffix kernel + * commandline parameter. This is used by fs_mgr to mount /system and + * other partitions with the slotselect flag set in fstab. A/B + * implementations are free to use all 32 bytes and may store private + * data past the first NUL-byte in this field. */ struct bootloader_message { char command[32]; @@ -55,7 +62,8 @@ struct bootloader_message { // stage string (for multistage packages) and possible future // expansion. char stage[32]; - char reserved[224]; + char slot_suffix[32]; + char reserved[192]; }; /* Read and write the bootloader command from the "misc" partition. |