Add RISC-V architecture for EDK2 CI testing. BZ:2562: https://bugzilla.tianocore.org/show_bug.cgi?id=2562 Signed-off-by: Abner Chang <abner.chang@hpe.com> Co-authored-by: Daniel Schaefer <daniel.schaefer@hpe.com> Reviewed-by: Xiaoyu Lu <xiaoyux.lu@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Xiaoyu Lu <xiaoyux.lu@intel.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Gilbert Chen <gilbert.chen@hpe.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
## @file
 | 
						|
# Implements the BaseCryptLib and TlsLib using the services of the EDK II Crypto
 | 
						|
# PPI.
 | 
						|
#
 | 
						|
# Copyright (C) Microsoft Corporation. All rights reserved.
 | 
						|
# Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
 | 
						|
# SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
#
 | 
						|
##
 | 
						|
 | 
						|
[Defines]
 | 
						|
  INF_VERSION                    = 0x0001001B
 | 
						|
  BASE_NAME                      = PeiCryptLib
 | 
						|
  MODULE_UNI_FILE                = CryptLib.uni
 | 
						|
  FILE_GUID                      = 3E8B50C6-F68C-4212-B903-94A10FE02399
 | 
						|
  VERSION_STRING                 = 1.0
 | 
						|
  MODULE_TYPE                    = PEIM
 | 
						|
  LIBRARY_CLASS                  = BaseCryptLib | PEIM
 | 
						|
  LIBRARY_CLASS                  = TlsLib       | PEIM
 | 
						|
 | 
						|
#
 | 
						|
# The following information is for reference only and not required by the build tools.
 | 
						|
#
 | 
						|
# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64 RISCV64
 | 
						|
#
 | 
						|
 | 
						|
[Packages]
 | 
						|
  MdePkg/MdePkg.dec
 | 
						|
  CryptoPkg/CryptoPkg.dec
 | 
						|
 | 
						|
[LibraryClasses]
 | 
						|
  BaseLib
 | 
						|
  DebugLib
 | 
						|
  PeiServicesLib
 | 
						|
 | 
						|
[Sources]
 | 
						|
  PeiCryptLib.c
 | 
						|
  CryptLib.c
 | 
						|
 | 
						|
[Ppis]
 | 
						|
  gEdkiiCryptoPpiGuid  ## CONSUMES
 | 
						|
 | 
						|
[Depex]
 | 
						|
  gEdkiiCryptoPpiGuid
 |