Last change
on this file since 56361 was 48674, checked in by vboxsync, 12 years ago |
EFI: Export newly imported tinaocore UEFI sources to OSE.
|
-
Property svn:eol-style
set to
native
|
File size:
1.6 KB
|
Line | |
---|
1 | #/** @file
|
---|
2 | # Component description file for the EFI socket library.
|
---|
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 = EfiSocketLib
|
---|
19 | FILE_GUID = C33E0B7C-9D0F-41df-BDFD-08F5E4C39EE8
|
---|
20 | MODULE_TYPE = BASE
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 | LIBRARY_CLASS = EfiSocketLib
|
---|
23 | CONSTRUCTOR = EslConstructor
|
---|
24 | DESTRUCTOR = EslDestructor
|
---|
25 |
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources.common]
|
---|
31 | DxeSupport.c
|
---|
32 | Init.c
|
---|
33 | Ip4.c
|
---|
34 | Service.c
|
---|
35 | Socket.c
|
---|
36 | Tcp4.c
|
---|
37 | Udp4.c
|
---|
38 | UseEfiSocketLib.c
|
---|
39 |
|
---|
40 | [Packages]
|
---|
41 | MdePkg/MdePkg.dec
|
---|
42 | MdeModulePkg/MdeModulePkg.dec
|
---|
43 | StdLib/StdLib.dec
|
---|
44 |
|
---|
45 | [LibraryClasses]
|
---|
46 | BaseMemoryLib
|
---|
47 | DebugLib
|
---|
48 | MemoryAllocationLib
|
---|
49 | UefiBootServicesTableLib
|
---|
50 | UefiLib
|
---|
51 |
|
---|
52 | [Protocols]
|
---|
53 | gEfiIp4ProtocolGuid
|
---|
54 | gEfiIp4ServiceBindingProtocolGuid
|
---|
55 | gEfiTcp4ProtocolGuid
|
---|
56 | gEfiTcp4ServiceBindingProtocolGuid
|
---|
57 | gEfiUdp4ProtocolGuid
|
---|
58 | gEfiUdp4ServiceBindingProtocolGuid
|
---|
59 | gEfiSocketProtocolGuid
|
---|
60 | gEfiSocketServiceBindingProtocolGuid
|
---|
Note:
See
TracBrowser
for help on using the repository browser.