From eb8cb9534b58537e4ead8d1f8112ece45993c86d Mon Sep 17 00:00:00 2001 From: Salman Nabi Date: Wed, 18 Dec 2024 14:46:43 +0000 Subject: [PATCH] feat(arm): enable Linux boot from fip as BL33 Disable the reliance of ARM_LINUX_KERNEL_AS_BL33 on PRELOADED_BL33_BASE so that a Linux Kernel can be loaded and booted from the fip as BL33. Change-Id: I0437eec852cf17e0ed37a7ff77fcc4e66b1cea7a Signed-off-by: Salman Nabi --- plat/arm/common/arm_common.mk | 3 --- 1 file changed, 3 deletions(-) diff --git a/plat/arm/common/arm_common.mk b/plat/arm/common/arm_common.mk index 580ef5fa1..6d59bae63 100644 --- a/plat/arm/common/arm_common.mk +++ b/plat/arm/common/arm_common.mk @@ -108,9 +108,6 @@ ifeq (${ARM_LINUX_KERNEL_AS_BL33},1) $(error ARM_LINUX_KERNEL_AS_BL33 is only available if RESET_TO_SP_MIN=1.) endif endif - ifndef PRELOADED_BL33_BASE - $(error PRELOADED_BL33_BASE must be set if ARM_LINUX_KERNEL_AS_BL33 is used.) - endif ifeq (${RESET_TO_BL31},1) ifndef ARM_PRELOADED_DTB_BASE $(error ARM_PRELOADED_DTB_BASE must be set if ARM_LINUX_KERNEL_AS_BL33 is used with RESET_TO_BL31.)