Home | History | Annotate | Download | only in FlashMapPei
      1 ## @file

      2 # Component description file for FlashMap PEI module

      3 #

      4 # This module installs FlashMap PPI which is used to get flash layout information.

      5 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>

      6 # Portions copyright (c) 2011, Apple Inc. All rights reserved.

      7 #

      8 #  This program and the accompanying materials

      9 #  are licensed and made available under the terms and conditions of the BSD License

     10 #  which accompanies this distribution. The full text of the license may be found at

     11 #  http://opensource.org/licenses/bsd-license.php

     12 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     13 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     14 #

     15 #

     16 ##

     17 
     18 [Defines]
     19   INF_VERSION                    = 0x00010005
     20   BASE_NAME                      = FlashMapPei
     21   FILE_GUID                      = C9FAF091-57F8-A64C-A07A-445B124F0D93
     22   MODULE_TYPE                    = PEIM
     23   VERSION_STRING                 = 1.0
     24 
     25   ENTRY_POINT                    = PeimInitializeFlashMap
     26 
     27 #

     28 # The following information is for reference only and not required by the build tools.

     29 #

     30 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     31 #

     32 
     33 [Sources]
     34   FlashMapPei.c
     35 
     36 [Packages]
     37   MdePkg/MdePkg.dec
     38   MdeModulePkg/MdeModulePkg.dec
     39   EmulatorPkg/EmulatorPkg.dec
     40 
     41 [LibraryClasses]
     42   PcdLib
     43   BaseMemoryLib
     44   PeiServicesTablePointerLib
     45   PeiServicesLib
     46   HobLib
     47   PeimEntryPoint
     48   DebugLib
     49 
     50 
     51 [Ppis]
     52   gEmuThunkPpiGuid                               # PPI ALWAYS_CONSUMED

     53 
     54 [Pcd]
     55   gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
     56   gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64
     57   gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
     58   gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64
     59   gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
     60   gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64
     61 
     62   gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageFtwWorkingBase
     63   gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageFtwSpareBase
     64   gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageVariableBase
     65 
     66 [Depex]
     67   gEmuThunkPpiGuid
     68 
     69