mirror of
				https://gitlab.com/qemu-project/edk2.git
				synced 2025-10-30 07:56:39 +08:00 
			
		
		
		
	 3d50e76f03
			
		
	
	3d50e76f03
	
	
	
		
			
			edk2 is dropping support for the ARM32 architecture. This commit removes ARM32 support from UefiPayloadPkg. It removes irrelevant VALID_ARCHITECTURES comments from infs that are not arch specific. Signed-off-by: Oliver Smith-Denny <osde@microsoft.com>
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
| ## @file
 | |
| #  Coreboot Table Parse Library.
 | |
| #
 | |
| #  Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
 | |
| #  SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| #
 | |
| ##
 | |
| 
 | |
| [Defines]
 | |
|   INF_VERSION                    = 0x00010005
 | |
|   BASE_NAME                      = FdtParseLib
 | |
|   FILE_GUID                      = 8956F72D-9626-4959-98B7-1BD4A3EA687E
 | |
|   MODULE_TYPE                    = BASE
 | |
|   VERSION_STRING                 = 1.0
 | |
|   LIBRARY_CLASS                  = FdtParseLib
 | |
| 
 | |
| #
 | |
| # The following information is for reference only and not required by the build tools.
 | |
| #
 | |
| #  VALID_ARCHITECTURES           = IA32 X64 AARCH64
 | |
| #
 | |
| 
 | |
| [Sources]
 | |
|   FdtParserLib.c
 | |
| 
 | |
| [Packages]
 | |
|   MdePkg/MdePkg.dec
 | |
|   MdeModulePkg/MdeModulePkg.dec
 | |
|   UefiPayloadPkg/UefiPayloadPkg.dec
 | |
| 
 | |
| [LibraryClasses]
 | |
|   DebugLib
 | |
|   PcdLib
 | |
|   HobLib
 | |
|   FdtLib
 | |
|   CustomFdtNodeParserLib
 | |
| 
 | |
| [Guids]
 | |
|   gUniversalPayloadDeviceTreeGuid
 | |
|   gEfiGraphicsInfoHobGuid
 | |
|   gEfiGraphicsDeviceInfoHobGuid
 | |
|   gUniversalPayloadAcpiTableGuid
 | |
|   gUniversalPayloadSerialPortInfoGuid
 | |
|   gUplPciSegmentInfoHobGuid
 | |
| 
 | |
| [Pcd.IA32,Pcd.X64,Pcd.RISCV64,Pcd.AARCH64]
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdPayloadFdMemSize
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdSystemMemoryUefiRegionSize
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdHandOffFdtEnable
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdPayloadFdMemBase
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdPciReservedPMemBase
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdPciReservedPMemLimit
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdPciReservedPMemAbove4GBBase
 | |
|   gUefiPayloadPkgTokenSpaceGuid.PcdPciReservedPMemAbove4GBLimit
 | |
|   gUefiPayloadPkgTokenSpaceGuid.SizeOfIoSpace
 | |
| 
 | |
| 
 | |
| [BuildOptions]
 | |
|   MSFT:*_*_*_CC_FLAGS = /wd4305
 | |
|   GCC:*_*_IA32_CC_FLAGS    = -Wno-error=pointer-to-int-cast -Wno-error=int-to-pointer-cast
 | |
|   GCC:*_*_X64_CC_FLAGS     = -Wno-error=pointer-to-int-cast -Wno-error=int-to-pointer-cast
 | |
|   GCC:*_*_AARCH64_CC_FLAGS = -Wno-error=pointer-to-int-cast -Wno-error=int-to-pointer-cast
 | |
|   GCC:*_*_RISCV64_CC_FLAGS = -Wno-error=pointer-to-int-cast -Wno-error=int-to-pointer-cast
 | |
|   GCC:*_*_LOONGARCH64_CC_FLAGS = -Wno-error=pointer-to-int-cast -Wno-error=int-to-pointer-cast
 |