From b0cfc93ba7087f100aaf86a7ed035e0905268e4a Mon Sep 17 00:00:00 2001 From: SPRESENSE <41312067+SPRESENSE@users.noreply.github.com> Date: Mon, 15 Jul 2024 06:26:08 +0900 Subject: [PATCH] lte/alt1250: Select NET_USRSOCK_ICMP if LTE_ALT1250 is enabled The change by https://github.com/apache/nuttx/pull/12639 to enable CONFIG_NET_ICMP as default has made it necessary to enable CONFIG_MM_IOB which is unnecessary for usrsock. CONFIG_NET_USRSOCK_ICMP should be enabled if usrsock is used. --- lte/alt1250/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/lte/alt1250/Kconfig b/lte/alt1250/Kconfig index cfe9a9713..7b12900bf 100644 --- a/lte/alt1250/Kconfig +++ b/lte/alt1250/Kconfig @@ -8,6 +8,7 @@ config LTE_ALT1250 default n depends on NET_USRSOCK && MODEM_ALT1250 select NET_USRSOCK_TCP + select NET_USRSOCK_ICMP select PIPES select NET_USRSOCK_OTHER ---help---