From 2d03df48b0cbee913256f1b4d5e7df1c05ddc203 Mon Sep 17 00:00:00 2001 From: Abhik Roy Date: Tue, 14 Nov 2023 22:38:48 +1100 Subject: [PATCH] fix(lwip): Fixed debug format, added ci test config Detailed description of the changes: - lwip_debug: Fixed string format error in ip6 and napt (espressif/esp-lwip@f5c43549) - dns: fix init with only ipv4 enabled (espressif/esp-lwip@5aab73d7) --- .../lwip/test_apps/sdkconfig.ci.lwip_debug | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 components/lwip/test_apps/sdkconfig.ci.lwip_debug diff --git a/components/lwip/test_apps/sdkconfig.ci.lwip_debug b/components/lwip/test_apps/sdkconfig.ci.lwip_debug new file mode 100644 index 0000000000..a351db0a70 --- /dev/null +++ b/components/lwip/test_apps/sdkconfig.ci.lwip_debug @@ -0,0 +1,25 @@ +# Included for build test with LWIP debug enabled. + +CONFIG_LWIP_IP_FORWARD=y +CONFIG_LWIP_IPV4_NAPT=y +CONFIG_LWIP_DEBUG=y +CONFIG_LWIP_DEBUG_ESP_LOG=y +CONFIG_LWIP_NETIF_DEBUG=y +CONFIG_LWIP_PBUF_DEBUG=y +CONFIG_LWIP_ETHARP_DEBUG=y +CONFIG_LWIP_API_LIB_DEBUG=y +CONFIG_LWIP_SOCKETS_DEBUG=y +CONFIG_LWIP_IP_DEBUG=y +CONFIG_LWIP_ICMP_DEBUG=y +CONFIG_LWIP_DHCP_STATE_DEBUG=y +CONFIG_LWIP_DHCP_DEBUG=y +CONFIG_LWIP_IP6_DEBUG=y +CONFIG_LWIP_ICMP6_DEBUG=y +CONFIG_LWIP_TCP_DEBUG=y +CONFIG_LWIP_UDP_DEBUG=y +CONFIG_LWIP_SNTP_DEBUG=y +CONFIG_LWIP_DNS_DEBUG=y +CONFIG_LWIP_NAPT_DEBUG=y +CONFIG_LWIP_BRIDGEIF_DEBUG=y +CONFIG_LWIP_BRIDGEIF_FDB_DEBUG=y +CONFIG_LWIP_BRIDGEIF_FW_DEBUG=y