diff options
author | Hridya Valsaraju <hridya@google.com> | 2018-08-01 10:09:49 -0700 |
---|---|---|
committer | Hridya Valsaraju <hridya@google.com> | 2018-08-01 18:30:36 +0000 |
commit | 94943ee331a2ff0f78539d8ecff9005b10b2cd6e (patch) | |
tree | 29b4eb6848c0b1694f5b08c25e21b5544bcd3543 /fastboot/fastboot.cpp | |
parent | ff01e542850718844d14d207de14a57eae708d2a (diff) |
Flash super partition with fastboot flashall
Bug: 111763923
Test: fastboot flashall
Change-Id: I9b89825bac00d1237972a61715da05f933ac35ce
Diffstat (limited to 'fastboot/fastboot.cpp')
-rw-r--r-- | fastboot/fastboot.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index 263ea1780..cf55cce44 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -114,7 +114,7 @@ static struct { bool is_optional; bool is_secondary; } images[] = { - // clang-format off + // clang-format off { "boot", "boot.img", "boot.sig", "boot", false, false }, { nullptr, "boot_other.img", "boot.sig", "boot", true, true }, { "dtbo", "dtbo.img", "dtbo.sig", "dtbo", true, false }, @@ -122,12 +122,13 @@ static struct { { "odm", "odm.img", "odm.sig", "odm", true, false }, { "product", "product.img", "product.sig", "product", true, false }, { "recovery", "recovery.img", "recovery.sig", "recovery", true, false }, + { "super", "super.img", "super.sig", "super", true, false }, { "system", "system.img", "system.sig", "system", false, false }, { nullptr, "system_other.img", "system.sig", "system", true, true }, { "vbmeta", "vbmeta.img", "vbmeta.sig", "vbmeta", true, false }, { "vendor", "vendor.img", "vendor.sig", "vendor", true, false }, { nullptr, "vendor_other.img", "vendor.sig", "vendor", true, true }, - // clang-format on + // clang-format on }; static std::string find_item_given_name(const char* img_name) { |