From e0b8de8f38b6550909beb76fd22a6823a3bef2df Mon Sep 17 00:00:00 2001 From: David Cermak Date: Tue, 9 Sep 2025 12:34:26 +0200 Subject: [PATCH] fix(eppp): Cover more combinations in build tests --- components/eppp_link/examples/host/sdkconfig.ci.1 | 4 ++++ components/eppp_link/examples/host/sdkconfig.ci.2 | 3 +++ components/eppp_link/examples/host/sdkconfig.defaults | 3 --- components/eppp_link/examples/slave/sdkconfig.ci.1 | 4 ++++ components/eppp_link/examples/slave/sdkconfig.ci.2 | 4 ++++ components/eppp_link/examples/slave/sdkconfig.defaults | 3 --- 6 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 components/eppp_link/examples/host/sdkconfig.ci.1 create mode 100644 components/eppp_link/examples/host/sdkconfig.ci.2 create mode 100644 components/eppp_link/examples/slave/sdkconfig.ci.1 create mode 100644 components/eppp_link/examples/slave/sdkconfig.ci.2 diff --git a/components/eppp_link/examples/host/sdkconfig.ci.1 b/components/eppp_link/examples/host/sdkconfig.ci.1 new file mode 100644 index 000000000..d9297cf6a --- /dev/null +++ b/components/eppp_link/examples/host/sdkconfig.ci.1 @@ -0,0 +1,4 @@ +CONFIG_IDF_TARGET="esp32s3" +CONFIG_EPPP_LINK_DEVICE_SPI=y +CONFIG_EPPP_LINK_CHANNELS_SUPPORT=y +CONFIG_EPPP_LINK_USES_PPP=y diff --git a/components/eppp_link/examples/host/sdkconfig.ci.2 b/components/eppp_link/examples/host/sdkconfig.ci.2 new file mode 100644 index 000000000..6f6a4c72f --- /dev/null +++ b/components/eppp_link/examples/host/sdkconfig.ci.2 @@ -0,0 +1,3 @@ +CONFIG_IDF_TARGET="esp32c3" +CONFIG_EPPP_LINK_DEVICE_UART=y +CONFIG_EPPP_LINK_CHANNELS_SUPPORT=y diff --git a/components/eppp_link/examples/host/sdkconfig.defaults b/components/eppp_link/examples/host/sdkconfig.defaults index ba88b9016..5344665b0 100644 --- a/components/eppp_link/examples/host/sdkconfig.defaults +++ b/components/eppp_link/examples/host/sdkconfig.defaults @@ -1,4 +1 @@ -CONFIG_LWIP_PPP_SUPPORT=y -CONFIG_LWIP_PPP_SERVER_SUPPORT=y CONFIG_LWIP_PPP_VJ_HEADER_COMPRESSION=n -CONFIG_LWIP_PPP_DEBUG_ON=y diff --git a/components/eppp_link/examples/slave/sdkconfig.ci.1 b/components/eppp_link/examples/slave/sdkconfig.ci.1 new file mode 100644 index 000000000..17dae440b --- /dev/null +++ b/components/eppp_link/examples/slave/sdkconfig.ci.1 @@ -0,0 +1,4 @@ +CONFIG_IDF_TARGET="esp32s2" +CONFIG_EPPP_LINK_DEVICE_SPI=y +CONFIG_EPPP_LINK_CHANNELS_SUPPORT=y +CONFIG_LWIP_PPP_VJ_HEADER_COMPRESSION=n diff --git a/components/eppp_link/examples/slave/sdkconfig.ci.2 b/components/eppp_link/examples/slave/sdkconfig.ci.2 new file mode 100644 index 000000000..a4a384e93 --- /dev/null +++ b/components/eppp_link/examples/slave/sdkconfig.ci.2 @@ -0,0 +1,4 @@ +CONFIG_IDF_TARGET="esp32c2" +CONFIG_EPPP_LINK_DEVICE_UART=y +CONFIG_LWIP_PPP_VJ_HEADER_COMPRESSION=n +CONFIG_EPPP_LINK_USES_PPP=y diff --git a/components/eppp_link/examples/slave/sdkconfig.defaults b/components/eppp_link/examples/slave/sdkconfig.defaults index f2afde685..00c4362a4 100644 --- a/components/eppp_link/examples/slave/sdkconfig.defaults +++ b/components/eppp_link/examples/slave/sdkconfig.defaults @@ -1,6 +1,3 @@ CONFIG_LWIP_IP_FORWARD=y CONFIG_LWIP_IPV4_NAPT=y CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=4096 -CONFIG_LWIP_PPP_SUPPORT=y -CONFIG_LWIP_PPP_SERVER_SUPPORT=y -CONFIG_LWIP_PPP_VJ_HEADER_COMPRESSION=n