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

      2 # Acpi Support Dirver to install Framework Acpi Support Protocol.

      3 #

      4 # This driver initializes ACPI support protocol instance data structure and intstall 

      5 # ACPI support protocol to provide Get, Set and Publish Table services.

      6 #

      7 # Copyright (c) 2006 - 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

     11 # of the BSD License which accompanies this distribution.  The

     12 # full text of the license may be found at

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

     14 #

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

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

     17 #

     18 ##

     19 
     20 [Defines]
     21   INF_VERSION                    = 0x00010005
     22   BASE_NAME                      = AcpiSupportDxe
     23   MODULE_UNI_FILE                = AcpiSupportDxe.uni
     24   FILE_GUID                      = 506533a6-e626-4500-b14f-17939c0e5b60
     25   MODULE_TYPE                    = DXE_DRIVER
     26   VERSION_STRING                 = 1.0
     27 
     28   ENTRY_POINT                    = InstallAcpiSupport
     29 
     30 #

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

     32 #

     33 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     34 #

     35 
     36 [Sources]
     37   AcpiSupportAcpiSupportProtocol.c
     38   AcpiSupport.h
     39   AcpiSupport.c
     40 
     41 
     42 [Packages]
     43   MdePkg/MdePkg.dec
     44   MdeModulePkg/MdeModulePkg.dec
     45   IntelFrameworkPkg/IntelFrameworkPkg.dec
     46   IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
     47 
     48 [LibraryClasses]
     49   UefiBootServicesTableLib
     50   MemoryAllocationLib
     51   UefiDriverEntryPoint
     52   BaseMemoryLib
     53   UefiLib
     54   DebugLib
     55   BaseLib
     56   PcdLib
     57 
     58 
     59 [Guids]
     60   gEfiAcpi10TableGuid                           ## PRODUCES ## SystemTable

     61   gEfiAcpiTableGuid                             ## PRODUCES ## SystemTable

     62 
     63 [FeaturePcd]
     64   gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdInstallAcpiSupportProtocol ## CONSUMES

     65 
     66 [Pcd]
     67   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemId            ## CONSUMES

     68   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemTableId       ## CONSUMES

     69   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemRevision      ## CONSUMES

     70   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorId        ## CONSUMES

     71   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorRevision  ## CONSUMES

     72 
     73 [Protocols]
     74   gEfiAcpiTableProtocolGuid                     ## PRODUCES

     75   gEfiAcpiSupportProtocolGuid                   ## SOMETIMES_PRODUCES

     76 
     77 [Depex]
     78   TRUE
     79 
     80 [UserExtensions.TianoCore."ExtraFiles"]
     81   AcpiSupportDxeExtra.uni
     82