From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by mx.groups.io with SMTP id smtpd.web11.63890.1672754729383538399 for ; Tue, 03 Jan 2023 06:05:29 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=O4IlvTbs; spf=pass (domain: kernel.org, ip: 145.40.68.75, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 8D054B80E51 for ; Tue, 3 Jan 2023 14:05:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5BC63C433EF for ; Tue, 3 Jan 2023 14:05:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672754726; bh=Ed/ZuqIYMJNZYx/7P0nVe+12x1aBon8QCrbAZco9RQQ=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=O4IlvTbsBL9/cvkdpzd9ZX12vzqvXdpIQSRvJ/kcXJaMVg4MNsSqnMi4xi1McX74o v7gjZL+WXgmvElo0r32pBRg7wvUrKJSa75rLmu6TLecDr3g4D29V1RhNFwtT5ANzv2 pXnk3bOA9l7LcchFr2ZkyqjUODmCCofm7H4DFsDv99Q3qzAYd5QHdlWY3yh+cuNar2 5EYb01q8dBZedd9GBwAMpfuymTWQTPX9iflMmfhG9eejU6cZDhmLByn5ZthV5+b7oP J0d8ykDLd68T35m0McBvIqMjK3kd7HFpU9L1ifzM83NCnYzeIDpxZntDjkxjxpLgwL RwGE7iYXxsgjw== Received: by mail-lf1-f51.google.com with SMTP id m6so35407496lfj.11 for ; Tue, 03 Jan 2023 06:05:26 -0800 (PST) X-Gm-Message-State: AFqh2kr2T1cV7YCbXX7cWTpJ/WGNHmlq0DVY3Xis0xThAlj9KcXXAN2Y occqkIFCH1u20iSYS8K+o9gIKzd4RFpuPUnfGeI= X-Google-Smtp-Source: AMrXdXsP/UTajx2uVv3iY+2zjx4OIkTVpmKYtvzrXHE5UajnvTKmx9nCJbLYllBRn54EtE26tVWhQLFB7U65fwNOa/I= X-Received: by 2002:ac2:4a72:0:b0:4b6:f37c:c123 with SMTP id q18-20020ac24a72000000b004b6f37cc123mr3065299lfp.539.1672754724356; Tue, 03 Jan 2023 06:05:24 -0800 (PST) MIME-Version: 1.0 References: <20230103124730.141710-1-vivek.gautam@arm.com> In-Reply-To: <20230103124730.141710-1-vivek.gautam@arm.com> From: "Ard Biesheuvel" Date: Tue, 3 Jan 2023 15:05:13 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-platforms][PATCH V1 1/1] Platform/Sgi: Fix missing FdtLib instance issue To: Vivek Gautam Cc: devel@edk2.groups.io, ardb+tianocore@kernel.org, achin.gupta@arm.com, Sami.Mujawar@arm.com, pierre.gondois@arm.com Content-Type: text/plain; charset="UTF-8" On Tue, 3 Jan 2023 at 13:48, Vivek Gautam wrote: > > Include the FdtLib path to fix a build issue coming on Arm/SgiPkg with > PlatformStandaloneMm2. > > Fixes the build breakage introduced by 9ad168c9e0: > StandaloneMmPkg: Include libfdt in the StMM > > Signed-off-by: Vivek Gautam Pushed as 1b3845432449..eb3950b842d3 Thanks, > --- > Platform/ARM/SgiPkg/SgiPlatformMm.dsc.inc | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Platform/ARM/SgiPkg/SgiPlatformMm.dsc.inc b/Platform/ARM/SgiPkg/SgiPlatformMm.dsc.inc > index ae0ff7247a6a..01f0a7657c51 100644 > --- a/Platform/ARM/SgiPkg/SgiPlatformMm.dsc.inc > +++ b/Platform/ARM/SgiPkg/SgiPlatformMm.dsc.inc > @@ -38,6 +38,7 @@ > ArmLib|ArmPkg/Library/ArmLib/ArmBaseLib.inf > StandaloneMmMmuLib|ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf > ArmSvcLib|ArmPkg/Library/ArmSvcLib/ArmSvcLib.inf > + FdtLib|EmbeddedPkg/Library/FdtLib/FdtLib.inf > CacheMaintenanceLib|ArmPkg/Library/ArmCacheMaintenanceLib/ArmCacheMaintenanceLib.inf > PeCoffExtraActionLib|StandaloneMmPkg/Library/StandaloneMmPeCoffExtraActionLib/StandaloneMmPeCoffExtraActionLib.inf > > -- > 2.25.1 >