From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web11.28286.1679769952773908107 for ; Sat, 25 Mar 2023 11:45:53 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=UJc23YCv; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: michael.d.kinney@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679769953; x=1711305953; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=rQWOiAvu4YUUuWdYAhlf5cit5vpSCqqY1U8/UJ14+Z4=; b=UJc23YCvX/i2UG+FQmspBwpllEX77DziP8OulvNu6PYqCmQkM1Y4D7U8 vP2xafLseFt0fdxGpMxZarmJyx5eqtu4nAbxbKaSbqiviOXQH5CSI6rzO F8bj+fdSYE7EcojIOPbItxLmKm5k/wOikD99+mYb/sTwbXbDkCtgfl6r5 QHyIaJ1YrIcrEk52NHrFM5iWn3dH/mQubBXwNKQUBqavVvJ5Rn0SZYYFc D6+R2e85O9XezlotTzY5V/665VJJvvsqbCu5BnY+6fBHBgr1/rNVsjmJO 001pjtOoczwRWhNYuTIXLFqv+iK8rMhTwyy7tzH3YfgXoWtJlSgy6sgv/ A==; X-IronPort-AV: E=McAfee;i="6600,9927,10660"; a="319655088" X-IronPort-AV: E=Sophos;i="5.98,291,1673942400"; d="scan'208";a="319655088" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2023 11:45:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10660"; a="685541419" X-IronPort-AV: E=Sophos;i="5.98,291,1673942400"; d="scan'208";a="685541419" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.212.254.125]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2023 11:45:53 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Jiewen Yao , Jian J Wang Subject: [Patch 09/12] SecurityPkg/Library/SecureBootVariableLib: HOST_APPLICATION IA32/X64 only Date: Sat, 25 Mar 2023 11:45:37 -0700 Message-Id: <20230325184541.596-10-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230325184541.596-1-michael.d.kinney@intel.com> References: <20230325184541.596-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Jiewen Yao Cc: Jian J Wang Signed-off-by: Michael D Kinney --- .../UnitTest/MockPlatformPKProtectionLib.inf | 2 +- .../Library/SecureBootVariableLib/UnitTest/MockUefiLib.inf | 2 +- .../UnitTest/MockUefiRuntimeServicesTableLib.inf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockPlatformPKProtectionLib.inf b/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockPlatformPKProtectionLib.inf index c927ef709958..3698e4fad059 100644 --- a/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockPlatformPKProtectionLib.inf +++ b/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockPlatformPKProtectionLib.inf @@ -17,7 +17,7 @@ [Defines] # # The following information is for reference only and not required by the build tools. # -# VALID_ARCHITECTURES = IA32 X64 AARCH64 +# VALID_ARCHITECTURES = IA32 X64 # [Sources] diff --git a/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiLib.inf b/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiLib.inf index fecf46841131..e02d04f376da 100644 --- a/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiLib.inf +++ b/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiLib.inf @@ -23,7 +23,7 @@ [Defines] LIBRARY_CLASS = UefiLib # -# VALID_ARCHITECTURES = IA32 X64 EBC +# VALID_ARCHITECTURES = IA32 X64 # [Sources] diff --git a/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiRuntimeServicesTableLib.inf b/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiRuntimeServicesTableLib.inf index 6fe04189606e..e59a3394d58f 100644 --- a/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiRuntimeServicesTableLib.inf +++ b/SecurityPkg/Library/SecureBootVariableLib/UnitTest/MockUefiRuntimeServicesTableLib.inf @@ -15,7 +15,7 @@ [Defines] LIBRARY_CLASS = UefiRuntimeServicesTableLib # -# VALID_ARCHITECTURES = IA32 X64 EBC +# VALID_ARCHITECTURES = IA32 X64 # [Sources] -- 2.39.1.windows.1