From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.24252.1638621060458735242 for ; Sat, 04 Dec 2021 04:31:00 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: chandni.cherukuri@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 50F2C152B; Sat, 4 Dec 2021 04:30:53 -0800 (PST) Received: from usa.arm.com (a074744.blr.arm.com [10.162.17.16]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id A598F3F766; Sat, 4 Dec 2021 04:30:51 -0800 (PST) From: "chandni cherukuri" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Sami Mujawar , Chandni Cherukuri Subject: [edk2-platforms][PATCH V1 01/11] Platform/ARM/Morello: Rename PlatformLib.inf file Date: Sat, 4 Dec 2021 18:00:32 +0530 Message-Id: <20211204123042.32140-2-chandni.cherukuri@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20211204123042.32140-1-chandni.cherukuri@arm.com> References: <20211204123042.32140-1-chandni.cherukuri@arm.com> PlatformLibMem.c file is going to be different for Morello FVP and Morello SoC platforms since the virtual memory mapping is different so the file PlatformLibMem.c is renamed as PlatformLibMemFvp.c and PlatformLib.inf is renamed as PlatformLibFvp.inf. Signed-off-by: Chandni Cherukuri --- Platform/ARM/Morello/Library/PlatformLib/{PlatformLib.inf => PlatformLibFvp.inf} | 4 ++-- Platform/ARM/Morello/Library/PlatformLib/{PlatformLibMem.c => PlatformLibMemFvp.c} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/ARM/Morello/Library/PlatformLib/PlatformLib.inf b/Platform/ARM/Morello/Library/PlatformLib/PlatformLibFvp.inf similarity index 91% rename from Platform/ARM/Morello/Library/PlatformLib/PlatformLib.inf rename to Platform/ARM/Morello/Library/PlatformLib/PlatformLibFvp.inf index c2d7da3701d2..d4c8744c0954 100644 --- a/Platform/ARM/Morello/Library/PlatformLib/PlatformLib.inf +++ b/Platform/ARM/Morello/Library/PlatformLib/PlatformLibFvp.inf @@ -1,5 +1,5 @@ ## @file -# Platform Library for Morello platform. +# Platform Library for Morello FVP platform. # # Copyright (c) 2021, ARM Limited. All rights reserved.
# @@ -24,7 +24,7 @@ [Sources.common] PlatformLib.c - PlatformLibMem.c + PlatformLibMemFvp.c [Sources.AARCH64] AArch64/Helper.S | GCC diff --git a/Platform/ARM/Morello/Library/PlatformLib/PlatformLibMem.c b/Platform/ARM/Morello/Library/PlatformLib/PlatformLibMemFvp.c similarity index 100% rename from Platform/ARM/Morello/Library/PlatformLib/PlatformLibMem.c rename to Platform/ARM/Morello/Library/PlatformLib/PlatformLibMemFvp.c -- 2.17.1