From 8ad23cf1513a43f495f93a0573294d91bfb98cb5 Mon Sep 17 00:00:00 2001 From: Daniel Zheng Date: Mon, 12 Jun 2023 09:57:54 -0700 Subject: [PATCH] Add dt partition in fastboot-info Adding dt partition in fastboot-info in case device uses it. Test: m fastboot_info Change-Id: Id5b3a70064f5ac6da8303f74c73e4d5f395a2c51 --- core/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/Makefile b/core/Makefile index ebac7b05a3..23bbe192c1 100644 --- a/core/Makefile +++ b/core/Makefile @@ -5401,6 +5401,9 @@ endif ifdef BOARD_PREBUILT_DTBOIMAGE $(hide) echo "flash dtbo" >> $@ endif +ifneq ($(INSTALLED_DTIMAGE_TARGET),) + $(hide) echo "flash dts dt.img" >> $@ +endif ifneq ($(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) $(hide) echo "flash vendor_kernel_boot" >> $@ endif