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

      2 #  Standard C library: Console Device Abstraction.

      3 #

      4 #  Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>

      5 #  This program and the accompanying materials are licensed and made available

      6 #  under the terms and conditions of the BSD License which accompanies this

      7 #  distribution.  The full text of the license may be found at

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

      9 #

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

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

     12 #

     13 #

     14 ##

     15 
     16 [Defines]
     17   INF_VERSION                   = 0x00010005
     18   BASE_NAME                     = DevConsole
     19   FILE_GUID                     = f6937495-1f44-4a8a-8a1b-5a669f9396f6
     20   MODULE_TYPE                   = UEFI_APPLICATION
     21   VERSION_STRING                = 1.0
     22   LIBRARY_CLASS                 = DevConsole
     23   CONSTRUCTOR                   = __Cons_construct
     24   DESTRUCTOR                    = __Cons_deconstruct
     25 
     26 #

     27 #  VALID_ARCHITECTURES          = IA32 X64 IPF

     28 #

     29 
     30 [Sources]
     31   Console/daConsole.c
     32 
     33 [Packages]
     34   StdLib/StdLib.dec
     35   StdLibPrivateInternalFiles/DoNotUse.dec
     36   MdePkg/MdePkg.dec
     37   ShellPkg/ShellPkg.dec
     38 
     39 [LibraryClasses]
     40   BaseLib
     41   BaseMemoryLib
     42   MemoryAllocationLib
     43   UefiBootServicesTableLib
     44   LibC
     45   LibWchar
     46   LibUefi
     47   LibIIO
     48   DevUtility
     49 
     50 [Protocols]
     51   gEfiSimpleTextInProtocolGuid        ## CONSUMED

     52   gEfiSimpleTextOutProtocolGuid       ## CONSUMED

     53