diff options
author | Justin Yun <justinyun@google.com> | 2019-06-26 09:18:03 +0900 |
---|---|---|
committer | Justin Yun <justinyun@google.com> | 2019-07-09 08:56:53 +0000 |
commit | 5d0ac62995143971ca9db84604b140dcd7622978 (patch) | |
tree | 9bc6d8723e8d1908630fe76aa76fbd35815722af /fastboot/fastboot.cpp | |
parent | c7fe1552d5aca5100c798011bfeb288fbe3dc090 (diff) |
Rename product_services to system_ext
Update adb, fastboot and mount point
Bug: 134359158
Test: build and check if system_ext.img can be flashed
Change-Id: I6219f72242c5fe42a508008c0b1fd218d74da5b6
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 }, |