From 8cdea7ff0c17e19f8c2e02c5d9df7c19b2a16403 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 6 Aug 2018 15:36:00 -0700 Subject: [PATCH] fastboot: Fix product-services typo The build system generates a partition name of "product_services" for the product-services partition, so fastboot's image list must reflect this. Bug: 78793464 Test: fastboot flash product_services works with fastbootd Change-Id: I348f970c9584fd3dd4369e8cded66b6e39eee2b2 --- fastboot/fastboot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index d787d0961..d652c0df9 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -125,7 +125,7 @@ static struct { { "product-services", "product-services.img", "product-services.sig", - "product-services", + "product_services", true, true }, { "recovery", "recovery.img", "recovery.sig", "recovery", true, false }, { "super", "super.img", "super.sig", "super", true, true },