diff options
author | Bowgo Tsai <bowgotsai@google.com> | 2021-06-03 14:39:34 +0800 |
---|---|---|
committer | Bowgo Tsai <bowgotsai@google.com> | 2021-06-09 03:55:01 +0000 |
commit | 3a0dac346a3e4518b62d35eb0628a70fb1616ba9 (patch) | |
tree | 9a222a7c76832ccb39fcfa3bc7329574759beab5 | |
parent | a35d50c2349c54e404d0e4fe40dbd7886babf774 (diff) |
fastboot: support vbmeta_vendor.img
Bug: 181909612
Bug: 190564127
Test: build
Change-Id: If61fff1c83513d71605c0cef2737a38f7575d69b
Merged-In: If61fff1c83513d71605c0cef2737a38f7575d69b
(cherry picked from commit a48a78356fa59c94e61482ab5bc39532530bac58)
-rw-r--r-- | fastboot/fastboot.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index e5319a5aa..6a49fdf34 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -166,6 +166,11 @@ static Image images[] = { "vbmeta_system.sig", "vbmeta_system", true, ImageType::BootCritical }, + { "vbmeta_vendor", + "vbmeta_vendor.img", + "vbmeta_vendor.sig", + "vbmeta_vendor", + true, ImageType::BootCritical }, { "vendor", "vendor.img", "vendor.sig", "vendor", true, ImageType::Normal }, { "vendor_boot", "vendor_boot.img", "vendor_boot.sig", |