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

      2 # FSP PEI Module

      3 #

      4 # Parses the hoblist from fsp and report them into pei core. It will install

      5 # the memory as required.

      6 #

      7 #  Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>

      8 #

      9 #  This program and the accompanying materials

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

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

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

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

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

     15 #

     16 ##

     17 
     18 [Defines]
     19   INF_VERSION                    = 0x00010005
     20   BASE_NAME                      = BootModePeim
     21   FILE_GUID                      = 2B1D0832-2184-4C8F-A90D-8E4AF9DE5BCD
     22   MODULE_TYPE                    = PEIM
     23   VERSION_STRING                 = 1.0
     24   ENTRY_POINT                    = BootModePeiEntryPoint
     25 
     26 #

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

     28 #

     29 #  VALID_ARCHITECTURES           = IA32

     30 #

     31 
     32 [Sources]
     33   BootModePei.c
     34 
     35 [Packages]
     36   MdePkg/MdePkg.dec
     37 
     38 [LibraryClasses]
     39   PeimEntryPoint
     40 
     41 [Ppis]
     42   gEfiPeiMasterBootModePpiGuid
     43 
     44 [Depex]
     45   TRUE
     46