1## @file 2# Client-side DHCPv6 services. 3# 4# This driver produces EFI DHCPv6 Protocol which is used to get IPv6 addresses 5# and other configuration parameters from DHCPv6 servers. 6# 7# (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> 8# Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 9# 10# This program and the accompanying materials 11# are licensed and made available under the terms and conditions of the BSD License 12# which accompanies this distribution. The full text of the license may be found at 13# http://opensource.org/licenses/bsd-license.php. 14# 15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17# 18## 19 20[Defines] 21 INF_VERSION = 0x00010005 22 BASE_NAME = Dhcp6Dxe 23 FILE_GUID = 95E3669D-34BE-4775-A651-7EA41B69D89E 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 ENTRY_POINT = Dhcp6DriverEntryPoint 27 UNLOAD_IMAGE = NetLibDefaultUnload 28 MODULE_UNI_FILE = Dhcp6Dxe.uni 29 30# 31# The following information is for reference only and not required by the build tools. 32# 33# VALID_ARCHITECTURES = IA32 X64 IPF EBC 34# 35# DRIVER_BINDING = gDhcp6DriverBinding 36# COMPONENT_NAME = gDhcp6ComponentName 37# COMPONENT_NAME2 = gDhcp6ComponentName2 38# 39 40[Sources] 41 Dhcp6Driver.c 42 Dhcp6Driver.h 43 Dhcp6Impl.c 44 Dhcp6Impl.h 45 Dhcp6Io.c 46 Dhcp6Io.h 47 Dhcp6Utility.c 48 Dhcp6Utility.h 49 ComponentName.c 50 51 52[Packages] 53 MdePkg/MdePkg.dec 54 MdeModulePkg/MdeModulePkg.dec 55 NetworkPkg/NetworkPkg.dec 56 57[LibraryClasses] 58 UefiLib 59 BaseLib 60 BaseMemoryLib 61 MemoryAllocationLib 62 UefiDriverEntryPoint 63 UefiBootServicesTableLib 64 UefiRuntimeServicesTableLib 65 DebugLib 66 NetLib 67 UdpIoLib 68 69 70[Protocols] 71 gEfiUdp6ServiceBindingProtocolGuid ## TO_START 72 gEfiUdp6ProtocolGuid ## TO_START 73 gEfiDhcp6ServiceBindingProtocolGuid ## BY_START 74 gEfiDhcp6ProtocolGuid ## BY_START 75 gEfiIp6ConfigProtocolGuid ## TO_START 76 77 78[Pcd] 79 gEfiNetworkPkgTokenSpaceGuid.PcdDhcp6UidType ## SOMETIMES_CONSUMES 80 81[UserExtensions.TianoCore."ExtraFiles"] 82 Dhcp6DxeExtra.uni 83