diff options
Diffstat (limited to 'fastboot/fastboot.cpp')
-rw-r--r-- | fastboot/fastboot.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index c436be343..8923f409d 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -144,14 +144,13 @@ static Image images[] = { { "dts", "dt.img", "dt.sig", "dts", true, ImageType::BootCritical }, { "odm", "odm.img", "odm.sig", "odm", true, ImageType::Normal }, { "product", "product.img", "product.sig", "product", true, ImageType::Normal }, - { "product_services", - "product_services.img", - "product_services.sig", - "product_services", - true, ImageType::Normal }, { "recovery", "recovery.img", "recovery.sig", "recovery", true, ImageType::BootCritical }, { "super", "super.img", "super.sig", "super", true, ImageType::Extra }, { "system", "system.img", "system.sig", "system", false, ImageType::Normal }, + { "system_ext", + "system_ext.img", "system_ext.sig", + "system_ext", + true, ImageType::Normal }, { nullptr, "system_other.img", "system.sig", "system", true, ImageType::Normal }, { "userdata", "userdata.img", "userdata.sig", "userdata", true, ImageType::Extra }, { "vbmeta", "vbmeta.img", "vbmeta.sig", "vbmeta", true, ImageType::BootCritical }, |