1#/** @file 2# 3# Copyright (c) 2015, ARM Ltd. All rights reserved.<BR> 4# 5# This program and the accompanying materials 6# are licensed and made available under the terms and conditions of the BSD License 7# which accompanies this distribution. The full text of the license may be found at 8# http://opensource.org/licenses/bsd-license.php 9# 10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12# 13#**/ 14 15[Defines] 16 INF_VERSION = 0x00010006 17 BASE_NAME = FdtPlatformDxe 18 MODULE_UNI_FILE = FdtPlatformDxe.uni 19 FILE_GUID = 6e9a4c69-57c6-4fcd-b083-4f2c3bdb6051 20 MODULE_TYPE = UEFI_DRIVER 21 VERSION_STRING = 0.1 22 ENTRY_POINT = FdtPlatformEntryPoint 23 24[Sources.common] 25 FdtPlatform.c 26 FdtPlatformDxe.uni 27 ShellDumpFdt.c 28 ShellSetFdt.c 29 30[Packages] 31 EmbeddedPkg/EmbeddedPkg.dec 32 ArmPkg/ArmPkg.dec 33 MdePkg/MdePkg.dec 34 MdeModulePkg/MdeModulePkg.dec 35 ShellPkg/ShellPkg.dec 36 37[LibraryClasses] 38 UefiDriverEntryPoint 39 BdsLib 40 DxeServicesTableLib 41 BaseMemoryLib 42 DebugLib 43 FdtLib 44 UefiBootServicesTableLib 45 UefiRuntimeServicesTableLib 46 HiiLib 47 ShellLib 48 49[Protocols] 50 gEfiDevicePathToTextProtocolGuid 51 gEfiDevicePathFromTextProtocolGuid 52 gEfiShellDynamicCommandProtocolGuid 53 54[Guids] 55 gEfiEndOfDxeEventGroupGuid 56 gFdtTableGuid 57 gFdtVariableGuid 58 59[FeaturePcd] 60 gEmbeddedTokenSpaceGuid.PcdOverridePlatformFdt 61 gEmbeddedTokenSpaceGuid.PcdDumpFdtShellCommand 62 63[Pcd] 64 gEmbeddedTokenSpaceGuid.PcdFdtDevicePaths 65