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 <appanad@xilinx.com>
This commit is contained in:
Kedareswara rao Appana 2014-11-12 17:21:45 +05:30 committed by Suneel Garapati
parent 43a7c2e0c2
commit cf808f2851
2 changed files with 4 additions and 0 deletions

View file

@ -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;

View file

@ -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.