diff options
author | Dmitry Shmidt <dimitrysh@google.com> | 2017-05-15 10:24:04 -0700 |
---|---|---|
committer | Dmitry Shmidt <dimitrysh@google.com> | 2017-05-15 10:25:31 -0700 |
commit | de8c08c612a84eb0a834f5809cb4b4af7480d5da (patch) | |
tree | 5aa8661949a671c045b3545ce7a4de85177f0fd4 /fastboot/fastboot.cpp | |
parent | 81824ebf1f9fbae84da63df946d2a4b5e13838ad (diff) |
fastboot: Add DTS partition support for 'flashall' command
Hikey960 has DTS partiton for DT image
Test: Manual
Bug: 38310807
Change-Id: I9f8e9b27ed40ebdd225f3c4e4b30f53e7cdb5ee7
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
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 8a6877ad3..e1f289ae1 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -118,6 +118,7 @@ static struct { { "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 }, + { "dts", "dt.img", "dt.sig", "dts", true, false }, { "recovery", "recovery.img", "recovery.sig", "recovery", true, false }, { "system", "system.img", "system.sig", "system", false, false }, { nullptr, "system_other.img", "system.sig", "system", true, true }, |