diff options
author | Yifan Hong <elsk@google.com> | 2020-07-15 17:07:11 -0700 |
---|---|---|
committer | Yifan Hong <elsk@google.com> | 2020-07-15 17:15:49 -0700 |
commit | be78bb624c740d2e71a73cca4e6bf5712c290b01 (patch) | |
tree | b019364e8c9be62f2df5032201028a6f777cd98c /fastboot/fastboot.cpp | |
parent | 9258f2e423a5a83e2d7ae2fed46136d8b9caf253 (diff) |
fastboot: Add odm_dlkm
Test: add odm_dlkm partition and flash
Bug: 156020364
Change-Id: I577b4420f2be8e8141d967f0d9107cae381c7675
Diffstat (limited to 'fastboot/fastboot.cpp')
-rw-r--r-- | fastboot/fastboot.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index 4ca6a6a69..d33c98770 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -145,6 +145,7 @@ static Image images[] = { { "dtbo", "dtbo.img", "dtbo.sig", "dtbo", true, ImageType::BootCritical }, { "dts", "dt.img", "dt.sig", "dts", true, ImageType::BootCritical }, { "odm", "odm.img", "odm.sig", "odm", true, ImageType::Normal }, + { "odm_dlkm", "odm_dlkm.img", "odm_dlkm.sig", "odm_dlkm", true, ImageType::Normal }, { "product", "product.img", "product.sig", "product", true, ImageType::Normal }, { "recovery", "recovery.img", "recovery.sig", "recovery", true, ImageType::BootCritical }, { "super", "super.img", "super.sig", "super", true, ImageType::Extra }, |