[edk2] [PATCH v1 1/1] ShellPkg/Ifconfig6: Update error message and add a new line

2017-07-31 Thread hegdenag
If DAD failed, we print "It failed to set", print the IPv6 address and exit. We need a better error string and also, after printing the IPv6 address, we need a new line else the Shell> prompt will overwrite the IPv6 address. Fixed these issues in this patch. Contributed-under: TianoCore

[edk2] [PATCH v1 1/1] ShellPkg/ifconfig: Update help message

2017-06-08 Thread hegdenag
Couple of instances had IP4 mentioned, instead of IPv4. Changing all to IPv4 to maintain consistency. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P ---

[edk2] [PATCH v1 1/1] NetworkPkg/HttpBootDxe: Handle new #define in HttpBootDxe

2017-06-08 Thread hegdenag
Add a error message in HttpBootPrintErrorMessage for HTTP 308 Redirect. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P --- NetworkPkg/HttpBootDxe/HttpBootSupport.c | 4 1 file changed, 4 insertions(+) diff --git

[edk2] [PATCH v1 1/1] MdeModulePkg/DxeHttpLib: Handle new #define in HttpMappingToStatusCode

2017-06-08 Thread hegdenag
Related to the ECR for support of HTTP Redirect (308) Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P --- MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git

[edk2] [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect

2017-06-08 Thread hegdenag
Adding Support for the ECR for HTTP 308 redirect. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P --- MdePkg/Include/Protocol/Http.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git

[edk2] [PATCH v2 2/2] NetworkPkg/NetworkPkg.dec: Update comments for the PCD

2017-02-12 Thread hegdenag
Update comment section for the PCD PcdIScsiAIPNetworkBootPolicy. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P --- NetworkPkg/NetworkPkg.dec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git

[edk2] [PATCH v2 1/2] NetworkPkg/iSCSIDxe: Update the condition for IScsiStart Abort

2017-02-12 Thread hegdenag
Update existing #define and add a new #define used for the PCD PcdIScsiAIPNetworkBootPolicy. Update the code in iScsiStart according to the #define changes in iScsiDriver.h Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P ---

[edk2] [PATCH v1 2/2] NetworkPkg/NetworkPkg.dec: Update comments for the PCD

2017-02-12 Thread hegdenag
Update comment section for the PCD PcdIScsiAIPNetworkBootPolicy. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P --- NetworkPkg/NetworkPkg.dec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git

[edk2] [PATCH v1 1/2] NetworkPkg/iSCSIDxe: Update the condition for IScsiStart Abort

2017-02-12 Thread hegdenag
Update existing #define and add a new #define used for the PCD PcdIScsiAIPNetworkBootPolicy. Update the code in iScsiStart according to the #define changes in iScsiDriver.h Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P ---

[edk2] [PATCH v1 0/2] NetworkPkg/iScsiDxe: Update iScsiStart Policy

2017-02-12 Thread hegdenag
e checking for AIP instances. hegdenag (2): NetworkPkg/iSCSIDxe: Update the condition for IScsiStart Abort NetworkPkg/NetworkPkg.dec: Update comments for the PCD NetworkPkg/IScsiDxe/IScsiDriver.c | 8 +++- NetworkPkg/IScsiDxe/IScsiDriver.h | 19 +++ NetworkPkg/Netw

[edk2] [PATCH v1 1/1] ShellPkg/Ifconfig6: Address ASSERT because of a missing NULL check

2017-01-11 Thread hegdenag
When we issue 'ifconfig6 -s auto' system hangs with an ASSERT in StrLen. in IfConfig6SetInterfaceInfo, for 'auto' case we added checks to rule out the invalid inputs like 'host', 'gw' and 'dns'. To parse through this, we do a VarArg = VarArg->Next but we dont check new VarArg before calling

[edk2] [PATCH v1 1/1] ShellPkg/Ping6: Add a note in help for TargetIp

2016-11-07 Thread hegdenag
'Ping6 TargetIp' is a valid command input but we bail out when TargetIp is a link local address because we would want the user to specify the NIC (via SourceIp) through which he/she would want to ping to TargetIp. This patch updates the help text to mention the same. Contributed-under: TianoCore

[edk2] [PATCH v1 1/1] ShellPkg:Ping: Ping command hangs with intermittent packet losses

2016-07-07 Thread hegdenag
When we have intermittent loss of packets, ping command doesnt return to Shell prompt. It keeps looping in the while (Status ==EFI_NOT_READY) since Private->RxCount will never reach Private->SendNum. Addresses the issue with the use of a new varibale in the PRIVATE structure. Contributed-under:

[edk2] [PATCH v1 1/1] MdePkg: MTftp6: Correct #define value in Mtfp6.h

2016-06-15 Thread hegdenag
defined values of EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION and EFI_MTFTP6_ERRORCODE_FILE_ALREADY_EXISTS are the same. This patch corrects the value of EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION to 4. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P