Home | History | Annotate | Download | only in AndroidFastbootTransportUsbDxe
      1 #/** @file
      2 #
      3 #  Copyright (c) 2013-2014, ARM Ltd. All rights reserved.<BR>
      4 #
      5 #  This program and the accompanying materials
      6 #  are licensed and made available under the terms and conditions of the BSD License
      7 #  which accompanies this distribution. The full text of the license may be found at
      8 #  http://opensource.org/licenses/bsd-license.php
      9 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     10 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     11 #
     12 #
     13 #**/
     14 
     15 [Defines]
     16   INF_VERSION                    = 0x00010005
     17   BASE_NAME                      = FastbootTransportUsbDxe
     18   FILE_GUID                      = f6bec3fe-88fb-11e3-ae84-e73b77561c35
     19   MODULE_TYPE                    = UEFI_DRIVER
     20   VERSION_STRING                 = 1.0
     21   ENTRY_POINT                    = FastbootTransportUsbEntryPoint
     22 
     23 [Sources.common]
     24   FastbootTransportUsb.c
     25 
     26 [LibraryClasses]
     27   BaseLib
     28   BaseMemoryLib
     29   MemoryAllocationLib
     30   UefiBootServicesTableLib
     31   UefiDriverEntryPoint
     32 
     33 [Protocols]
     34   gEfiDriverBindingProtocolGuid
     35   gUsbDeviceProtocolGuid
     36   gAndroidFastbootTransportProtocolGuid
     37   gEfiSimpleTextOutProtocolGuid
     38 
     39 [Packages]
     40   MdePkg/MdePkg.dec
     41   MdeModulePkg/MdeModulePkg.dec
     42   EmbeddedPkg/EmbeddedPkg.dec
     43 
     44 [FixedPcd]
     45   gEmbeddedTokenSpaceGuid.PcdAndroidFastbootUsbVendorId
     46   gEmbeddedTokenSpaceGuid.PcdAndroidFastbootUsbProductId
     47