summaryrefslogtreecommitdiffstats
path: root/mkbootimg
diff options
context:
space:
mode:
authorHridya Valsaraju <hridya@google.com>2018-05-30 10:57:18 -0700
committerHridya Valsaraju <hridya@google.com>2018-05-30 10:58:14 -0700
commitd0ab4e3701dcec866cb05f4d2a122fbbcabf61cc (patch)
tree62d206fd9e8104ac02c064ceb5eda10a174164a0 /mkbootimg
parent420fe5fe9010081cbe61774ac661c0d5e7f09114 (diff)
downloadsystem_core-d0ab4e3701dcec866cb05f4d2a122fbbcabf61cc.tar.gz
system_core-d0ab4e3701dcec866cb05f4d2a122fbbcabf61cc.tar.bz2
system_core-d0ab4e3701dcec866cb05f4d2a122fbbcabf61cc.zip
Correct comment in boot image header
Test: make Bug: 80207223 Change-Id: I88cf7683e036ff43bbe3ff5418519c7e35e08b79
Diffstat (limited to 'mkbootimg')
-rw-r--r--mkbootimg/include/bootimg/bootimg.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/mkbootimg/include/bootimg/bootimg.h b/mkbootimg/include/bootimg/bootimg.h
index 406e20832..bce308b02 100644
--- a/mkbootimg/include/bootimg/bootimg.h
+++ b/mkbootimg/include/bootimg/bootimg.h
@@ -111,7 +111,7 @@ typedef struct boot_img_hdr_v0 boot_img_hdr;
struct boot_img_hdr_v1 : public boot_img_hdr_v0 {
uint32_t recovery_dtbo_size; /* size in bytes for recovery DTBO image */
- uint64_t recovery_dtbo_offset; /* physical load addr */
+ uint64_t recovery_dtbo_offset; /* offset to recovery dtbo in boot image */
uint32_t header_size;
} __attribute__((packed));
@@ -138,11 +138,14 @@ struct boot_img_hdr_v1 : public boot_img_hdr_v0 {
* 1. kernel and ramdisk are required (size != 0)
* 2. recovery_dtbo is required for recovery.img in non-A/B devices(recovery_dtbo_size != 0)
* 3. second is optional (second_size == 0 -> no second)
- * 4. load each element (kernel, ramdisk, second, recovery_dtbo) at
+ * 4. load each element (kernel, ramdisk, second) at
* the specified physical address (kernel_addr, etc)
- * 5. prepare tags at tag_addr. kernel_args[] is
+ * 5. If booting to recovery mode in a non-A/B device, extract recovery dtbo and
+ * apply the correct set of overlays on the base device tree depending on the
+ * hardware/product revision.
+ * 6. prepare tags at tag_addr. kernel_args[] is
* appended to the kernel commandline in the tags.
- * 6. r0 = 0, r1 = MACHINE_TYPE, r2 = tags_addr
- * 7. if second_size != 0: jump to second_addr
+ * 7. r0 = 0, r1 = MACHINE_TYPE, r2 = tags_addr
+ * 8. if second_size != 0: jump to second_addr
* else: jump to kernel_addr
*/