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

      2 #  Console support on graphic devices.

      3 #

      4 #  This driver will install Simple Text Output protocol by consuming Graphices Output

      5 #  protocol or UGA Draw protocol on graphic devices.

      6 #  

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

      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                      = GraphicsConsoleDxe
     21   MODULE_UNI_FILE                = GraphicsConsoleDxe.uni
     22   FILE_GUID                      = CCCB0C28-4B24-11d5-9A5A-0090273FC14D
     23   MODULE_TYPE                    = UEFI_DRIVER
     24   VERSION_STRING                 = 1.0
     25   ENTRY_POINT                    = InitializeGraphicsConsole
     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 #  DRIVER_BINDING                =  gGraphicsConsoleDriverBinding

     33 #  COMPONENT_NAME                =  gGraphicsConsoleComponentName

     34 #  COMPONENT_NAME2               =  gGraphicsConsoleComponentName2

     35 #

     36 
     37 [Sources]
     38   ComponentName.c
     39   LaffStd.c
     40   GraphicsConsole.c
     41   GraphicsConsole.h
     42 
     43 [Packages]
     44   MdePkg/MdePkg.dec
     45   MdeModulePkg/MdeModulePkg.dec
     46 
     47 [LibraryClasses]
     48   UefiBootServicesTableLib
     49   MemoryAllocationLib
     50   BaseMemoryLib
     51   UefiLib
     52   UefiDriverEntryPoint
     53   DebugLib
     54   HiiLib
     55   PcdLib
     56 
     57 [Protocols]
     58   gEfiDevicePathProtocolGuid                    ## TO_START

     59   gEfiSimpleTextOutProtocolGuid                 ## BY_START

     60   gEfiGraphicsOutputProtocolGuid                ## TO_START

     61   gEfiUgaDrawProtocolGuid                       ## TO_START

     62   gEfiHiiFontProtocolGuid                       ## TO_START

     63   ## TO_START

     64   ## NOTIFY

     65   gEfiHiiDatabaseProtocolGuid
     66 
     67 [FeaturePcd]
     68   gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## CONSUMES

     69 
     70 [Pcd]
     71   gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution ## SOMETIMES_CONSUMES

     72   gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution   ## SOMETIMES_CONSUMES

     73 
     74 [UserExtensions.TianoCore."ExtraFiles"]
     75   GraphicsConsoleDxeExtra.uni
     76