From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id 8DCA1740032 for ; Fri, 17 May 2024 09:49:41 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=nFhV5C8Q9JPkBjmfL1t8ML2nc0C2y/bNSTyi/nZRmSc=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20240206; t=1715939380; v=1; b=u9Nl7pgItIk5S7jWqupuxDQQy7ONAb2JhShqhSLJ/s33kfq0tvW0N16TzfLXZZSw1b7QIlyn c6fUD/zdEfs5li2I5FnBBj2EdtW6dUNSp6xItOoAi5EFFI696Up7WIC0OwyxyUO6UAr2T+JGuwV I3aabK0jPDSmDvpkSPBl8i2KvzYh5kgQO0eL/G74M775MP2YUWhJjSMlIPMdbGZVruqf7etlV2T f7FJDWrqikwsyK4S5IUsFKX0/yKCXYohNhj9GTyVH6/0DIuT99VhmQsqd1JYcH6lbj6LcpNGjWU Hw3jpxgOCI0Fck2sqhI36JmozFJzSEssXKh6l0jRjpSvQ== X-Received: by 127.0.0.2 with SMTP id S0MfYY7687511x5n0XlMFGCc; Fri, 17 May 2024 02:49:40 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) by mx.groups.io with SMTP id smtpd.web10.36016.1715939370910548931 for ; Fri, 17 May 2024 02:49:39 -0700 X-CSE-ConnectionGUID: +NoLgYByRyy9qOmZWms20A== X-CSE-MsgGUID: 15DRBGjqQb+vnde05m+9Zw== X-IronPort-AV: E=McAfee;i="6600,9927,11074"; a="11570296" X-IronPort-AV: E=Sophos;i="6.08,167,1712646000"; d="scan'208";a="11570296" X-Received: from fmviesa008.fm.intel.com ([10.60.135.148]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 May 2024 02:49:39 -0700 X-CSE-ConnectionGUID: UtBbvFq1Sq6I/HOveoMHhg== X-CSE-MsgGUID: Ef8sxfinTMGLhTa2nUb4WQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,167,1712646000"; d="scan'208";a="31739193" X-Received: from unknown (HELO shwdeopenlab702.ccr.corp.intel.com) ([10.239.55.43]) by fmviesa008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 May 2024 02:49:38 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Andrew Fish , Ray Ni Subject: [edk2-devel] [PATCH 3/9] EmulatorPkg: Add MmUnblockMemoryLib in DSC Date: Fri, 17 May 2024 17:49:11 +0800 Message-Id: <20240517094917.513-4-dun.tan@intel.com> In-Reply-To: <20240517094917.513-1-dun.tan@intel.com> References: <20240517094917.513-1-dun.tan@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Fri, 17 May 2024 02:49:39 -0700 Resent-From: dun.tan@intel.com Reply-To: devel@edk2.groups.io,dun.tan@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: V5YpjHAvIXamBG5IERoW5LEMx7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=u9Nl7pgI; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io Add MmUnblockMemoryLib in EmulatorPkg.dsc. This lib will be required by VariablePei in following commits. Signed-off-by: Dun Tan Cc: Andrew Fish Cc: Ray Ni --- EmulatorPkg/EmulatorPkg.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/EmulatorPkg/EmulatorPkg.dsc b/EmulatorPkg/EmulatorPkg.dsc index 5fa1ed345a..0e15dafb5c 100644 --- a/EmulatorPkg/EmulatorPkg.dsc +++ b/EmulatorPkg/EmulatorPkg.dsc @@ -127,6 +127,7 @@ ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf ImagePropertiesRecordLib|MdeModulePkg/Library/ImagePropertiesRecordLib/ImagePropertiesRecordLib.inf + MmUnblockMemoryLib|MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibNull.inf !if $(SECURE_BOOT_ENABLE) == TRUE RngLib|MdeModulePkg/Library/BaseRngLibTimerLib/BaseRngLibTimerLib.inf -- 2.31.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#119020): https://edk2.groups.io/g/devel/message/119020 Mute This Topic: https://groups.io/mt/106150799/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-