Last change
on this file since 85718 was 85718, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.8 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This module produces EFI DHCPv4 Protocol and EFI DHCPv4 Service Binding Protocol.
|
---|
3 | #
|
---|
4 | # This module produces EFI DHCPv4 Protocol upon EFI UDPv4 Protocol, to provide the
|
---|
5 | # capability to collect configuration information for the EFI IPv4 Protocol drivers
|
---|
6 | # and to provide DHCPv4 server and PXE boot server discovery services.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = Dhcp4Dxe
|
---|
17 | MODULE_UNI_FILE = Dhcp4Dxe.uni
|
---|
18 | FILE_GUID = 94734718-0BBC-47fb-96A5-EE7A5AE6A2AD
|
---|
19 | MODULE_TYPE = UEFI_DRIVER
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | ENTRY_POINT = Dhcp4DriverEntryPoint
|
---|
22 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
27 | #
|
---|
28 | # DRIVER_BINDING = gDhcp4DriverBinding
|
---|
29 | # COMPONENT_NAME = gDhcp4ComponentName
|
---|
30 | # COMPONENT_NAME2 = gDhcp4ComponentName2
|
---|
31 | #
|
---|
32 |
|
---|
33 | [Sources]
|
---|
34 | Dhcp4Impl.c
|
---|
35 | Dhcp4Io.c
|
---|
36 | Dhcp4Io.h
|
---|
37 | ComponentName.c
|
---|
38 | Dhcp4Driver.h
|
---|
39 | Dhcp4Driver.c
|
---|
40 | Dhcp4Option.c
|
---|
41 | Dhcp4Option.h
|
---|
42 | Dhcp4Impl.h
|
---|
43 |
|
---|
44 | [Packages]
|
---|
45 | MdePkg/MdePkg.dec
|
---|
46 | NetworkPkg/NetworkPkg.dec
|
---|
47 |
|
---|
48 |
|
---|
49 | [LibraryClasses]
|
---|
50 | BaseLib
|
---|
51 | UefiLib
|
---|
52 | UefiBootServicesTableLib
|
---|
53 | UefiDriverEntryPoint
|
---|
54 | DebugLib
|
---|
55 | NetLib
|
---|
56 | UdpIoLib
|
---|
57 |
|
---|
58 |
|
---|
59 | [Protocols]
|
---|
60 | gEfiDhcp4ServiceBindingProtocolGuid ## BY_START
|
---|
61 | gEfiUdp4ServiceBindingProtocolGuid ## TO_START
|
---|
62 | gEfiDhcp4ProtocolGuid ## BY_START
|
---|
63 | gEfiUdp4ProtocolGuid ## TO_START
|
---|
64 |
|
---|
65 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
66 | Dhcp4DxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.