From 92c356e2ed740865a2e6d9d08a6a3e343c159318 Mon Sep 17 00:00:00 2001 From: Sandrine Bailleux Date: Fri, 8 Apr 2022 10:25:41 +0200 Subject: [PATCH] chore(measured boot): remove unused DTC flags We no longer need to pass special flags to the device tree compiler for measured boot. These are a left over from the days where we used to pass BL2 measurement to BL2 image via TB_FW configuration file. This should have been removed as part of commit eab78e9ba4e36da27 ("refactor(measured_boot): remove passing of BL2 hash via device tree") but was missed at the time. Change-Id: Iced7e60af7ca660c342c0fc3a33b51865d67f04d Signed-off-by: Sandrine Bailleux --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index f91699c44..da3e4931e 100644 --- a/Makefile +++ b/Makefile @@ -449,10 +449,6 @@ DTC_FLAGS += -I dts -O dtb DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \ -x assembler-with-cpp $(DEFINES) -ifeq ($(MEASURED_BOOT),1) -DTC_CPPFLAGS += -DMEASURED_BOOT -DBL2_HASH_SIZE=${TCG_DIGEST_SIZE} -endif - ################################################################################ # Common sources and include directories ################################################################################