From de8c08c612a84eb0a834f5809cb4b4af7480d5da Mon Sep 17 00:00:00 2001 From: Dmitry Shmidt Date: Mon, 15 May 2017 10:24:04 -0700 Subject: [PATCH] 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 --- fastboot/fastboot.cpp | 1 + 1 file changed, 1 insertion(+) 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 },