From cf808f285140fcba90f53a516be1475a094942f7 Mon Sep 17 00:00:00 2001 From: Kedareswara rao Appana Date: Wed, 12 Nov 2014 17:21:45 +0530 Subject: [PATCH] lwip: echo server not working for emaclite on zynq This patch fixes the bug in the emaclite on zynq. Signed-off-by: Kedareswara rao Appana --- ThirdParty/sw_services/lwip140/data/lwip140.mld | 1 + ThirdParty/sw_services/lwip140/src/ChangeLog | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ThirdParty/sw_services/lwip140/data/lwip140.mld b/ThirdParty/sw_services/lwip140/data/lwip140.mld index a7266ae3..3b44f446 100755 --- a/ThirdParty/sw_services/lwip140/data/lwip140.mld +++ b/ThirdParty/sw_services/lwip140/data/lwip140.mld @@ -12,6 +12,7 @@ BEGIN LIBRARY lwip140 PARAM name = api_mode, desc = "Mode of operation for lwIP (RAW API/Sockets API)", type = enum, values = ("RAW API" = RAW_API, "SOCKET API" = SOCKET_API), default = RAW_API; PARAM name = socket_mode_thread_prio, desc = "Priority of threads in socket mode", type = int, default = 2; PARAM name = use_axieth_on_zynq, desc = "Option if set to 1 ensures axiethernet adapter being used in Zynq. Valid only for Zynq", type = int, default = 1; + PARAM name = use_emaclite_on_zynq, desc = "Option if set to 1 ensures emaclite adapter being used in Zynq. Valid only for Zynq", type = int, default = 1; BEGIN CATEGORY temac_adapter_options PARAM name = temac_adapter_options, desc = "Settings for xps-ll-temac/Axi-Ethernet/Gem lwIP adapter", type = bool, default = true, permit = none; diff --git a/ThirdParty/sw_services/lwip140/src/ChangeLog b/ThirdParty/sw_services/lwip140/src/ChangeLog index 004c2253..d7bd2edf 100755 --- a/ThirdParty/sw_services/lwip140/src/ChangeLog +++ b/ThirdParty/sw_services/lwip140/src/ChangeLog @@ -1,5 +1,8 @@ Change Log for lwip ================================= +2014-12-11 + * Fixed the bug in the emaclite on zynq. Added the parameter + use_emaclite_on_zynq to the mld file. 2014-11-11 * Fix for CR 835081 - lwip adapter for AxiEthernet does not work for SGMII mode.