diff options
author | Fu Siyuan <siyuan.fu@intel.com> | 2016-02-15 13:55:11 +0800 |
---|---|---|
committer | Fu Siyuan <siyuan.fu@intel.com> | 2016-03-07 09:12:14 +0800 |
commit | fa848a4048943251fc057fe8d6c5a82e01d2ffb6 (patch) | |
tree | 0ffe9aa44385b2bd9e49c974f3ed52345579e61e /NetworkPkg/HttpBootDxe/HttpBootDxe.inf | |
parent | 9353c60cea6eeedbbe4b336aea02646e2bf25f47 (diff) | |
download | edk2-platforms-fa848a4048943251fc057fe8d6c5a82e01d2ffb6.tar.xz |
NetworkPkg: Add URI configuration form to HTTP boot driver.
This patch updates the HTTP boot driver to produce a setup page for the boot
file URI configuration. A new boot option will be created for the manual
configured URI address. This change is made to support the HTTP boot usage
in home environment.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Fu Siyuan <siyuan.fu@intel.com>
Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>
Reviewed-by: Ye Ting <ting.ye@intel.com>
Diffstat (limited to 'NetworkPkg/HttpBootDxe/HttpBootDxe.inf')
-rw-r--r-- | NetworkPkg/HttpBootDxe/HttpBootDxe.inf | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/NetworkPkg/HttpBootDxe/HttpBootDxe.inf b/NetworkPkg/HttpBootDxe/HttpBootDxe.inf index e24b568ddc..8b4219cb17 100644 --- a/NetworkPkg/HttpBootDxe/HttpBootDxe.inf +++ b/NetworkPkg/HttpBootDxe/HttpBootDxe.inf @@ -1,7 +1,7 @@ ## @file
# This modules produce the Load File Protocol for UEFI HTTP boot.
#
-# Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
@@ -25,10 +25,12 @@ [Packages]
MdePkg/MdePkg.dec
MdeModulePkg/MdeModulePkg.dec
+ NetworkPkg/NetworkPkg.dec
[Sources]
HttpBootDxe.h
HttpBootDxe.c
+ HttpBootConfig.c
HttpBootComponentName.h
HttpBootComponentName.c
HttpBootImpl.h
@@ -41,6 +43,8 @@ HttpBootSupport.c
HttpBootClient.h
HttpBootClient.c
+ HttpBootConfigVfr.vfr
+ HttpBootConfigStrings.uni
[LibraryClasses]
UefiDriverEntryPoint
@@ -52,6 +56,9 @@ DebugLib
NetLib
HttpLib
+ HiiLib
+ PrintLib
+ UefiHiiServicesLib
[Protocols]
## TO_START
@@ -72,6 +79,14 @@ gEfiIp6ProtocolGuid ## TO_START
gEfiIp6ConfigProtocolGuid ## TO_START
gEfiNetworkInterfaceIdentifierProtocolGuid_31 ## SOMETIMES_CONSUMES
+ gEfiHiiConfigAccessProtocolGuid ## BY_START
+
+[Guids]
+ ## SOMETIMES_CONSUMES ## GUID # HiiIsConfigHdrMatch mHttpBootConfigStorageName
+ ## SOMETIMES_PRODUCES ## GUID # HiiConstructConfigHdr mHttpBootConfigStorageName
+ ## SOMETIMES_PRODUCES ## GUID # HiiGetBrowserData mHttpBootConfigStorageName
+ ## SOMETIMES_CONSUMES ## HII
+ gHttpBootConfigGuid
[UserExtensions.TianoCore."ExtraFiles"]
HttpBootDxeExtra.uni
|