From 79168089da89160cfad1acca15bcc3bec21d7720 Mon Sep 17 00:00:00 2001 From: yeaissa <133245269+yeaissa@users.noreply.github.com> Date: Thu, 17 Oct 2024 20:26:37 +0200 Subject: [PATCH] [NXP] Fix mDNS issue with RW61x ethernet board (#36123) Noticing that mDNS resolution from the controller is failing some time after the board is commissioned. This is due to the board not responding to the mDNS queries. --- config/nxp/chip-module/Kconfig.defaults | 3 +++ config/nxp/chip-module/Kconfig.features | 2 ++ 2 files changed, 5 insertions(+) diff --git a/config/nxp/chip-module/Kconfig.defaults b/config/nxp/chip-module/Kconfig.defaults index 3d0fcf08d75eac..cd2dd74b91f788 100644 --- a/config/nxp/chip-module/Kconfig.defaults +++ b/config/nxp/chip-module/Kconfig.defaults @@ -336,6 +336,9 @@ choice NXP_ENET_DRIVER default ETH_NXP_ENET endchoice +config NET_SOCKETS_POLL_MAX + default 7 + endif # Configure MBEDTLS lib diff --git a/config/nxp/chip-module/Kconfig.features b/config/nxp/chip-module/Kconfig.features index 9c388a20f9db72..50f72eb0164f14 100644 --- a/config/nxp/chip-module/Kconfig.features +++ b/config/nxp/chip-module/Kconfig.features @@ -95,6 +95,8 @@ config CHIP_ETHERNET select NET_TCP select DNS_RESOLVER select MDNS_RESOLVER + select MDNS_RESPONDER + select DNS_SD select MBEDTLS_PKCS5_C select MBEDTLS_HKDF_C select MBEDTLS_ECDSA_C