diff options
author | Steve Muckle <smuckle@google.com> | 2019-08-21 11:16:14 -0700 |
---|---|---|
committer | Steve Muckle <smuckle@google.com> | 2019-08-21 11:17:55 -0700 |
commit | 3611243e4da8b2a01b8142d01d7bcd8185233932 (patch) | |
tree | 10fcf10af07051ca2072464ebe6a72cb7e53b0dd /fastboot/fastboot.cpp | |
parent | 63fe0e9a3606cfd0909182e38d934e6040e55a1d (diff) |
fastboot: add vendor_boot to list of images
The vendor_boot partition has been created, so add it to the list of
images which may be flashed.
Bug: 137297791
Change-Id: I27eaa16656a83dbcb8289680844bf58dd1fccf24
Diffstat (limited to 'fastboot/fastboot.cpp')
-rw-r--r-- | fastboot/fastboot.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index 8923f409d..5bd37e183 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -160,6 +160,10 @@ static Image images[] = { "vbmeta_system", true, ImageType::BootCritical }, { "vendor", "vendor.img", "vendor.sig", "vendor", true, ImageType::Normal }, + { "vendor_boot", + "vendor_boot.img", "vendor_boot.sig", + "vendor_boot", + true, ImageType::BootCritical }, { nullptr, "vendor_other.img", "vendor.sig", "vendor", true, ImageType::Normal }, // clang-format on }; |