Hello all: Here with added the patch for displaying the MAC Address along with the HTTP Boot Option Title. Please review and comment. --- NetworkPkg/HttpBootDxe/HttpBootConfig.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/NetworkPkg/HttpBootDxe/HttpBootConfig.c b/NetworkPkg/HttpBootDxe/HttpBootConfig.c index 646c907b12..677d913a09 100644 --- a/NetworkPkg/HttpBootDxe/HttpBootConfig.c +++ b/NetworkPkg/HttpBootDxe/HttpBootConfig.c @@ -629,6 +629,18 @@ HttpBootConfigFormInit ( NULL ); + OldMenuString = HiiGetString ( + CallbackInfo->RegisteredHandle, + STRING_TOKEN (STR_HTTP_BOOT_CONFIG_FORM_TITLE), + NULL + ); + UnicodeSPrint (MenuString, 128, L"MAC:%s-%s", MacString,OldMenuString); + HiiSetString ( + CallbackInfo->RegisteredHandle, + STRING_TOKEN (STR_HTTP_BOOT_CONFIG_FORM_TITLE), + MenuString, + NULL + ); FreePool (MacString); FreePool (OldMenuString);