Home | History | Annotate | Download | only in SocketDxe
      1 #/** @file
      2 # Component description file for the socket layer driver.
      3 #
      4 # This module implements the socket layer.
      5 # Copyright (c) 2011, Intel Corporation
      6 #
      7 #  All rights reserved. This program and the accompanying materials
      8 #  are licensed and made available under the terms and conditions of the BSD License
      9 #  which accompanies this distribution. The full text of the license may be found at
     10 #  http://opensource.org/licenses/bsd-license.php
     11 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     12 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     13 #
     14 #**/
     15 
     16 [Defines]
     17   INF_VERSION                    = 0x00010005
     18   BASE_NAME                      = SocketDxe
     19   FILE_GUID                      = 2A43BA5F-AC29-4fdc-8A3B-0328D0256F8C
     20   MODULE_TYPE                    = DXE_RUNTIME_DRIVER
     21   VERSION_STRING                 = 1.0
     22 
     23   ENTRY_POINT                    = EntryPoint
     24 
     25 #
     26 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
     27 #
     28 
     29 [Sources.common]
     30   Socket.h
     31   ComponentName.c
     32   DriverBinding.c
     33   EntryUnload.c
     34 
     35 [Packages]
     36   MdePkg/MdePkg.dec
     37   MdeModulePkg/MdeModulePkg.dec
     38   StdLib/StdLib.dec
     39 
     40 [LibraryClasses]
     41   EfiSocketLib
     42   UefiLib
     43   UefiBootServicesTableLib
     44   BaseMemoryLib
     45   DebugLib
     46   UefiRuntimeLib
     47   UefiDriverEntryPoint
     48 
     49 [Protocols]
     50   gEfiTcp4ProtocolGuid
     51   gEfiTcp4ServiceBindingProtocolGuid
     52   gEfiUdp4ProtocolGuid
     53   gEfiUdp4ServiceBindingProtocolGuid
     54   gEfiSocketProtocolGuid
     55   gEfiSocketServiceBindingProtocolGuid
     56 
     57 [Depex]
     58   gEfiBdsArchProtocolGuid AND
     59   gEfiCpuArchProtocolGuid AND
     60   gEfiTcp4ServiceBindingProtocolGuid AND
     61   gEfiTimerArchProtocolGuid AND
     62   gEfiUdp4ServiceBindingProtocolGuid
     63