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

      2 # Stuff driver

      3 #

      4 # Tiano PEIM to abstract construction of firmware volume in a Emu environment.

      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                      = ThunkPpiToProtocolPei
     21   FILE_GUID                      = C32A66D5-D8B7-2640-B768-082C8F083C37
     22   MODULE_TYPE                    = PEIM
     23   VERSION_STRING                 = 1.0
     24 
     25   ENTRY_POINT                    = PeiInitialzeThunkPpiToProtocolPei
     26 
     27 
     28 [Sources]
     29   ThunkPpiToProtocolPei.c
     30 
     31 
     32 [Packages]
     33   MdePkg/MdePkg.dec
     34   EmulatorPkg/EmulatorPkg.dec
     35 
     36 
     37 [LibraryClasses]
     38   PeiServicesTablePointerLib
     39   PeiServicesLib
     40   HobLib
     41   PeimEntryPoint
     42   DebugLib
     43 
     44 
     45 [Protocols]
     46   gEmuThunkProtocolGuid                     # PROTOCOL ALWAYS_CONSUMED

     47 
     48 
     49 [Ppis]
     50   gEmuThunkPpiGuid                          # PPI ALWAYS_CONSUMED

     51 
     52 
     53 [Depex]
     54   gEmuThunkPpiGuid AND gEfiPeiMemoryDiscoveredPpiGuid
     55 
     56