From 458c3c13005b7989f7ef854bf9e9b142259f1361 Mon Sep 17 00:00:00 2001 From: Varun Wadekar Date: Fri, 24 Jul 2015 18:00:33 +0530 Subject: [PATCH] tlkd: delete 'NEED_BL32' build variable Remove the 'NEED_BL32' flag from the makefile. TLK compiles using a completely different build system and is present on the device as a binary blob. The NEED_BL32 flag does not influence the TLK load/boot sequence at all. Moreover, it expects that TLK binary be present on the host before we can compile BL31 support for Tegra. This patch removes the flag from the makefile and thus decouples both the build systems. Tested by booting TLK without the NEED_BL32 flag. Signed-off-by: Varun Wadekar --- docs/plat/nvidia-tegra.md | 3 +-- services/spd/tlkd/tlkd.mk | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/plat/nvidia-tegra.md b/docs/plat/nvidia-tegra.md index 9d7727cfd..6c76dd109 100644 --- a/docs/plat/nvidia-tegra.md +++ b/docs/plat/nvidia-tegra.md @@ -57,8 +57,7 @@ without changing any makefiles. Preparing the BL31 image to run on Tegra SoCs =================================================== 'CROSS_COMPILE=/bin/aarch64-none-elf- make PLAT=tegra \ -TARGET_SOC= BL32= \ -SPD= all' +TARGET_SOC= SPD= all' Power Management ================ diff --git a/services/spd/tlkd/tlkd.mk b/services/spd/tlkd/tlkd.mk index d814d94f1..b1159e78f 100644 --- a/services/spd/tlkd/tlkd.mk +++ b/services/spd/tlkd/tlkd.mk @@ -34,5 +34,3 @@ SPD_SOURCES := services/spd/tlkd/tlkd_common.c \ services/spd/tlkd/tlkd_helpers.S \ services/spd/tlkd/tlkd_main.c \ services/spd/tlkd/tlkd_pm.c - -NEED_BL32 := yes